diff --git a/3rdparty/mmu_man/irc/Haiku/README.txt b/3rdparty/mmu_man/irc/Haiku/README.txt new file mode 100644 index 0000000000..f7c41afe5b --- /dev/null +++ b/3rdparty/mmu_man/irc/Haiku/README.txt @@ -0,0 +1,2 @@ +This supybot plugin adds commands useful to Haiku developers. + diff --git a/3rdparty/mmu_man/irc/Haiku/__init__.py b/3rdparty/mmu_man/irc/Haiku/__init__.py new file mode 100644 index 0000000000..31baebcb4d --- /dev/null +++ b/3rdparty/mmu_man/irc/Haiku/__init__.py @@ -0,0 +1,64 @@ +# -*- coding: utf-8 -*- +### +# Copyright (c) 2012, François Revol +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# * Redistributions of source code must retain the above copyright notice, +# this list of conditions, and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions, and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# * Neither the name of the author of this software nor the name of +# contributors to this software may be used to endorse or promote products +# derived from this software without specific prior written consent. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +### + +""" +A plugin providing helpers for Haiku developers. +""" + +import supybot +import supybot.world as world + +# Use this for the version of this plugin. You may wish to put a CVS keyword +# in here if you're keeping the plugin in CVS or some similar system. +__version__ = "0.1" + +__author__ = supybot.Author('François Revol', 'mmu_man', 'revol@free.fr') + +# This is a dictionary mapping supybot.Author instances to lists of +# contributions. +__contributors__ = {} + +# This is a url where the most recent plugin package can be downloaded. +__url__ = 'FIXME:http://github.com/mmueller/supybot-git' + +import config +import plugin +reload(plugin) # In case we're being reloaded. +# Add more reloads here if you add third-party modules and want them to be +# reloaded when this plugin is reloaded. Don't forget to import them as well! + +if world.testing: + import test + +Class = plugin.Class +configure = config.configure + + +# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: diff --git a/3rdparty/mmu_man/irc/Haiku/config.py b/3rdparty/mmu_man/irc/Haiku/config.py new file mode 100644 index 0000000000..1455d79cf8 --- /dev/null +++ b/3rdparty/mmu_man/irc/Haiku/config.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +### +# Copyright (c) 2012, François Revol +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# * Redistributions of source code must retain the above copyright notice, +# this list of conditions, and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions, and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# * Neither the name of the author of this software nor the name of +# contributors to this software may be used to endorse or promote products +# derived from this software without specific prior written consent. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +### + +import supybot.conf as conf +import supybot.registry as registry + +def configure(advanced): + # This will be called by supybot to configure this module. advanced is + # a bool that specifies whether the user identified himself as an advanced + # user or not. You should effect your configuration by manipulating the + # registry as appropriate. + from supybot.questions import expect, anything, something, yn + conf.registerPlugin('Haiku', True) + +Haiku = conf.registerPlugin('Haiku') +conf.registerChannelValue(Haiku, 'format', + registry.String(str(conf.supybot.reply.format.time()), """Determines the + format string for timestamps. Refer to the Python documentation for the + time module to see what formats are accepted. If you set this variable to + the empty string, the timestamp will not be shown.""")) + + +# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: diff --git a/3rdparty/mmu_man/irc/Haiku/errors.py b/3rdparty/mmu_man/irc/Haiku/errors.py new file mode 100644 index 0000000000..e886707abb --- /dev/null +++ b/3rdparty/mmu_man/irc/Haiku/errors.py @@ -0,0 +1,248 @@ +errors = { +'B_NO_INIT': {'expr': 'B_GENERAL_ERROR_BASE + 13', 'str': 'Initialization failed', 'value': 2147483661}, +'EISDIR': {'expr': 'B_IS_A_DIRECTORY', 'str': 'Is a directory', 'value': 2147508233}, +'EPROTONOSUPPORT': {'expr': 'B_POSIX_ERROR_BASE + 19', 'str': 'Protocol not supported', 'value': 2147512339}, +'ETXTBSY': {'expr': 'B_POSIX_ERROR_BASE + 59', 'str': 'Text file busy', 'value': 2147512379}, +'B_DEV_FORMAT_ERROR': {'expr': 'B_DEVICE_ERROR_BASE + 5', 'str': 'Device format error', 'value': 2147524613}, +'B_POSIX_ENOMEM': {'expr': 'B_POSIX_ERROR_BASE + 0', 'str': 'Out of memory', 'value': 2147512320}, +'ENXIO': {'expr': 'B_POSIX_ERROR_BASE + 11', 'str': 'Device not accessible', 'value': 2147512331}, +'B_NOT_AN_EXECUTABLE': {'expr': 'B_OS_ERROR_BASE + 0x302', 'str': 'Not an executable', 'value': 2147488514}, +'ETIME': {'expr': 'B_POSIX_ERROR_BASE + 58', 'str': 'STREAM ioctl() timeout', 'value': 2147512378}, +'B_MEDIA_REALTIME_UNAVAILABLE': {'expr': 'B_MEDIA_ERROR_BASE + 130', 'str': 'Realtime unavailable', 'value': 2147500162}, +'ENOTTY': {'expr': 'B_POSIX_ERROR_BASE + 10', 'str': 'Not a tty', 'value': 2147512330}, +'ENAMETOOLONG': {'expr': 'B_NAME_TOO_LONG', 'str': 'File name too long', 'value': 2147508228}, +'B_DEV_SEEK_ERROR': {'expr': 'B_DEVICE_ERROR_BASE + 8', 'str': 'Device seek error', 'value': 2147524616}, +'B_CANCELED': {'expr': 'B_GENERAL_ERROR_BASE + 12', 'str': 'Operation canceled', 'value': 2147483660}, +'EAGAIN': {'expr': 'B_WOULD_BLOCK', 'str': 'Operation would block', 'value': 2147483659}, +'B_ERRORS_END': {'expr': 'B_GENERAL_ERROR_BASE + 0xffff', 'str': '', 'value': 2147549183}, +'ENOLINK': {'expr': 'B_POSIX_ERROR_BASE + 53', 'str': 'Reserved', 'value': 2147512373}, +'B_IO_ERROR': {'expr': 'B_GENERAL_ERROR_BASE + 1', 'str': 'I/O error', 'value': 2147483649}, +'ECONNRESET': {'expr': 'B_POSIX_ERROR_BASE + 28', 'str': 'Connection reset by peer', 'value': 2147512348}, +'B_MAIL_NO_DAEMON': {'expr': 'B_MAIL_ERROR_BASE + 0', 'str': 'No mail daemon', 'value': 2147516416}, +'B_MEDIA_SYSTEM_FAILURE': {'expr': 'B_MEDIA_ERROR_BASE + 100', 'str': 'System failure', 'value': 2147500132}, +'EMLINK': {'expr': 'B_POSIX_ERROR_BASE + 5', 'str': 'Too many links', 'value': 2147512325}, +'EINPROGRESS': {'expr': 'B_POSIX_ERROR_BASE + 36', 'str': 'Operation now in progress', 'value': 2147512356}, +'ENOTSOCK': {'expr': 'B_POSIX_ERROR_BASE + 44', 'str': 'Socket operation on non-socket', 'value': 2147512364}, +'B_DEV_FIFO_UNDERRUN': {'expr': 'B_DEVICE_ERROR_BASE + 27', 'str': 'Device FIFO underrun', 'value': 2147524635}, +'B_NAME_IN_USE': {'expr': 'B_GENERAL_ERROR_BASE + 8', 'str': 'Name in use', 'value': 2147483656}, +'ESHUTDOWN': {'expr': 'B_POSIX_ERROR_BASE + 31', 'str': "Can't send after socket shutdown", 'value': 2147512351}, +'B_DIRECTORY_NOT_EMPTY': {'expr': 'B_STORAGE_ERROR_BASE + 6', 'str': 'Directory not empty', 'value': 2147508230}, +'B_DEV_CRC_ERROR': {'expr': 'B_DEVICE_ERROR_BASE + 20', 'str': 'Device check-sum error', 'value': 2147524628}, +'B_BAD_HANDLER': {'expr': 'B_APP_ERROR_BASE + 3', 'str': 'Bad handler', 'value': 2147491843}, +'B_DEV_TIMEOUT': {'expr': 'B_DEVICE_ERROR_BASE + 6', 'str': 'Device timeout', 'value': 2147524614}, +'ENOLCK': {'expr': 'B_POSIX_ERROR_BASE + 8', 'str': 'No record locks available', 'value': 2147512328}, +'B_LAUNCH_FAILED_EXECUTABLE': {'expr': 'B_APP_ERROR_BASE + 10', 'str': 'File is mistakenly marked as executable', 'value': 2147491850}, +'B_NO_MORE_TEAMS': {'expr': 'B_OS_ERROR_BASE + 0x104', 'str': 'No more teams', 'value': 2147488004}, +'B_MAIL_ACCESS_ERROR': {'expr': 'B_MAIL_ERROR_BASE + 4', 'str': 'Mail access error', 'value': 2147516420}, +'EDEADLK': {'expr': 'B_POSIX_ERROR_BASE + 3', 'str': 'Resource deadlock', 'value': 2147512323}, +'EFBIG': {'expr': 'B_POSIX_ERROR_BASE + 4', 'str': 'File too large', 'value': 2147512324}, +'B_MEDIA_APP_ALREADY_REGISTERED': {'expr': 'B_MEDIA_ERROR_BASE + 111', 'str': 'Application already registered', 'value': 2147500143}, +'ECANCELED': {'expr': 'B_POSIX_ERROR_BASE + 47', 'str': 'Operation canceled', 'value': 2147512367}, +'B_BAD_TEAM_ID': {'expr': 'B_OS_ERROR_BASE + 0x103', 'str': 'Operation on invalid team', 'value': 2147488003}, +'B_DEV_INVALID_PIPE': {'expr': 'B_DEVICE_ERROR_BASE + 19', 'str': '', 'value': 2147524627}, +'EEXIST': {'expr': 'B_FILE_EXISTS', 'str': 'File or Directory already exists', 'value': 2147508226}, +'B_AMBIGUOUS_APP_LAUNCH': {'expr': 'B_APP_ERROR_BASE + 6', 'str': 'Ambiguous app launch', 'value': 2147491846}, +'EMSGSIZE': {'expr': 'B_POSIX_ERROR_BASE + 42', 'str': 'Message too long', 'value': 2147512362}, +'EPROTO': {'expr': 'B_POSIX_ERROR_BASE + 57', 'str': 'Protocol error', 'value': 2147512377}, +'B_LAST_BUFFER_ERROR': {'expr': 'B_MEDIA_ERROR_BASE + 7', 'str': 'Last buffer', 'value': 2147500039}, +'B_BAD_THREAD_ID': {'expr': 'B_OS_ERROR_BASE + 0x100', 'str': 'Bad thread ID', 'value': 2147488000}, +'EOPNOTSUPP': {'expr': 'B_POSIX_ERROR_BASE + 43', 'str': 'Operation not supported', 'value': 2147512363}, +'EBUSY': {'expr': 'B_BUSY', 'str': 'Device/File/Resource busy', 'value': 2147483662}, +'B_MEDIA_ADDON_RESTRICTED': {'expr': 'B_MEDIA_ERROR_BASE + 126', 'str': 'Media addon restricted', 'value': 2147500158}, +'B_MEDIA_BAD_DESTINATION': {'expr': 'B_MEDIA_ERROR_BASE + 118', 'str': 'Bad destination', 'value': 2147500150}, +'B_ERROR': {'expr': '', 'str': 'General system error', 'value': -1}, +'B_LAUNCH_FAILED_NO_PREFERRED_APP': {'expr': 'B_APP_ERROR_BASE + 13', 'str': 'There is no preferred application for this type of file', 'value': 2147491853}, +'EADDRNOTAVAIL': {'expr': 'B_POSIX_ERROR_BASE + 23', 'str': "Can't assign requested address", 'value': 2147512343}, +'B_MEDIA_BAD_NODE': {'expr': 'B_MEDIA_ERROR_BASE + 101', 'str': 'Bad media node', 'value': 2147500133}, +'B_DEV_PENDING': {'expr': 'B_DEVICE_ERROR_BASE + 28', 'str': 'Device pending', 'value': 2147524636}, +'B_MISMATCHED_VALUES': {'expr': 'B_GENERAL_ERROR_BASE + 6', 'str': 'Mismatched values passed to function', 'value': 2147483654}, +'B_CROSS_DEVICE_LINK': {'expr': 'B_STORAGE_ERROR_BASE + 11', 'str': 'Cross-device link', 'value': 2147508235}, +'B_NO_MORE_SEMS': {'expr': 'B_OS_ERROR_BASE + 1', 'str': 'No more semaphores', 'value': 2147487745}, +'EPERM': {'expr': 'B_NOT_ALLOWED', 'str': 'Operation not allowed', 'value': 2147483663}, +'B_WOULD_BLOCK': {'expr': 'B_GENERAL_ERROR_BASE + 11', 'str': 'Operation would block', 'value': 2147483659}, +'B_DEV_CONFIGURATION_ERROR': {'expr': 'B_DEVICE_ERROR_BASE + 16', 'str': 'Configuration error', 'value': 2147524624}, +'B_MEDIA_ADDON_DISABLED': {'expr': 'B_MEDIA_ERROR_BASE + 123', 'str': 'Media addon disabled', 'value': 2147500155}, +'ENODATA': {'expr': 'B_POSIX_ERROR_BASE + 52', 'str': 'No message available', 'value': 2147512372}, +'B_BAD_PORT_ID': {'expr': 'B_OS_ERROR_BASE + 0x200', 'str': 'Bad port ID', 'value': 2147488256}, +'B_TIMED_OUT': {'expr': 'B_GENERAL_ERROR_BASE + 9', 'str': 'Operation timed out', 'value': 2147483657}, +'B_NOT_A_DIRECTORY': {'expr': 'B_STORAGE_ERROR_BASE + 5', 'str': 'Not a directory', 'value': 2147508229}, +'ENOSPC': {'expr': 'B_DEVICE_FULL', 'str': 'No space left on device', 'value': 2147508231}, +'EPROTOTYPE': {'expr': 'B_POSIX_ERROR_BASE + 18', 'str': 'Protocol wrong type for socket', 'value': 2147512338}, +'B_MEDIA_CHANGE_IN_PROGRESS': {'expr': 'B_MEDIA_ERROR_BASE + 124', 'str': 'Change in progress', 'value': 2147500156}, +'EISCONN': {'expr': 'B_POSIX_ERROR_BASE + 29', 'str': 'Socket is already connected', 'value': 2147512349}, +'B_MESSAGE_TO_SELF': {'expr': 'B_APP_ERROR_BASE + 2', 'str': "Can't send message to self", 'value': 2147491842}, +'B_DEV_UNEXPECTED_PID': {'expr': 'B_DEVICE_ERROR_BASE + 23', 'str': '', 'value': 2147524631}, +'B_MEDIA_CANNOT_SEEK': {'expr': 'B_MEDIA_ERROR_BASE + 109', 'str': 'Cannot seek', 'value': 2147500141}, +'ERANGE': {'expr': 'B_POSIX_ERROR_BASE + 17', 'str': 'Range Error', 'value': 2147512337}, +'B_BAD_VALUE': {'expr': 'B_GENERAL_ERROR_BASE + 5', 'str': 'Invalid Argument', 'value': 2147483653}, +'ESTALE': {'expr': 'B_POSIX_ERROR_BASE + 40', 'str': 'Stale file handle', 'value': 2147512360}, +'B_RESOURCE_UNAVAILABLE': {'expr': 'B_MEDIA_ERROR_BASE + 3', 'str': 'Resource unavailable', 'value': 2147500035}, +'ENOPROTOOPT': {'expr': 'B_POSIX_ERROR_BASE + 34', 'str': 'Protocol option not available', 'value': 2147512354}, +'B_DEV_FIFO_OVERRUN': {'expr': 'B_DEVICE_ERROR_BASE + 26', 'str': 'Device FIFO overrun', 'value': 2147524634}, +'B_DEV_RESOURCE_CONFLICT': {'expr': 'B_DEVICE_ERROR_BASE + 15', 'str': 'Resource conflict', 'value': 2147524623}, +'ENOATTR': {'expr': 'B_POSIX_ERROR_BASE + 60', 'str': 'No such attribute', 'value': 2147512380}, +'B_DEVICE_FULL': {'expr': 'B_STORAGE_ERROR_BASE + 7', 'str': 'No space left on device', 'value': 2147508231}, +'B_NO_PRINT_SERVER': {'expr': 'B_PRINT_ERROR_BASE + 0', 'str': 'No print server', 'value': 2147520512}, +'ELOOP': {'expr': 'B_LINK_LIMIT', 'str': 'Too many symbolic links', 'value': 2147508236}, +'ECHILD': {'expr': 'B_POSIX_ERROR_BASE + 2', 'str': 'No child process', 'value': 2147512322}, +'B_BUFFER_NOT_AVAILABLE': {'expr': 'B_MEDIA_ERROR_BASE + 6', 'str': 'Buffer not available', 'value': 2147500038}, +'ENOBUFS': {'expr': 'B_POSIX_ERROR_BASE + 35', 'str': 'No buffer space available', 'value': 2147512355}, +'B_RESOURCE_NOT_FOUND': {'expr': 'B_MEDIA_ERROR_BASE + 2', 'str': 'Resource not found', 'value': 2147500034}, +'EDESTADDRREQ': {'expr': 'B_POSIX_ERROR_BASE + 48', 'str': 'Destination address required', 'value': 2147512368}, +'B_MEDIA_BUFFERS_NOT_RECLAIMED': {'expr': 'B_MEDIA_ERROR_BASE + 114', 'str': 'Buffers not reclaimed', 'value': 2147500146}, +'B_FILE_ERROR': {'expr': 'B_STORAGE_ERROR_BASE + 0', 'str': 'Bad file descriptor', 'value': 2147508224}, +'B_ILLEGAL_DATA': {'expr': 'B_TRANSLATION_ERROR_BASE + 2', 'str': 'Illegal data', 'value': 2147502082}, +'EINTR': {'expr': 'B_INTERRUPTED', 'str': 'Interrupted system call', 'value': 2147483658}, +'B_MEDIA_NO_HANDLER': {'expr': 'B_MEDIA_ERROR_BASE + 127', 'str': 'No handler', 'value': 2147500159}, +'ETIMEDOUT': {'expr': 'B_TIMED_OUT', 'str': 'Operation timed out', 'value': 2147483657}, +'ENOSYS': {'expr': 'B_POSIX_ERROR_BASE + 9', 'str': 'Function not implemented', 'value': 2147512329}, +'B_DONT_DO_THAT': {'expr': 'B_GENERAL_ERROR_BASE + 17', 'str': "Don't do that!", 'value': 2147483665}, +'B_DEV_UNREADABLE': {'expr': 'B_DEVICE_ERROR_BASE + 4', 'str': 'Device unreadable', 'value': 2147524612}, +'B_MEDIA_BAD_BUFFER': {'expr': 'B_MEDIA_ERROR_BASE + 104', 'str': 'Bad buffer', 'value': 2147500136}, +'B_MAIL_NO_RECIPIENT': {'expr': 'B_MAIL_ERROR_BASE + 6', 'str': 'No mail recipient', 'value': 2147516422}, +'B_LAUNCH_FAILED_APP_IN_TRASH': {'expr': 'B_APP_ERROR_BASE + 12', 'str': 'Application is in the trash', 'value': 2147491852}, +'B_FILE_NOT_FOUND': {'expr': 'B_STORAGE_ERROR_BASE + 1', 'str': 'No such file or directory', 'value': 2147508225}, +'B_NO_MORE_THREADS': {'expr': 'B_OS_ERROR_BASE + 0x101', 'str': 'No more threads', 'value': 2147488001}, +'B_MAIL_WRONG_PASSWORD': {'expr': 'B_MAIL_ERROR_BASE + 2', 'str': 'Wrong password (mail)', 'value': 2147516418}, +'B_NO_MEMORY': {'expr': 'B_GENERAL_ERROR_BASE + 0', 'str': 'Out of memory', 'value': 2147483648}, +'EALREADY': {'expr': 'B_POSIX_ERROR_BASE + 37', 'str': 'Operation already in progress', 'value': 2147512357}, +'ENODEV': {'expr': 'B_POSIX_ERROR_BASE + 7', 'str': 'No such device', 'value': 2147512327}, +'E2BIG': {'expr': 'B_POSIX_ERROR_BASE + 1', 'str': 'Argument too big', 'value': 2147512321}, +'B_LAUNCH_FAILED_APP_NOT_FOUND': {'expr': 'B_APP_ERROR_BASE + 11', 'str': 'Application could not be found', 'value': 2147491851}, +'B_OK': {'expr': '', 'str': 'No Error', 'value': 0}, +'EMULTIHOP': {'expr': 'B_POSIX_ERROR_BASE + 51', 'str': 'Reserved', 'value': 2147512371}, +'EMFILE': {'expr': 'B_NO_MORE_FDS', 'str': 'Too many open files', 'value': 2147508234}, +'B_MEDIA_TIME_SOURCE_BUSY': {'expr': 'B_MEDIA_ERROR_BASE + 116', 'str': 'Time source busy', 'value': 2147500148}, +'B_NO_ERROR': {'expr': '', 'str': 'No Error', 'value': 0}, +'EHOSTDOWN': {'expr': 'B_POSIX_ERROR_BASE + 45', 'str': '', 'value': 2147512365}, +'B_RESULT_NOT_REPRESENTABLE': {'expr': 'ERANGE', 'str': '', 'value': 2147512337}, +'B_DEV_DATA_UNDERRUN': {'expr': 'B_DEVICE_ERROR_BASE + 25', 'str': 'Device data underrun', 'value': 2147524633}, +'B_FILE_TOO_LARGE': {'expr': 'EFBIG', 'str': '', 'value': 2147512324}, +'B_BAD_MIME_SNIFFER_RULE': {'expr': 'B_APP_ERROR_BASE + 15', 'str': 'Bad sniffer rule', 'value': 2147491855}, +'EDOM': {'expr': 'B_POSIX_ERROR_BASE + 16', 'str': 'Numerical argument out of range', 'value': 2147512336}, +'ESIGPARM': {'expr': 'B_POSIX_ERROR_BASE + 15', 'str': 'Signal Error', 'value': 2147512335}, +'B_PARTITION_TOO_SMALL': {'expr': 'B_STORAGE_ERROR_BASE + 15', 'str': 'Partition too small to contain filesystem', 'value': 2147508239}, +'ENFILE': {'expr': 'B_POSIX_ERROR_BASE + 6', 'str': 'File table overflow', 'value': 2147512326}, +'EBADMSG': {'expr': 'B_POSIX_ERROR_BASE + 46', 'str': 'Bad message', 'value': 2147512366}, +'B_BAD_REPLY': {'expr': 'B_APP_ERROR_BASE + 0', 'str': 'Invalid or unwanted reply', 'value': 2147491840}, +'EADDRINUSE': {'expr': 'B_POSIX_ERROR_BASE + 22', 'str': 'Address already in use', 'value': 2147512342}, +'B_NOT_SUPPORTED': {'expr': 'EOPNOTSUPP', 'str': '', 'value': 2147512363}, +'EXDEV': {'expr': 'B_CROSS_DEVICE_LINK', 'str': 'Cross-device link', 'value': 2147508235}, +'B_DEV_READ_ERROR': {'expr': 'B_DEVICE_ERROR_BASE + 10', 'str': 'Device read error', 'value': 2147524618}, +'B_MISSING_LIBRARY': {'expr': 'B_OS_ERROR_BASE + 0x303', 'str': 'Missing library', 'value': 2147488515}, +'B_DEV_ID_ERROR': {'expr': 'B_DEVICE_ERROR_BASE + 9', 'str': 'Device ID error', 'value': 2147524617}, +'B_MEDIA_BAD_SOURCE': {'expr': 'B_MEDIA_ERROR_BASE + 117', 'str': 'Bad source', 'value': 2147500149}, +'B_NO_TRANSLATOR': {'expr': 'B_TRANSLATION_ERROR_BASE + 1', 'str': 'No translator found', 'value': 2147502081}, +'B_DUPLICATE_REPLY': {'expr': 'B_APP_ERROR_BASE + 1', 'str': 'Duplicate reply', 'value': 2147491841}, +'ENOMEM': {'expr': 'B_NO_MEMORY', 'str': 'Out of memory', 'value': 2147483648}, +'ENOSR': {'expr': 'B_POSIX_ERROR_BASE + 54', 'str': 'No STREAM resources', 'value': 2147512374}, +'B_DEV_DATA_OVERRUN': {'expr': 'B_DEVICE_ERROR_BASE + 24', 'str': 'Device data overrun', 'value': 2147524632}, +'B_BUSY': {'expr': 'B_GENERAL_ERROR_BASE + 14', 'str': 'Device/File/Resource busy', 'value': 2147483662}, +'B_NOT_ALLOWED': {'expr': 'B_GENERAL_ERROR_BASE + 15', 'str': 'Operation not allowed', 'value': 2147483663}, +'B_MEDIA_BAD_CLIP_FORMAT': {'expr': 'B_MEDIA_ERROR_BASE + 121', 'str': 'Bad clipping format', 'value': 2147500153}, +'B_FILE_EXISTS': {'expr': 'B_STORAGE_ERROR_BASE + 2', 'str': 'File or Directory already exists', 'value': 2147508226}, +'B_MEDIA_CANNOT_CHANGE_RUN_MODE': {'expr': 'B_MEDIA_ERROR_BASE + 110', 'str': 'Cannot change run mode', 'value': 2147500142}, +'ENOTCONN': {'expr': 'B_POSIX_ERROR_BASE + 30', 'str': 'Socket is not connected', 'value': 2147512350}, +'B_NAME_NOT_FOUND': {'expr': 'B_GENERAL_ERROR_BASE + 7', 'str': 'Name not found', 'value': 2147483655}, +'EFAULT': {'expr': 'B_BAD_ADDRESS', 'str': 'Bad address', 'value': 2147488513}, +'EPIPE': {'expr': 'B_BUSTED_PIPE', 'str': 'Broken pipe', 'value': 2147508237}, +'ENETUNREACH': {'expr': 'B_POSIX_ERROR_BASE + 25', 'str': 'Network is unreachable', 'value': 2147512345}, +'B_MEDIA_TIME_SOURCE_STOPPED': {'expr': 'B_MEDIA_ERROR_BASE + 115', 'str': 'Time source stopped', 'value': 2147500147}, +'B_NAME_TOO_LONG': {'expr': 'B_STORAGE_ERROR_BASE + 4', 'str': 'File name too long', 'value': 2147508228}, +'B_READ_ONLY_DEVICE': {'expr': 'B_STORAGE_ERROR_BASE + 8', 'str': 'Read-only file system', 'value': 2147508232}, +'B_MEDIA_NODE_ALREADY_EXISTS': {'expr': 'B_MEDIA_ERROR_BASE + 107', 'str': 'Media node already exists', 'value': 2147500139}, +'B_MAIL_UNKNOWN_USER': {'expr': 'B_MAIL_ERROR_BASE + 1', 'str': 'Unknown mail user', 'value': 2147516417}, +'ECONNABORTED': {'expr': 'B_POSIX_ERROR_BASE + 27', 'str': 'Software caused connection abort', 'value': 2147512347}, +'EDQUOT': {'expr': 'B_POSIX_ERROR_BASE + 49', 'str': 'Reserved', 'value': 2147512369}, +'ENOMSG': {'expr': 'B_POSIX_ERROR_BASE + 39', 'str': 'No message of desired type', 'value': 2147512359}, +'ENOENT': {'expr': 'B_ENTRY_NOT_FOUND', 'str': 'No such file or directory', 'value': 2147508227}, +'B_SERVER_NOT_FOUND': {'expr': 'B_MEDIA_ERROR_BASE + 1', 'str': 'Server not found', 'value': 2147500033}, +'B_NOT_INITIALIZED': {'expr': 'B_GENERAL_ERROR_BASE + 13', 'str': '', 'value': 2147483661}, +'B_UNSUPPORTED': {'expr': 'B_STORAGE_ERROR_BASE + 14', 'str': 'Operation not supported', 'value': 2147508238}, +'B_DEV_WRITE_ERROR': {'expr': 'B_DEVICE_ERROR_BASE + 11', 'str': 'Device write error', 'value': 2147524619}, +'B_MAIL_INVALID_MAIL': {'expr': 'B_MAIL_ERROR_BASE + 7', 'str': 'Invalid mail', 'value': 2147516423}, +'ESPIPE': {'expr': 'B_POSIX_ERROR_BASE + 12', 'str': 'Seek not allowed on file descriptor', 'value': 2147512332}, +'B_LAUNCH_FAILED': {'expr': 'B_APP_ERROR_BASE + 5', 'str': 'Launch failed', 'value': 2147491845}, +'B_INTERRUPTED': {'expr': 'B_GENERAL_ERROR_BASE + 10', 'str': 'Interrupted system call', 'value': 2147483658}, +'B_DEV_NO_MEMORY': {'expr': 'B_DEVICE_ERROR_BASE + 1', 'str': 'No device memory', 'value': 2147524609}, +'B_BUSTED_PIPE': {'expr': 'B_STORAGE_ERROR_BASE + 13', 'str': 'Broken pipe', 'value': 2147508237}, +'B_DEVICE_NOT_FOUND': {'expr': 'ENODEV', 'str': '', 'value': 2147512327}, +'B_NO_MORE_FDS': {'expr': 'B_STORAGE_ERROR_BASE + 10', 'str': 'Too many open files', 'value': 2147508234}, +'B_STREAM_NOT_FOUND': {'expr': 'B_MEDIA_ERROR_BASE + 0', 'str': 'Stream not found', 'value': 2147500032}, +'B_MAIL_UNKNOWN_HOST': {'expr': 'B_MAIL_ERROR_BASE + 3', 'str': 'Mail unknown host', 'value': 2147516419}, +'B_PERMISSION_DENIED': {'expr': 'B_GENERAL_ERROR_BASE + 2', 'str': 'Permission denied', 'value': 2147483650}, +'B_DEV_RECALIBRATE_ERROR': {'expr': 'B_DEVICE_ERROR_BASE + 7', 'str': 'Device recalibrate error', 'value': 2147524615}, +'B_DEV_INVALID_IOCTL': {'expr': 'B_DEVICE_ERROR_BASE + 0', 'str': 'Invalid device ioctl', 'value': 2147524608}, +'EROFS': {'expr': 'B_READ_ONLY_DEVICE', 'str': 'Read-only file system', 'value': 2147508232}, +'B_MEDIA_NODE_BUSY': {'expr': 'B_MEDIA_ERROR_BASE + 102', 'str': 'Media node busy', 'value': 2147500134}, +'ECONNREFUSED': {'expr': 'B_POSIX_ERROR_BASE + 32', 'str': 'Connection refused', 'value': 2147512352}, +'ENOTEMPTY': {'expr': 'B_DIRECTORY_NOT_EMPTY', 'str': 'Directory not empty', 'value': 2147508230}, +'B_BAD_TYPE': {'expr': 'B_GENERAL_ERROR_BASE + 4', 'str': 'Bad argument type passed to function', 'value': 2147483652}, +'ENETDOWN': {'expr': 'B_POSIX_ERROR_BASE + 24', 'str': 'Network is down', 'value': 2147512344}, +'ENOSTR': {'expr': 'B_POSIX_ERROR_BASE + 55', 'str': 'Not a STREAM', 'value': 2147512375}, +'ENOTDIR': {'expr': 'B_NOT_A_DIRECTORY', 'str': 'Not a directory', 'value': 2147508229}, +'B_DEV_BAD_DRIVE_NUM': {'expr': 'B_DEVICE_ERROR_BASE + 2', 'str': 'Bad drive number', 'value': 2147524610}, +'B_DEV_MULTIPLE_ERRORS': {'expr': 'B_DEVICE_ERROR_BASE + 29', 'str': 'Multiple device errors', 'value': 2147524637}, +'EILSEQ': {'expr': 'B_POSIX_ERROR_BASE + 38', 'str': 'Illegal byte sequence', 'value': 2147512358}, +'B_MEDIA_TOO_MANY_NODES': {'expr': 'B_MEDIA_ERROR_BASE + 105', 'str': 'Too many nodes', 'value': 2147500137}, +'B_DEV_BAD_PID': {'expr': 'B_DEVICE_ERROR_BASE + 22', 'str': '', 'value': 2147524630}, +'B_MEDIA_ADDON_FAILED': {'expr': 'B_MEDIA_ERROR_BASE + 122', 'str': 'Media addon failed', 'value': 2147500154}, +'ENOEXEC': {'expr': 'B_NOT_AN_EXECUTABLE', 'str': 'Not an executable', 'value': 2147488514}, +'EACCES': {'expr': 'B_PERMISSION_DENIED', 'str': 'Permission denied', 'value': 2147483650}, +'ENOTSUP': {'expr': 'B_POSIX_ERROR_BASE + 56', 'str': 'Not supported', 'value': 2147512376}, +'EOVERFLOW': {'expr': 'B_POSIX_ERROR_BASE + 41', 'str': 'Value too large for defined type', 'value': 2147512361}, +'B_DEBUGGER_ALREADY_INSTALLED': {'expr': 'B_OS_ERROR_BASE + 0x400', 'str': 'Debugger already installed for this team', 'value': 2147488768}, +'B_BAD_INDEX': {'expr': 'B_GENERAL_ERROR_BASE + 3', 'str': 'Index not in range for the data set', 'value': 2147483651}, +'B_BAD_SCRIPT_SYNTAX': {'expr': 'B_APP_ERROR_BASE + 8', 'str': 'Bad script syntax', 'value': 2147491848}, +'EPFNOSUPPORT': {'expr': 'B_POSIX_ERROR_BASE + 20', 'str': 'Protocol family not supported', 'value': 2147512340}, +'EFPOS': {'expr': 'B_POSIX_ERROR_BASE + 14', 'str': 'File Position Error', 'value': 2147512334}, +'B_MEDIA_CANNOT_RECLAIM_BUFFERS': {'expr': 'B_MEDIA_ERROR_BASE + 113', 'str': 'Cannot reclaim buffers', 'value': 2147500145}, +'B_BAD_SEM_ID': {'expr': 'B_OS_ERROR_BASE + 0', 'str': 'Bad semaphore ID', 'value': 2147487744}, +'EBADF': {'expr': 'B_FILE_ERROR', 'str': 'Bad file descriptor', 'value': 2147508224}, +'B_MEDIA_STALE_CHANGE_COUNT': {'expr': 'B_MEDIA_ERROR_BASE + 125', 'str': 'Stale change count', 'value': 2147500157}, +'B_DEV_NOT_READY': {'expr': 'B_DEVICE_ERROR_BASE + 12', 'str': 'Device not ready', 'value': 2147524620}, +'B_MEDIA_APP_NOT_REGISTERED': {'expr': 'B_MEDIA_ERROR_BASE + 112', 'str': 'Application not registered', 'value': 2147500144}, +'B_MEDIA_DUPLICATE_FORMAT': {'expr': 'B_MEDIA_ERROR_BASE + 128', 'str': 'Duplicate format', 'value': 2147500160}, +'B_DEV_STALLED': {'expr': 'B_DEVICE_ERROR_BASE + 21', 'str': 'Device stalled', 'value': 2147524629}, +'ENETRESET': {'expr': 'B_POSIX_ERROR_BASE + 26', 'str': 'Network dropped connection on reset', 'value': 2147512346}, +'B_TOO_MANY_ARGS': {'expr': 'E2BIG', 'str': '', 'value': 2147512321}, +'EWOULDBLOCK': {'expr': 'B_WOULD_BLOCK', 'str': 'Operation would block', 'value': 2147483659}, +'B_MEDIA_REALTIME_DISABLED': {'expr': 'B_MEDIA_ERROR_BASE + 129', 'str': 'Realtime disabled', 'value': 2147500161}, +'B_MAIL_UNKNOWN_FIELD': {'expr': 'B_MAIL_ERROR_BASE + 5', 'str': 'Unknown mail field', 'value': 2147516421}, +'B_DEV_MEDIA_CHANGE_REQUESTED': {'expr': 'B_DEVICE_ERROR_BASE + 14', 'str': 'Device media change requested', 'value': 2147524622}, +'EIO': {'expr': 'B_IO_ERROR', 'str': 'I/O error', 'value': 2147483649}, +'EAFNOSUPPORT': {'expr': 'B_POSIX_ERROR_BASE + 21', 'str': 'Address family not supported by protocol family', 'value': 2147512341}, +'B_MEDIA_ALREADY_CONNECTED': {'expr': 'B_MEDIA_ERROR_BASE + 119', 'str': 'Already connected', 'value': 2147500151}, +'B_DEV_MEDIA_CHANGED': {'expr': 'B_DEVICE_ERROR_BASE + 13', 'str': 'Device media changed', 'value': 2147524621}, +'ESRCH': {'expr': 'B_POSIX_ERROR_BASE + 13', 'str': 'No such process', 'value': 2147512333}, +'B_DEV_DOOR_OPEN': {'expr': 'B_DEVICE_ERROR_BASE + 18', 'str': 'Drive door open', 'value': 2147524626}, +'B_SHUTTING_DOWN': {'expr': 'B_APP_ERROR_BASE + 18', 'str': 'System shutting down', 'value': 2147491858}, +'B_MISSING_SYMBOL': {'expr': 'B_OS_ERROR_BASE + 0x304', 'str': 'Symbol not found', 'value': 2147488516}, +'B_SUBSCRIBER_NOT_ENTERED': {'expr': 'B_MEDIA_ERROR_BASE + 5', 'str': 'Subscriber not entered', 'value': 2147500037}, +'B_DEV_TOO_LATE': {'expr': 'B_DEVICE_ERROR_BASE + 30', 'str': 'Device too late', 'value': 2147524638}, +'B_BAD_SUBSCRIBER': {'expr': 'B_MEDIA_ERROR_BASE + 4', 'str': 'Bad subscriber', 'value': 2147500036}, +'B_ENTRY_NOT_FOUND': {'expr': 'B_STORAGE_ERROR_BASE + 3', 'str': 'No such file or directory', 'value': 2147508227}, +'B_LAUNCH_FAILED_FILES_APP_NOT_FOUND': {'expr': 'B_APP_ERROR_BASE + 14', 'str': 'This file has a preferred app, but it could not be found', 'value': 2147491854}, +'B_BAD_THREAD_STATE': {'expr': 'B_OS_ERROR_BASE + 0x102', 'str': 'Thread is inappropriate state', 'value': 2147488002}, +'B_MEDIA_BAD_FORMAT': {'expr': 'B_MEDIA_ERROR_BASE + 103', 'str': 'Bad media format', 'value': 2147500135}, +'B_DEV_NO_MEDIA': {'expr': 'B_DEVICE_ERROR_BASE + 3', 'str': 'No media present', 'value': 2147524611}, +'B_BAD_IMAGE_ID': {'expr': 'B_OS_ERROR_BASE + 0x300', 'str': 'Bad image ID', 'value': 2147488512}, +'EINVAL': {'expr': 'B_BAD_VALUE', 'str': 'Invalid Argument', 'value': 2147483653}, +'B_UNKNOWN_MIME_TYPE': {'expr': 'B_APP_ERROR_BASE + 7', 'str': 'Unknown MIME type', 'value': 2147491847}, +'B_NOT_A_MESSAGE': {'expr': 'B_APP_ERROR_BASE + 16', 'str': 'Data is not a message', 'value': 2147491856}, +'B_DEV_DISABLED_BY_USER': {'expr': 'B_DEVICE_ERROR_BASE + 17', 'str': 'Disabled by user', 'value': 2147524625}, +'EIDRM': {'expr': 'B_POSIX_ERROR_BASE + 50', 'str': 'Identifier removed', 'value': 2147512370}, +'B_MEDIA_TOO_MANY_BUFFERS': {'expr': 'B_MEDIA_ERROR_BASE + 106', 'str': 'Too many buffers', 'value': 2147500138}, +'B_SHUTDOWN_CANCELLED': {'expr': 'B_APP_ERROR_BASE + 17', 'str': 'System shutdown cancelled', 'value': 2147491857}, +'B_MEDIA_NOT_CONNECTED': {'expr': 'B_MEDIA_ERROR_BASE + 120', 'str': 'Not connected', 'value': 2147500152}, +'B_LINK_LIMIT': {'expr': 'B_STORAGE_ERROR_BASE + 12', 'str': 'Too many symbolic links', 'value': 2147508236}, +'B_ALREADY_RUNNING': {'expr': 'B_APP_ERROR_BASE + 4', 'str': 'Already running', 'value': 2147491844}, +'B_BUFFER_OVERFLOW': {'expr': 'EOVERFLOW', 'str': '', 'value': 2147512361}, +'B_BAD_DATA': {'expr': 'B_GENERAL_ERROR_BASE + 16', 'str': 'Bad data', 'value': 2147483664}, +'B_IS_A_DIRECTORY': {'expr': 'B_STORAGE_ERROR_BASE + 9', 'str': 'Is a directory', 'value': 2147508233}, +'B_BAD_ADDRESS': {'expr': 'B_OS_ERROR_BASE + 0x301', 'str': 'Bad address', 'value': 2147488513}, +'B_LAUNCH_FAILED_NO_RESOLVE_LINK': {'expr': 'B_APP_ERROR_BASE + 9', 'str': 'Could not resolve a link', 'value': 2147491849}, +'B_NO_MORE_PORTS': {'expr': 'B_OS_ERROR_BASE + 0x201', 'str': 'No more ports available', 'value': 2147488257}, +'EHOSTUNREACH': {'expr': 'B_POSIX_ERROR_BASE + 33', 'str': 'No route to host', 'value': 2147512353}, +'B_MEDIA_BUFFER_ALREADY_EXISTS': {'expr': 'B_MEDIA_ERROR_BASE + 108', 'str': 'Buffer already exists', 'value': 2147500140}, +} diff --git a/3rdparty/mmu_man/irc/Haiku/gen_err_list.py b/3rdparty/mmu_man/irc/Haiku/gen_err_list.py new file mode 100644 index 0000000000..a06457848e --- /dev/null +++ b/3rdparty/mmu_man/irc/Haiku/gen_err_list.py @@ -0,0 +1,129 @@ +#!python + +# run from trunk/ and > errors.py + +import re + +errors = {} + + +errors_h = open("headers/os/support/Errors.h", "r") + +bases = {} + +for line in errors_h: + + match = re.match(r'#\s?define\s+(?P\w+)\s+(?P.+)', line) + if match: + define = match.groupdict().get("define") + expr = match.groupdict().get("expr") + value = None + #print "==== %s ==== %s" % (define, expr) + if expr == "INT_MIN": + value = 0x80000000 + if expr == "(-1)": + value = -1 + expr = "" + if expr == "((int)0)": + value = 0 + expr = "" + + m = re.match(r"B_TO_POSIX_ERROR\((?P.*)\)", expr) + if m: + # strip the macro + expr = m.group("expr") + #print expr + + m = re.match(r"B_FROM_POSIX_ERROR\((?P.*)\)", expr) + if m: + # strip the macro + expr = m.group("expr") + #print expr + + m = re.match(r"\((?P.*)\)", expr) + if m: + # strip the parens + expr = m.group("expr") + #print expr + + m = re.match(r"(?P\w+)$", expr) + if m: + # strip the macro + token = m.group("expr") + if token in errors: + value = errors[token]["value"] + #print "%s -> %s = %s" % (define, token, value) + + m = re.match(r"(?P.*_BASE)\s*\+\s*(?P\w+)$", expr) + if m: + base = m.group("base") + if base not in bases: + raise "error" + b = bases[base] + o = int(m.group("offset"), 0) + value = b + o + #print "value: %x + %x = %x = %d" % (b, o, value, value) + + if value is None: + print "Value unknown for %s" % (define) + exit(1) + + if re.match(r".*_BASE", define): + #print "base: %s=%s" % (define, value) + bases[define] = value + + else: + #print "%s=%s :%s" % (define, expr, value) + errors[define] = {"expr": expr, "value": value, "str": ""} + + +errors_h.close() + +#print bases +#print errors +#print errors['EILSEQ'] + +#exit(0) + +strerror_c = open("src/system/libroot/posix/string/strerror.c", "r") + +defines = [] + +for line in strerror_c: + + match = re.match(r'\t*case (?P\w+):', line) + if match: + define = match.groupdict().get("define") + defines.append(define) + match = re.match(r'\t*//\s+(?P\w+):*$', line) + if match: + define = match.groupdict().get("define") + defines.append(define) + + match = re.match(r'\t*return "(?P.+)";', line) + if match: + str = match.groupdict().get("str") + #print defines + for d in defines: + #print d + if errors[d]: + #print errors[d]#['str'] + errors[d]['str'] = str + else: + print "not found: %s" % (d) + exit(1) + defines = [] + #errors[define] = "plop" + +strerror_c.close() + +# Some fixup +errors['B_OK']['str'] = "No Error" +errors['B_NO_ERROR']['str'] = "No Error" +errors['B_DONT_DO_THAT']['str'] = "Don't do that!" + +#print errors +print "errors = {" +for e in errors: + print "'%s': %s," % (e, errors[e]) +print "}" diff --git a/3rdparty/mmu_man/irc/Haiku/plugin.py b/3rdparty/mmu_man/irc/Haiku/plugin.py new file mode 100644 index 0000000000..1bdb6cb276 --- /dev/null +++ b/3rdparty/mmu_man/irc/Haiku/plugin.py @@ -0,0 +1,249 @@ +# -*- coding: utf-8 -*- +### +# Copyright (c) 2012, François Revol +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# * Redistributions of source code must retain the above copyright notice, +# this list of conditions, and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions, and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# * Neither the name of the author of this software nor the name of +# contributors to this software may be used to endorse or promote products +# derived from this software without specific prior written consent. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +### + +import supybot.conf as conf +import supybot.utils as utils +from supybot.commands import * +import supybot.callbacks as callbacks +import supybot.log as log + +import random + +import errors + +class Haiku(callbacks.Plugin): + def __init__(self, irc): + #log.error("plop") + #print "plop" + self.fortunes = [] + fortunes = open("/home/revol/devel/haiku/trunk/data/system/data/fortunes/Haiku", "r") + print fortunes + if fortunes: + fortune = "" + for line in fortunes: + if line == "%\n": + self.fortunes.append(fortune) + fortune = "" + else: + fortune += line + fortunes.close() + + self.__parent = super(Haiku, self) + self.__parent.__init__(irc) + + def error(self, irc, msg, args): + """ + + Returns the code and value for the given value or code. + """ + print "Haiku: error" + print args + if not args: + raise callbacks.ArgumentError + for arg in args: + err = None + if arg in errors.errors: + err = errors.errors[arg] + key = arg + else: + try: + i = int(arg, 0) + except ValueError: + irc.errorInvalid('argument', arg, Raise=True) + for e in errors.errors: + if errors.errors[e]['value'] == i: + err = errors.errors[e] + key = e + if err is None: + irc.reply("Unknown error '%s'" % (arg)) + else: + expr = err['expr'] + value = err['value'] + r = "%s = %s = 0x%x (%d): %s" % (key, expr, int(value), value, err['str']) + irc.reply(r) + + def haiku(self, irc, msg, args): + """ + + Returns a random haiku. + """ + + if len(self.fortunes) > 0: + h = self.fortunes[int(random.random() * len(self.fortunes))].split('\n') + for l in h: + if l != "": + irc.reply(l, prefixNick = False) + else: + irc.reply("No haiku found") + + def reportbugs(self, irc, msg, args): + """ + + Returns some infos on reporting bugs. + """ + + to = None + if len(args) > 0: + to = args[0] + t = "If you think there is a bug in Haiku, please report a bug so we can remember to fix it. cf. http://dev.haiku-os.org/wiki/ReportingBugs" + irc.reply(t, to = to) + + def patchwanted(self, irc, msg, args): + """ + + Returns some infos on submitting patches. + """ + + to = None + if len(args) > 0: + to = args[0] + t = "Haiku is Free Software, therefore you can fix it yourself and send a patch, which would likely be very appreciated. cf. http://dev.haiku-os.org/wiki/SubmittingPatches" + irc.reply(t, to = to) + + def download(self, irc, msg, args): + """ + + Returns download links. + """ + + to = None + if len(args) > 0: + to = args[0] + t = "Current release: http://www.haiku-os.org/get-haiku - Nightly builds: http://haiku-files.org/haiku/development/" + irc.reply(t, to = to) + + def dl(self, irc, msg, args): + """ + + Returns download links. + """ + return self.download(irc, msg, args) + + def vi(self, irc, msg, args): + """ + + Trolls. + """ + + to = None + if len(args) > 0: + to = args[0] + t = "emacs!" + irc.reply(t, to = to) + + def emacs(self, irc, msg, args): + """ + + Trolls. + """ + + to = None + if len(args) > 0: + to = args[0] + t = "vi!" + irc.reply(t, to = to) + + def bored(self, irc, msg, args): + """ + + Returns some infos. + """ + + to = None + if len(args) > 0: + to = args[0] + t = "Why won't you get on some easy tasks then? http://dev.haiku-os.org/wiki/EasyTasks" + irc.reply(t, to = to) + + def jlg(self, irc, msg, args): + """ + + Praise Jean-Louis Gassée. + """ + + to = None + if len(args) > 0: + to = args[0] + t = "Jean-Louis Gassée, such a Grand Fromage!" + irc.reply(t, to = to) + + def basement(self, irc, msg, args): + """ + + Puts people to work. + """ + + to = "everyone" + who = "them" + if len(args) > 0: + to = args[0] + who = "him" + if len(args) > 1: + to = ' and '.join([', '.join(args[:-1]), args[-1]]) + who = "them" + t = "sends %s to BGA's basement and chains %s to a post in front of a computer. Get to work!" % (to, who) + irc.reply(t, action = True) + + def trout(self, irc, msg, args): + """ + + Puts someone back to his place. + """ + + if len(args) > 0: + to = args[0] + if len(args) > 1: + to = ' and '.join([', '.join(args[:-1]), args[-1]]) + t = "slaps %s with a trout." % (to) + irc.reply(t, action = True) + + def plop(self, irc, msg, args): + """ + + Returns some infos. + """ + + to = None + if len(args) > 0: + to = args[0] + t = "plop" + irc.reply(t, to = to) + + def shibboleet(self, irc, msg, args): + """ + + Tech support. + """ + + irc.reply("http://xkcd.com/806/ Tech Support") + +Class = Haiku + +# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: diff --git a/3rdparty/mmu_man/irc/Haiku/test.py b/3rdparty/mmu_man/irc/Haiku/test.py new file mode 100644 index 0000000000..ff300c3218 --- /dev/null +++ b/3rdparty/mmu_man/irc/Haiku/test.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +### +# Copyright (c) 2012, François Revol +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# * Redistributions of source code must retain the above copyright notice, +# this list of conditions, and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions, and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# * Neither the name of the author of this software nor the name of +# contributors to this software may be used to endorse or promote products +# derived from this software without specific prior written consent. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. +### + +from supybot.test import * + +class HaikuTestCase(PluginTestCase): + plugins = ('Haiku') + def testSeconds(self): + self.assertResponse('!plop', 'plop') + + + def testNoErrors(self): + self.assertNotError('!plop') + + def testNoNestedErrors(self): + self.assertNotError('!plop') + + +# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: + diff --git a/3rdparty/mmu_man/scripts/dev-perso b/3rdparty/mmu_man/scripts/dev-perso index 6809930d1c..bd9ecad908 100755 --- a/3rdparty/mmu_man/scripts/dev-perso +++ b/3rdparty/mmu_man/scripts/dev-perso @@ -162,6 +162,9 @@ dev() { test -z "$DEVUPCMD" -a \( -f _FOSSIL_ -o -f .fslckout \) && DEVUPCMD="fossil update" test -z "$DEVUPCMD" -a -n "$P4PORT" && DEVUPCMD="p4 sync" test -n "$DEVUPCMD" && history -s "$DEVUPCMD" + + # spice up terminal window title for git, add current branch name + test -d .git && PROMPT_COMMAND='echo -en "\033]0;['$DEVPROJ':`git branch 2>/dev/null | sed "/^[^*]/d;s/^\*\s//"`:${PWD##*/}]\a"' } complete -W complete -W "$(dev)" dev diff --git a/build/jam/BuildSetup b/build/jam/BuildSetup index 8ca0b1a4bd..30dc85abfe 100644 --- a/build/jam/BuildSetup +++ b/build/jam/BuildSetup @@ -1395,7 +1395,7 @@ if $(HAIKU_NO_WERROR) != 1 { EnableWerror src add-ons translators bmp ; # EnableWerror src add-ons translators exr ; EnableWerror src add-ons translators gif ; - EnableWerror src add-ons translators hpgs ; +# EnableWerror src add-ons translators hpgs ; EnableWerror src add-ons translators hvif ; EnableWerror src add-ons translators ico ; # EnableWerror src add-ons translators jpeg ; # gcc2 diff --git a/build/jam/FloppyBootImage b/build/jam/FloppyBootImage index ece250f398..7ecd4872c0 100644 --- a/build/jam/FloppyBootImage +++ b/build/jam/FloppyBootImage @@ -3,12 +3,15 @@ local X86_ONLY = ; local PPC_ONLY = ; +local ARM_ONLY = ; if $(TARGET_ARCH) = x86 || $(TARGET_ARCH) = x86_64 { X86_ONLY = "" ; } else if $(TARGET_ARCH) = ppc { X86_ONLY = ; } else if $(TARGET_ARCH) = m68k { X86_ONLY = ; +} else if $(TARGET_ARCH) = arm { + ARM_ONLY = "" ; } local GPL_ONLY = ; @@ -115,6 +118,7 @@ if $(TARGET_ARCH) = x86_64 { # drivers AddNewDriversToFloppyBootArchive disk scsi : scsi_cd scsi_disk ; + AddNewDriversToFloppyBootArchive disk : $(ARM_ONLY)norflash ; if $(USB_BOOT) = 1 { AddDriversToFloppyBootArchive disk usb : usb_disk ; } @@ -168,7 +172,7 @@ if $(TARGET_ARCH) = x86_64 { ahci generic_ide_pci $(X86_ONLY)ide_isa silicon_image_3112 legacy_sata it8211 $(USB_ONLY)uhci $(USB_ONLY)ohci $(USB_ONLY)ehci - scsi_cd scsi_disk $(USB_ONLY)usb_disk + scsi_cd scsi_disk $(USB_ONLY)usb_disk $(ARM_ONLY)norflash intel session $(SYSTEM_ADD_ONS_FILE_SYSTEMS) $(BOOT_ADD_ONS_NET) diff --git a/build/jam/HaikuCD b/build/jam/HaikuCD index e88ba3bf90..d77e752d90 100644 --- a/build/jam/HaikuCD +++ b/build/jam/HaikuCD @@ -28,8 +28,6 @@ AddVariableToScript $(script) : isCD : 1 ; AddVariableToScript $(script) : cdLabel : $(HAIKU_CD_LABEL) ; AddVariableToScript $(script) : addBuildCompatibilityLibDir : $(HOST_ADD_BUILD_COMPATIBILITY_LIB_DIR) ; -AddVariableToScript $(script) : stripOptionalPackageDebugSymbols - : $(HAIKU_STRIP_DEBUG_FROM_OPTIONAL_PACKAGES) ; AddTargetVariableToScript $(script) : addattr ; AddTargetVariableToScript $(script) : copyattr ; AddTargetVariableToScript $(script) : rc ; diff --git a/build/jam/HaikuImage b/build/jam/HaikuImage index 714b1edf62..9c6992989e 100644 --- a/build/jam/HaikuImage +++ b/build/jam/HaikuImage @@ -33,7 +33,7 @@ SYSTEM_BIN = "[" addattr alert arp base64 basename bash bc beep bfsinfo cal cat catattr checkfs checkitout chgrp chmod chop chown chroot cksum clear clockconfig cmp collectcatkeys comm compress copyattr CortexAddOnHost cp csplit cut date dc dd desklink df diff diff3 dircolors dirname - draggers driveinfo dstcheck du dumpcatalog + diskimage draggers driveinfo dstcheck du dumpcatalog echo eject env error expand expr factor false fdinfo ffm filepanel find finddir fmt fold fortune frcode ftp ftpd funzip fwcontrol @@ -86,19 +86,19 @@ SYSTEM_DEMOS = BSnow Chart Clock Cortex FontDemo $(X86_ONLY)GLTeapot SYSTEM_LIBS = libbe.so libbsd.so libbnetapi.so libdebug.so libdevice.so - libgame.so $(X86_ONLY)libGL.so libgnu.so - libjpeg.so - libmail.so libmedia.so libmidi.so libmidi2.so + libgame.so $(X86_ONLY)libGL.so $(X86_ONLY)libglut.so + libgnu.so libmail.so libmedia.so libmidi.so libmidi2.so libnetwork.so - libpng.so libroot.so libroot-addon-icu.so libscreensaver.so libtextencoding.so libtiff.so libtracker.so libtranslation.so - libz.so $(HAIKU_SHARED_LIBSTDC++) $(HAIKU_SHARED_LIBSUPC++) - $(HAIKU_FREETYPE_CURRENT_LIB) ; PRIVATE_SYSTEM_LIBS = + $(HAIKU_JPEG_CURRENT_LIB) + $(HAIKU_LIBPNG_CURRENT_LIB) + $(HAIKU_ZLIB_CURRENT_LIB) + $(HAIKU_FREETYPE_CURRENT_LIB) libalm.so libfluidsynth.so libilmimf.so @@ -129,7 +129,7 @@ SYSTEM_ADD_ONS_TRANSLATORS = BMPTranslator EXRTranslator GIFTranslator HVIFTranslator ICOTranslator JPEGTranslator JPEG2000Translator PCXTranslator PNGTranslator PPMTranslator RAWTranslator RTFTranslator SGITranslator STXTTranslator TGATranslator - TIFFTranslator WebPTranslator WonderBrushTranslator + TIFFTranslator WebPTranslator WonderBrushTranslator ICNSTranslator ; SYSTEM_ADD_ONS_LOCALE_CATALOGS = plaintext ; SYSTEM_ADD_ONS_MEDIA = cortex_audioadapter.media_addon @@ -144,6 +144,8 @@ SYSTEM_ADD_ONS_MEDIA = cortex_audioadapter.media_addon video_window_demo.media_addon firewire_dv.media_addon #legacy.media_addon + equalizer.media_addon + vst_host.media_addon ; SYSTEM_ADD_ONS_MEDIA_PLUGINS = $(X86_ONLY)ffmpeg raw_decoder ; SYSTEM_ADD_ONS_PRINT = @@ -303,9 +305,8 @@ if $(HAIKU_GCC_VERSION[1]) = 2 { } -# libGL.so has GLU (like BeOS) *and* GLUT API built-in -SYSTEM_LIBS_LIBGL_ALIASES - = libGLU.so libglut.so ; +# libGL.so has GLU (like BeOS) built-in +SYSTEM_LIBS_LIBGL_ALIASES = libGLU.so ; if $(TARGET_ARCH) = x86 { local lib ; @@ -332,12 +333,37 @@ SYSTEM_LIBS_ALIASES = $(SYSTEM_LIBS_LIBBE_ALIASES) ; +OPTIONAL_LIBS_ALIASES = + libfreetype.so + libjpeg.so + libpng.so + libz.so +; + # libfreetype.so links to the current freetype lib AddSymlinkToHaikuHybridImage system lib : $(HAIKU_FREETYPE_CURRENT_LIB:BS) : $(HAIKU_FREETYPE_CURRENT_LINK) : : true ; AddSymlinkToHaikuHybridImage system lib : $(HAIKU_FREETYPE_CURRENT_LINK) : libfreetype.so : : true ; +# libpng.so links to the current libpng +AddSymlinkToHaikuHybridImage system lib : $(HAIKU_LIBPNG_CURRENT_LIB:BS) + : $(HAIKU_LIBPNG_CURRENT_LINK) : : true ; +AddSymlinkToHaikuHybridImage system lib : $(HAIKU_LIBPNG_CURRENT_LINK) + : libpng.so : : true ; + +# libjpeg.so links to the current libjpeg +AddSymlinkToHaikuHybridImage system lib : $(HAIKU_JPEG_CURRENT_LIB:BS) + : $(HAIKU_JPEG_CURRENT_LINK) : : true ; +AddSymlinkToHaikuHybridImage system lib : $(HAIKU_JPEG_CURRENT_LINK) + : libjpeg.so : : true ; + +# zlib.so links to the current zlib +AddSymlinkToHaikuHybridImage system lib : $(HAIKU_ZLIB_CURRENT_LIB:BS) + : $(HAIKU_ZLIB_CURRENT_LINK) : : true ; +AddSymlinkToHaikuHybridImage system lib : $(HAIKU_ZLIB_CURRENT_LINK) + : libz.so : : true ; + # servers AddFilesToHaikuImage system servers : $(SYSTEM_SERVERS) ; @@ -667,7 +693,7 @@ AddFilesToHaikuImage system add-ons Screen\ Savers : $(SYSTEM_ADD_ONS_SCREENSAVERS) ; AddFilesToHaikuImage system add-ons disk_systems - : intel bfs ; + : intel bfs ntfs ; # decorators AddDirectoryToHaikuImage home config add-ons decorators ; @@ -710,42 +736,42 @@ AddDirectoryToHaikuImage home config settings printers "Save as PDF" # PDF Writer enconding files CopyDirectoryToHaikuImage system data : [ FDirName $(HAIKU_TOP) src add-ons print drivers pdf encoding ] - : "PDF Writer" : -x .svn -x Jamfile ; + : "PDF Writer" : -x Jamfile ; # Gutenprint data files CopyDirectoryToHaikuImage system data : [ FDirName $(HAIKU_TOP) src libs print libgutenprint src xml ] - : gutenprint : -x .svn -x *.c -x Makefile.am -x Makefile.in ; + : gutenprint : -x *.c -x Makefile.am -x Makefile.in ; # dvb channel settings CopyDirectoryToHaikuImage home config settings Media : [ FDirName $(HAIKU_TOP) data settings media dvb ] - : dvb : -x .svn -x Jamfile ; + : dvb : -x Jamfile ; # licenses CopyDirectoryToHaikuImage system data : [ FDirName $(HAIKU_TOP) data system data licenses ] - : licenses : -x .svn ; + : licenses ; # Copy documentation as per DiskUsage's license requirement. CopyDirectoryToHaikuImage system documentation : [ FDirName $(HAIKU_TOP) docs apps diskusage ] - : diskusage : -x .svn ; + : diskusage ; # Copy documentation as per PDFlib Lite's license requirement. CopyDirectoryToHaikuImage system documentation : [ FDirName $(HAIKU_TOP) src libs pdflib doc ] - : pdflib : -x .svn ; + : pdflib ; # Copy sample programs as per PDFlib Lite's license requirement. CopyDirectoryToHaikuImage develop sample-code : [ FDirName $(HAIKU_TOP) src libs pdflib bind pdflib ] - : pdflib : -x .svn ; + : pdflib ; # Copy Mesa3D GL headers into image if $(TARGET_ARCH) = x86 { CopyDirectoryToHaikuImage develop headers os opengl - : [ FDirName $(HAIKU_MESA_HEADERS) GL ] : : -x .svn ; + : [ FDirName $(HAIKU_MESA_HEADERS) GL ] ; } #pragma mark - Optional Packages @@ -892,8 +918,6 @@ AddVariableToScript $(script) : addBuildCompatibilityLibDir : $(HOST_ADD_BUILD_COMPATIBILITY_LIB_DIR) ; AddVariableToScript $(script) : dontClearImage : $(HAIKU_DONT_CLEAR_IMAGE) ; AddVariableToScript $(script) : updateOnly : [ IsUpdateHaikuImageOnly ] ; -AddVariableToScript $(script) : stripOptionalPackageDebugSymbols - : $(HAIKU_STRIP_DEBUG_FROM_OPTIONAL_PACKAGES) ; AddTargetVariableToScript $(script) : addattr ; AddTargetVariableToScript $(script) : bfs_shell : bfsShell ; AddTargetVariableToScript $(script) : fs_shell_command : fsShellCommand ; diff --git a/build/jam/ImageRules b/build/jam/ImageRules index 48ebb82b6e..34f90ae832 100644 --- a/build/jam/ImageRules +++ b/build/jam/ImageRules @@ -283,16 +283,17 @@ rule CopyDirectoryToContainer container : directoryTokens : sourceDirectory } rule ExtractArchiveToContainer container : directoryTokens : archiveFile - : extractedSubDir + : extractedSubDir : stripDebugSymbols { # ExtractArchiveToContainer : : - # : ; + # : : ; local directory = [ AddDirectoryToContainer $(container) : $(directoryTokens) ] ; ARCHIVE_FILES_TO_INSTALL on $(directory) += $(archiveFile) ; ARCHIVE_SUBDIR_TO_INSTALL_FROM on $(archiveFile) = $(extractedSubDir) ; + ARCHIVE_FILES_TO_STRIP on $(archiveFile) = $(stripDebugSymbols) ; } rule AddDriversToContainer container : relativeDirectoryTokens : targets @@ -607,6 +608,11 @@ rule CreateContainerExtractFilesScript container : script ARCHIVE_SUBDIR_TO_INSTALL_FROM on $(dummyTarget) = $(extractedSubDir:E=.) ; + local stripDebugSymbols = [ on $(archiveFile) + return $(ARCHIVE_FILES_TO_STRIP) ] ; + STRIP_DEBUG_SYMBOLS_FROM_ARCHIVE on $(dummyTarget) = + $(stripDebugSymbols) ; + Depends $(dummyTarget) : $(initScript) $(archiveFile) $(serializationDependency) ; Depends $(script) : $(dummyTarget) ; @@ -622,7 +628,8 @@ rule CreateContainerExtractFilesScript container : script actions AddExtractFileToContainerExtractFilesScript { echo extractFile "\"$(2[2])\"" "\"$(TARGET_DIR)\"" \ - "\"$(ARCHIVE_SUBDIR_TO_INSTALL_FROM)\"" >> $(2[1]) + "\"$(ARCHIVE_SUBDIR_TO_INSTALL_FROM)\"" \ + "\"$(STRIP_DEBUG_SYMBOLS_FROM_ARCHIVE)\"" >> $(2[1]) } @@ -698,7 +705,7 @@ rule AddSourceDirectoryToHaikuImage dirTokens : alwaysUpdate CopyDirectoryToHaikuImage home HaikuSources : [ FDirName $(HAIKU_TOP) $(dirTokens) ] - : : -x .svn : $(alwaysUpdate) ; + : : : $(alwaysUpdate) ; } rule AddHeaderDirectoryToHaikuImage dirTokens : dirName : alwaysUpdate @@ -708,7 +715,7 @@ rule AddHeaderDirectoryToHaikuImage dirTokens : dirName : alwaysUpdate CopyDirectoryToHaikuImage develop headers : [ FDirName $(HAIKU_TOP) headers $(dirTokens) ] - : $(dirName) : -x .svn : $(alwaysUpdate) ; + : $(dirName) : : $(alwaysUpdate) ; } rule AddWifiFirmwareToHaikuImage driver : package : archive : extract @@ -729,7 +736,7 @@ rule AddWifiFirmwareToHaikuImage driver : package : archive : extract } rule ExtractArchiveToHaikuImage dirTokens : archiveFile : alwaysUpdate - : extractedSubDir + : extractedSubDir : stripDebugSymbols { # ExtractArchiveToHaikuImage : : # : ; @@ -738,7 +745,7 @@ rule ExtractArchiveToHaikuImage dirTokens : archiveFile : alwaysUpdate # requested. if ! [ IsUpdateHaikuImageOnly ] || $(alwaysUpdate) { ExtractArchiveToContainer $(HAIKU_IMAGE_CONTAINER_NAME) : $(dirTokens) - : $(archiveFile) : $(extractedSubDir) ; + : $(archiveFile) : $(extractedSubDir) : $(stripDebugSymbols) ; } } @@ -825,6 +832,7 @@ rule InstallSourceArchive file : url } rule InstallOptionalHaikuImagePackage package : url : dirTokens : isCDPackage + : stripDebugSymbols { # download archive file local archiveFile = [ DownloadFile $(package) : $(url) ] ; @@ -835,8 +843,17 @@ rule InstallOptionalHaikuImagePackage package : url : dirTokens : isCDPackage # copy onto image AddFilesToHaikuImage _packages_ : $(archiveFile) ; } else { + if $(HAIKU_STRIP_DEBUG_FROM_OPTIONAL_PACKAGES) = 1 { + stripDebugSymbols ?= 1 ; + # The script will only test for = 1. This is in case someone + # manually set the flag 'true' + if $(stripDebugSymbols) = true { + stripDebugSymbols = 1 ; + } + } # extract onto image - ExtractArchiveToHaikuImage $(dirTokens) : $(archiveFile) ; + ExtractArchiveToHaikuImage $(dirTokens) : $(archiveFile) + : : : $(stripDebugSymbols) ; } } @@ -1472,7 +1489,7 @@ actions BuildCDBootPPCImage1 bind MAPS || \ genisoimage -v -hfs -part -map $(MAPS) -no-desktop -hfs-volid bootimg \ -V bootimg -hfs-bless $(HAIKU_OUTPUT_DIR)/cd/ppc -prep-boot \ - ppc/$(>[2]:D=) -r -o $(<) $(HAIKU_OUTPUT_DIR)/cd + ppc/$(>[2]:D=) -r -o $(<) $(HAIKU_OUTPUT_DIR)/cd #$(RM) -R $(HAIKU_OUTPUT_DIR)/cd } diff --git a/build/jam/OptionalBuildFeatures b/build/jam/OptionalBuildFeatures index aaed4ed7ee..5e8112884d 100644 --- a/build/jam/OptionalBuildFeatures +++ b/build/jam/OptionalBuildFeatures @@ -23,9 +23,9 @@ if [ IsOptionalHaikuImagePackageAdded OpenSSL ] { } if $(HAIKU_GCC_VERSION[1]) >= 4 { - HAIKU_OPENSSL_PACKAGE = openssl-1.0.0j-x86-gcc4-2012-06-19.zip ; + HAIKU_OPENSSL_PACKAGE = openssl-1.0.0j-r1a4-x86-gcc4-2012-08-29.zip ; } else { - HAIKU_OPENSSL_PACKAGE = openssl-1.0.0j-x86-gcc2-2012-06-19.zip ; + HAIKU_OPENSSL_PACKAGE = openssl-1.0.0j-r1a4-x86-gcc2-2012-08-26.zip ; } HAIKU_OPENSSL_URL = $(baseURL)/$(HAIKU_OPENSSL_PACKAGE) ; @@ -66,16 +66,20 @@ if $(HAIKU_BUILD_FEATURE_SSL) { # ICU # Note ICU isn't actually optional, but is still an external package -HAIKU_ICU_GCC_2_PACKAGE = icu-4.8.1-x86-gcc2-2011-11-02a.zip ; -HAIKU_ICU_GCC_4_PACKAGE = icu-4.8.1-x86-gcc4-2011-11-02.zip ; +HAIKU_ICU_GCC_2_PACKAGE = icu-4.8.1.1-r1a4-x86-gcc2-2012-08-29.zip ; +HAIKU_ICU_GCC_4_PACKAGE = icu-4.8.1.1-r1a4-x86-gcc4-2012-08-29.zip ; HAIKU_ICU_PPC_PACKAGE = icu-4.8.1-ppc-2011-08-20.zip ; +HAIKU_ICU_ARM_PACKAGE = icu-4.8.1.1-arm-2012-11-16.zip ; HAIKU_ICU_X86_64_PACKAGE = icu-4.8.1.1-x86_64-2012-07-30.zip ; -if $(TARGET_ARCH) = ppc || $(TARGET_ARCH) = x86 || $(TARGET_ARCH) = x86_64 { +if $(TARGET_ARCH) = ppc || $(TARGET_ARCH) = x86 || $(TARGET_ARCH) = arm || $(TARGET_ARCH) = x86_64 { local icu_package ; if $(TARGET_ARCH) = ppc { icu_package = $(HAIKU_ICU_PPC_PACKAGE) ; HAIKU_ICU_DEVEL_PACKAGE = icu-devel-4.8.1-ppc-2011-12-19.zip ; + } else if $(TARGET_ARCH) = arm { + icu_package = $(HAIKU_ICU_ARM_PACKAGE) ; + HAIKU_ICU_DEVEL_PACKAGE = icu-devel-4.8.1.1-arm-2012-11-16.zip ; } else if $(TARGET_ARCH) = x86_64 { icu_package = $(HAIKU_ICU_X86_64_PACKAGE) ; HAIKU_ICU_DEVEL_PACKAGE = icu-devel-4.8.1.1-x86_64-2012-07-30.zip ; @@ -184,6 +188,29 @@ if $(HAIKU_BUILD_FEATURE_CLUCENE) { } +# GLU (GL Utilities) +if $(TARGET_ARCH) = x86 { + if $(HAIKU_GCC_VERSION[1]) >= 4 { + HAIKU_GLU_FILE = glu-9.0-x86-gcc4-2012-11-13.zip ; + } else { + HAIKU_GLU_FILE = glu-9.0-x86-gcc2-2012-11-13.zip ; + } + + local zipFile = [ DownloadFile $(HAIKU_GLU_FILE) + : $(baseURL)/lib/$(HAIKU_GLU_FILE) ] ; + + HAIKU_GLU_DIR = [ FDirName $(HAIKU_OPTIONAL_BUILD_PACKAGES_DIR) + $(HAIKU_GLU_FILE:B) ] ; + HAIKU_GLU_HEADERS_DEPENDENCY = [ ExtractArchive $(HAIKU_GLU_DIR) + : develop/headers/os/opengl/GL : $(zipFile) : extracted-glu-headers ] ; + HAIKU_GLU_LIBS = [ ExtractArchive $(HAIKU_GLU_DIR) + : system/lib/libGLU.a : $(zipFile) : extracted-glu ] ; + HAIKU_GLU_HEADERS = [ FDirName $(HAIKU_GLU_DIR) develop headers os opengl ] ; +} else { + Echo "GLU not yet available on $(TARGET_ARCH)" ; +} + + # Mesa if $(TARGET_ARCH) = x86 { local glslObject ; @@ -209,7 +236,6 @@ if $(TARGET_ARCH) = x86 { HAIKU_MESA_LIBS = [ ExtractArchive $(HAIKU_MESA_DIR) : - lib.haiku/libglu.a $(galliumObjects) lib.haiku/libglapi.a $(glslObject) @@ -219,6 +245,9 @@ if $(TARGET_ARCH) = x86 { HAIKU_MESA_HEADERS = [ FDirName $(HAIKU_MESA_DIR) include ] ; + Depends $(HAIKU_MESA_HEADERS_DEPENDENCY) : $(HAIKU_GLU_HEADERS_DEPENDENCY) ; + Depends $(HAIKU_MESA_LIBS) : $(HAIKU_GLU_LIBS) ; + } else { Echo "Mesa 3D rendering support not available on $(TARGET_ARCH)" ; } @@ -228,19 +257,19 @@ if $(TARGET_ARCH) = x86 { local ffmpegBaseURL = $(baseURL)/lib ; if $(TARGET_ARCH) = x86 { if $(HAIKU_GCC_VERSION[1]) >= 4 { - HAIKU_FFMPEG_FILE = ffmpeg-0.10.2-x86-gcc4-2012-03-28.zip ; - HAIKU_SPEEX_FILE = speex-1.2rc1-x86-gcc4-2012-03-12.zip ; - HAIKU_LIBTHEORA_FILE = libtheora-1.1.1-x86-gcc4-2012-03-12.zip ; - HAIKU_LIBVORBIS_FILE = libvorbis-1.3.2-x86-gcc4-2012-03-12.zip ; - HAIKU_LIBOGG_FILE = libogg-1.3.0-x86-gcc4-2012-03-12.zip ; - HAIKU_LIBVPX_FILE = libvpx-1.0.0-x86-gcc4-2012-03-14.zip ; + HAIKU_FFMPEG_FILE = ffmpeg-0.10.2-r1a4-x86-gcc4-2012-09-02.zip ; + HAIKU_SPEEX_FILE = speex-1.2rc1-r1a4-x86-gcc4-2012-09-02.zip ; + HAIKU_LIBTHEORA_FILE = libtheora-1.1.1-r1a4-x86-gcc4-2012-09-02.zip ; + HAIKU_LIBVORBIS_FILE = libvorbis-1.3.2-r1a4-x86-gcc4-2012-09-02.zip ; + HAIKU_LIBOGG_FILE = libogg-1.3.0-r1a4-x86-gcc4-2012-09-02.zip ; + HAIKU_LIBVPX_FILE = libvpx-1.0.0-r1a4-x86-gcc4-2012-09-02.zip ; } else { - HAIKU_FFMPEG_FILE = ffmpeg-0.10.2-x86-gcc2-2012-03-28.zip ; - HAIKU_SPEEX_FILE = speex-1.2rc1-x86-gcc2-2012-03-11.zip ; - HAIKU_LIBTHEORA_FILE = libtheora-1.1.1-x86-gcc2-2012-03-11.zip ; - HAIKU_LIBVORBIS_FILE = libvorbis-1.3.2-x86-gcc2-2012-03-11.zip ; - HAIKU_LIBOGG_FILE = libogg-1.3.0-x86-gcc2-2012-03-11.zip ; - HAIKU_LIBVPX_FILE = libvpx-1.0.0-x86-gcc2-2012-03-14.zip ; + HAIKU_FFMPEG_FILE = ffmpeg-0.10.2-r1a4-x86-gcc2-2012-08-30.zip ; + HAIKU_SPEEX_FILE = speex-1.2rc1-r1a4-x86-gcc2-2012-08-29.zip ; + HAIKU_LIBTHEORA_FILE = libtheora-1.1.1-r1a4-x86-gcc2-2012-08-29.zip ; + HAIKU_LIBVORBIS_FILE = libvorbis-1.3.2-r1a4-x86-gcc2-2012-08-29.zip ; + HAIKU_LIBOGG_FILE = libogg-1.3.0-r1a4-x86-gcc2-2012-08-29.zip ; + HAIKU_LIBVPX_FILE = libvpx-1.0.0-r1a4-x86-gcc2-2012-08-29.zip ; } local ffmpegZipFile = [ DownloadFile $(HAIKU_FFMPEG_FILE) @@ -350,9 +379,9 @@ if $(TARGET_ARCH) = x86 { local mikmodBaseURL = http://haiku-files.org/files/optional-packages/lib ; if $(TARGET_ARCH) = x86 { if $(HAIKU_GCC_VERSION[1]) >= 4 { - HAIKU_MIKMOD_FILE = libmikmod-3.1.11-r1a3-x86-gcc4-2011-05-26.zip ; + HAIKU_MIKMOD_FILE = libmikmod-3.1.11-r1a4-x86-gcc4-2012-09-02.zip ; } else { - HAIKU_MIKMOD_FILE = libmikmod-3.1.11-r1a3-x86-gcc2-2011-05-19.zip ; + HAIKU_MIKMOD_FILE = libmikmod-3.1.11-r1a4-x86-gcc2-2012-08-29.zip ; } local mikmodZipFile = [ DownloadFile $(HAIKU_MIKMOD_FILE) @@ -386,9 +415,9 @@ if $(TARGET_ARCH) = ppc || $(TARGET_ARCH) = x86 || $(TARGET_ARCH) = x86_64 { } else if $(TARGET_ARCH) = x86_64 { HAIKU_FREETYPE_FILE = freetype-2.4.9-x86_64-2012-08-04.zip ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { - HAIKU_FREETYPE_FILE = freetype-2.4.9-x86-gcc4-2012-06-15.zip ; + HAIKU_FREETYPE_FILE = freetype-2.4.9-r1a4-x86-gcc4-2012-09-02.zip ; } else { - HAIKU_FREETYPE_FILE = freetype-2.4.9-x86-gcc2-2012-06-19.zip ; + HAIKU_FREETYPE_FILE = freetype-2.4.9-r1a4-x86-gcc2-2012-08-28.zip ; } local freetypeZipFile = [ DownloadFile $(HAIKU_FREETYPE_FILE) @@ -431,7 +460,7 @@ if [ IsOptionalHaikuImagePackageAdded TagLib ] { HAIKU_BUILD_FEATURE_TAGLIB = 1 ; } -HAIKU_TAGLIB_PACKAGE = taglib-1.6.3-r1a3-x86-gcc2-2011-05-20.zip ; +HAIKU_TAGLIB_PACKAGE = taglib-1.6.3-r1a4-x86-gcc2-2012-09-03.zip ; HAIKU_TAGLIB_URL = $(baseURL)/$(HAIKU_TAGLIB_PACKAGE) ; if $(HAIKU_BUILD_FEATURE_TAGLIB) { @@ -473,7 +502,7 @@ if [ IsOptionalHaikuImagePackageAdded WebPositive ] { HAIKU_BUILD_FEATURE_WEBKIT = 1 ; } -HAIKU_WEBKIT_FILE = haikuwebkit-1.1.3-x86-gcc4-2012-07-20-1.zip ; +HAIKU_WEBKIT_FILE = haikuwebkit-1.1.3-x86-gcc4-2012-08-31a.zip ; if $(HAIKU_BUILD_FEATURE_WEBKIT) { if $(TARGET_ARCH) != x86 { @@ -507,3 +536,123 @@ if $(HAIKU_BUILD_FEATURE_WEBKIT) { HAIKU_WEBKIT_HEADERS = [ FDirName $(HAIKU_WEBKIT_DIR) include ] ; } } + +# libpng +local libpngBaseURL = $(baseURL)/lib ; +if $(TARGET_ARCH) = ppc || $(TARGET_ARCH) = x86 { + if $(TARGET_ARCH) = ppc { + HAIKU_LIBPNG_FILE = libpng-1.5.12-ppc-gcc4-2012-08-27.zip ; + } else if $(HAIKU_GCC_VERSION[1]) >= 4 { + HAIKU_LIBPNG_FILE = libpng-1.5.12-x86-gcc4-2012-08-23.zip ; + } else { + HAIKU_LIBPNG_FILE = libpng-1.5.12-x86-gcc2-2012-08-23.zip ; + } + + local libpngZipFile = [ DownloadFile $(HAIKU_LIBPNG_FILE) + : $(libpngBaseURL)/$(HAIKU_LIBPNG_FILE) ] ; + + HAIKU_LIBPNG_DIR = [ FDirName $(HAIKU_OPTIONAL_BUILD_PACKAGES_DIR) + $(HAIKU_LIBPNG_FILE:B) ] ; + + HAIKU_LIBPNG_HEADERS_DEPENDENCY = [ ExtractArchive $(HAIKU_LIBPNG_DIR) + : common/include : $(libpngZipFile) + : extracted-libpng ] ; + + HAIKU_LIBPNG_LIB = [ ExtractArchive $(HAIKU_LIBPNG_DIR) + : + common/lib/libpng.so + : $(libpngZipFile) + : extracted-libpng ] ; + HAIKU_LIBPNG_CURRENT_LIB = [ ExtractArchive $(HAIKU_LIBPNG_DIR) + : + common/lib/libpng15.so.15.12.0 + : $(libpngZipFile) + : extracted-libpng ] ; + Depends $(HAIKU_LIBPNG_LIB) $(HAIKU_LIBPNG_CURRENT_LIB) : $(HAIKU_LIBPNG_HEADERS_DEPENDENCY) ; + + HAIKU_LIBPNG_CURRENT_LINK = libpng15.so.15 ; + + HAIKU_LIBPNG_HEADERS = [ FDirName $(HAIKU_LIBPNG_DIR) common include ] ; +} else { + Echo "libpng support not available on $(TARGET_ARCH)" ; +} + +# jpeg +local jpegBaseURL = $(baseURL)/lib ; +if $(TARGET_ARCH) = ppc || $(TARGET_ARCH) = x86 { + if $(TARGET_ARCH) = ppc { + HAIKU_JPEG_FILE = jpeg-8d-ppc-gcc4-2012-08-27.zip ; + } else if $(HAIKU_GCC_VERSION[1]) >= 4 { + HAIKU_JPEG_FILE = jpeg-8d-x86-gcc4-2012-08-23.zip ; + } else { + HAIKU_JPEG_FILE = jpeg-8d-x86-gcc2-2012-08-23.zip ; + } + + local jpegZipFile = [ DownloadFile $(HAIKU_JPEG_FILE) + : $(jpegBaseURL)/$(HAIKU_JPEG_FILE) ] ; + + HAIKU_JPEG_DIR = [ FDirName $(HAIKU_OPTIONAL_BUILD_PACKAGES_DIR) + $(HAIKU_JPEG_FILE:B) ] ; + + HAIKU_JPEG_HEADERS_DEPENDENCY = [ ExtractArchive $(HAIKU_JPEG_DIR) + : common/include : $(jpegZipFile) + : extracted-jpeg ] ; + + HAIKU_JPEG_LIB = [ ExtractArchive $(HAIKU_JPEG_DIR) + : + common/lib/libjpeg.so + : $(jpegZipFile) + : extracted-jpeg ] ; + HAIKU_JPEG_CURRENT_LIB = [ ExtractArchive $(HAIKU_JPEG_DIR) + : + common/lib/libjpeg.so.8.4.0 + : $(jpegZipFile) + : extracted-jpeg ] ; + Depends $(HAIKU_JPEG_LIB) $(HAIKU_JPEG_CURRENT_LIB) : $(HAIKU_JPEG_HEADERS_DEPENDENCY) ; + + HAIKU_JPEG_CURRENT_LINK = libjpeg.so.8 ; + + HAIKU_JPEG_HEADERS = [ FDirName $(HAIKU_JPEG_DIR) common include ] ; +} else { + Echo "jpeg support not available on $(TARGET_ARCH)" ; +} + +# zlib +local zlibBaseURL = $(baseURL)/lib ; +if $(TARGET_ARCH) = ppc || $(TARGET_ARCH) = x86 { + if $(TARGET_ARCH) = ppc { + HAIKU_ZLIB_FILE = zlib-1.2.7-ppc-gcc4-2012-10-30.zip ; + } else if $(HAIKU_GCC_VERSION[1]) >= 4 { + HAIKU_ZLIB_FILE = zlib-1.2.7-x86-gcc4-2012-10-30.zip ; + } else { + HAIKU_ZLIB_FILE = zlib-1.2.7-x86-gcc2-2012-10-30.zip ; + } + + local zlibZipFile = [ DownloadFile $(HAIKU_ZLIB_FILE) + : $(zlibBaseURL)/$(HAIKU_ZLIB_FILE) ] ; + + HAIKU_ZLIB_DIR = [ FDirName $(HAIKU_OPTIONAL_BUILD_PACKAGES_DIR) + $(HAIKU_ZLIB_FILE:B) ] ; + + HAIKU_ZLIB_HEADERS_DEPENDENCY = [ ExtractArchive $(HAIKU_ZLIB_DIR) + : common/include : $(zlibZipFile) + : extracted-zlib ] ; + + HAIKU_ZLIB_LIB = [ ExtractArchive $(HAIKU_ZLIB_DIR) + : + common/lib/libz.so + : $(zlibZipFile) + : extracted-zlib ] ; + HAIKU_ZLIB_CURRENT_LIB = [ ExtractArchive $(HAIKU_ZLIB_DIR) + : + common/lib/libz.so.1.2.7 + : $(zlibZipFile) + : extracted-zlib ] ; + Depends $(HAIKU_ZLIB_LIB) $(HAIKU_ZLIB_CURRENT_LIB) : $(HAIKU_ZLIB_HEADERS_DEPENDENCY) ; + + HAIKU_ZLIB_CURRENT_LINK = libz.so.1 ; + + HAIKU_ZLIB_HEADERS = [ FDirName $(HAIKU_ZLIB_DIR) common include ] ; +} else { + Echo "zlib support not available on $(TARGET_ARCH)" ; +} diff --git a/build/jam/OptionalLibPackages b/build/jam/OptionalLibPackages index d1902eae4f..a72774aa65 100644 --- a/build/jam/OptionalLibPackages +++ b/build/jam/OptionalLibPackages @@ -38,24 +38,24 @@ if [ IsOptionalHaikuImagePackageAdded AllegroLibs ] { Echo "No optional package AllegroLibs available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - allegro-4.4.1.1-r1a3-x86-gcc4-2011-05-26.zip - : $(baseURL)/lib/allegro-4.4.1.1-r1a3-x86-gcc4-2011-05-26.zip ; + allegro-4.4.1.1-r1a4-x86-gcc4-2012-09-09.zip + : $(baseURL)/lib/allegro-4.4.1.1-r1a4-x86-gcc4-2012-09-09.zip ; InstallOptionalHaikuImagePackage - dumb-0.9.3-r1a3-x86-gcc4-2011-05-26.zip - : $(baseURL)/lib/dumb-0.9.3-r1a3-x86-gcc4-2011-05-26.zip ; + dumb-0.9.3-r1a4-x86-gcc4-2012-09-09.zip + : $(baseURL)/lib/dumb-0.9.3-r1a4-x86-gcc4-2012-09-09.zip ; InstallOptionalHaikuImagePackage - jgmod-0.99-r1a3-x86-gcc4-2011-05-26.zip - : $(baseURL)/lib/jgmod-0.99-r1a3-x86-gcc4-2011-05-26.zip ; + jgmod-0.99-r1a4-x86-gcc4-2012-09-09.zip + : $(baseURL)/lib/jgmod-0.99-r1a4-x86-gcc4-2012-09-09.zip ; } else { InstallOptionalHaikuImagePackage - allegro-4.4.1.1-r1a3-x86-gcc2-2011-05-19.zip - : $(baseURL)/lib/allegro-4.4.1.1-r1a3-x86-gcc2-2011-05-19.zip ; + allegro-4.4.1.1-r1a4-x86-gcc2-2012-08-30.zip + : $(baseURL)/lib/allegro-4.4.1.1-r1a4-x86-gcc2-2012-08-30.zip ; InstallOptionalHaikuImagePackage - dumb-0.9.3-x86-r1a3-x86-gcc2-2011-05-19.zip - : $(baseURL)/lib/dumb-0.9.3-r1a3-x86-gcc2-2011-05-19.zip ; + dumb-0.9.3-r1a4-x86-gcc2-2012-08-30.zip + : $(baseURL)/lib/dumb-0.9.3-r1a4-x86-gcc2-2012-08-30.zip ; InstallOptionalHaikuImagePackage - jgmod-0.99-x86-gcc2-2011-08-02.zip - : $(baseURL)/lib/jgmod-0.99-x86-gcc2-2011-08-02.zip ; + jgmod-0.99-r1a4-x86-gcc2-2012-08-30.zip + : $(baseURL)/lib/jgmod-0.99-r1a4-x86-gcc2-2012-08-30.zip ; } } @@ -67,8 +67,8 @@ if [ IsOptionalHaikuImagePackageAdded box2d ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 || $(isHybridBuild) { InstallOptionalHaikuImagePackage - box2d-2.1.2-r1a3-r1a3-x86-gcc4-2011-05-26.zip - : $(baseURL)/lib/box2d-2.1.2-r1a3-x86-gcc4-2011-05-26.zip + box2d-2.1.2-r1a4-x86-gcc4-2012-09-09.zip + : $(baseURL)/lib/box2d-2.1.2-r1a4-x86-gcc4-2012-09-09.zip : : true ; } else { Echo "No optional package box2d available for $(TARGET_ARCH)-gcc2" ; @@ -83,13 +83,13 @@ if [ IsOptionalHaikuImagePackageAdded fribidi ] { Echo "No optional package fribidi available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - fribidi-0.19.2-r1a3-x86-gcc4-2011-05-26.zip - : $(baseURL)/lib/fribidi-0.19.2-r1a3-x86-gcc4-2011-05-26.zip + fribidi-0.19.2-r1a4-x86-gcc4-2012-09-01.zip + : $(baseURL)/lib/fribidi-0.19.2-r1a4-x86-gcc4-2012-09-01.zip : : true ; } else { InstallOptionalHaikuImagePackage - fribidi-0.19.2-r1a3-x86-gcc2-2011-05-19.zip - : $(baseURL)/lib/fribidi-0.19.2-r1a3-x86-gcc2-2011-05-19.zip + fribidi-0.19.2-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/fribidi-0.19.2-r1a4-x86-gcc2-2012-08-29.zip : : true ; } } @@ -101,13 +101,13 @@ if [ IsOptionalHaikuImagePackageAdded lcms ] { Echo "No optional package lcms available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - lcms-2.1-r1a3-x86-gcc4-2011-05-26.zip - : $(baseURL)/lib/lcms-2.1-r1a3-x86-gcc4-2011-05-26.zip + lcms-2.1-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/lcms-2.1-r1a4-x86-gcc4-2012-09-02.zip : : true ; } else { InstallOptionalHaikuImagePackage - lcms-2.1-r1a3-x86-gcc2-2011-05-19.zip - : $(baseURL)/lib/lcms-2.1-r1a3-x86-gcc2-2011-05-19.zip + lcms-2.1-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/lcms-2.1-r1a4-x86-gcc2-2012-08-29.zip : : true ; } } @@ -119,13 +119,13 @@ if [ IsOptionalHaikuImagePackageAdded libart_lgpl ] { Echo "No optional package libart_lgpl available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - libart_lgpl-2.3.21-r1a3-x86-gcc4-2011-05-26.zip - : $(baseURL)/lib/libart_lgpl-2.3.21-r1a3-x86-gcc4-2011-05-26.zip + libart_lgpl-2.3.21-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/libart_lgpl-2.3.21-r1a4-x86-gcc4-2012-09-02.zip : : true ; } else { InstallOptionalHaikuImagePackage - libart_lgpl-2.3.21-r1a3-x86-gcc2-2011-05-19.zip - : $(baseURL)/lib/libart_lgpl-2.3.21-r1a3-x86-gcc2-2011-05-19.zip + libart_lgpl-2.3.21-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/libart_lgpl-2.3.21-r1a4-x86-gcc2-2012-08-29.zip : : true ; } } @@ -137,13 +137,13 @@ if [ IsOptionalHaikuImagePackageAdded libmad ] { Echo "No optional package libmad available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - libmad-0.15.1b-r1a3-x86-gcc4-2011-05-26.zip - : $(baseURL)/lib/libmad-0.15.1b-r1a3-x86-gcc4-2011-05-26.zip + libmad-0.15.1b-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/libmad-0.15.1b-r1a4-x86-gcc4-2012-09-02.zip : : true ; } else { InstallOptionalHaikuImagePackage - libmad-0.15.1b-r1a3-x86-gcc2-2011-05-19.zip - : $(baseURL)/lib/libmad-0.15.1b-r1a3-x86-gcc2-2011-05-19.zip + libmad-0.15.1b-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/libmad-0.15.1b-r1a4-x86-gcc2-2012-08-29.zip : : true ; } } @@ -155,13 +155,13 @@ if [ IsOptionalHaikuImagePackageAdded libmikmod ] { Echo "No optional package libmikmod available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - libmikmod-3.1.11-r1a3-x86-gcc4-2011-05-26.zip - : $(baseURL)/lib/libmikmod-3.1.11-r1a3-x86-gcc4-2011-05-26.zip + libmikmod-3.1.11-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/libmikmod-3.1.11-r1a4-x86-gcc4-2012-09-02.zip : : true ; } else { InstallOptionalHaikuImagePackage - libmikmod-3.1.11-r1a3-x86-gcc2-2011-05-19.zip - : $(baseURL)/lib/libmikmod-3.1.11-r1a3-x86-gcc2-2011-05-19.zip + libmikmod-3.1.11-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/libmikmod-3.1.11-r1a4-x86-gcc2-2012-08-29.zip : : true ; } } @@ -173,13 +173,13 @@ if [ IsOptionalHaikuImagePackageAdded libmodplug ] { Echo "No optional package libmodplug available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - libmodplug-0.8.8.1-r1a3-x86-gcc4-2011-05-26.zip - : $(baseURL)/lib/libmodplug-0.8.8.1-r1a3-x86-gcc4-2011-05-26.zip + libmodplug-0.8.8.4-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/libmodplug-0.8.8.4-r1a4-x86-gcc4-2012-09-02.zip : : true ; } else { InstallOptionalHaikuImagePackage - libmodplug-0.8.8.1-r1a3-x86-gcc2-2011-05-19.zip - : $(baseURL)/lib/libmodplug-0.8.8.1-r1a3-x86-gcc2-2011-05-19.zip + libmodplug-0.8.8.4-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/libmodplug-0.8.8.4-r1a4-x86-gcc2-2012-08-29.zip : : true ; } } @@ -191,13 +191,13 @@ if [ IsOptionalHaikuImagePackageAdded libpaper ] { Echo "No optional package libpaper available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - libpaper-1.1.24-r1a3-x86-gcc4-2011-05-26.zip - : $(baseURL)/lib/libpaper-1.1.24-r1a3-x86-gcc4-2011-05-26.zip + libpaper-1.1.24-r1a4-x86-gcc4-2012-09-01.zip + : $(baseURL)/lib/libpaper-1.1.24-r1a4-x86-gcc4-2012-09-01.zip : : true ; } else { InstallOptionalHaikuImagePackage - libpaper-1.1.24-r1a3-x86-gcc2-2011-05-19.zip - : $(baseURL)/lib/libpaper-1.1.24-r1a3-x86-gcc2-2011-05-19.zip + libpaper-1.1.24-r1a4-x86-gcc4-2012-09-01.zip + : $(baseURL)/lib/libpaper-1.1.24-r1a4-x86-gcc4-2012-09-01.zip : : true ; } } @@ -209,13 +209,13 @@ if [ IsOptionalHaikuImagePackageAdded physfs ] { Echo "No optional package physfs available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - physfs-2.0.1-r1a3-x86-gcc4-2011-05-26.zip - : $(baseURL)/lib/physfs-2.0.1-r1a3-x86-gcc4-2011-05-26.zip + physfs-2.0.1-r1a4-x86-gcc4-2012-09-09.zip + : $(baseURL)/lib/physfs-2.0.1-r1a4-x86-gcc4-2012-09-09.zip : : true ; } else { InstallOptionalHaikuImagePackage - physfs-2.0.1-r1a3-x86-gcc2-2011-05-19.zip - : $(baseURL)/lib/physfs-2.0.1-r1a3-x86-gcc2-2011-05-19.zip + physfs-2.0.1-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/physfs-2.0.1-r1a4-x86-gcc2-2012-08-29.zip : : true ; } } @@ -227,78 +227,78 @@ if [ IsOptionalHaikuImagePackageAdded SDLLibs ] { Echo "No optional package SDLLibs available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - libsdl-1.2.15-x86-gcc4-2012-05-31.zip - : $(baseURL)/lib/libsdl-1.2.15-x86-gcc4-2012-05-31.zip ; + libsdl-1.2.15-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/libsdl-1.2.15-r1a4-x86-gcc4-2012-09-02.zip ; InstallOptionalHaikuImagePackage - guilib-1.2.1-x86-gcc4-2012-05-31.zip - : $(baseURL)/lib/guilib-1.2.1-x86-gcc4-2012-05-31.zip ; + guilib-1.2.1-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/guilib-1.2.1-r1a4-x86-gcc4-2012-09-02.zip ; InstallOptionalHaikuImagePackage - sdl-gfx-2.0.23-x86-gcc4-2012-05-31.zip - : $(baseURL)/lib/sdl-gfx-2.0.23-x86-gcc4-2012-05-31.zip ; + sdl-gfx-2.0.23-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/sdl-gfx-2.0.23-r1a4-x86-gcc4-2012-09-02.zip ; InstallOptionalHaikuImagePackage - sdl-image-1.2.12-x86-gcc4-2012-05-31.zip - : $(baseURL)/lib/sdl-image-1.2.12-x86-gcc4-2012-05-31.zip ; + sdl-image-1.2.12-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/sdl-image-1.2.12-r1a4-x86-gcc4-2012-09-02.zip ; InstallOptionalHaikuImagePackage - sdl-mixer-1.2.11-x86-gcc4-2012-05-31.zip - : $(baseURL)/lib/sdl-mixer-1.2.11-x86-gcc4-2012-05-31.zip ; + sdl-mixer-1.2.11-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/sdl-mixer-1.2.11-r1a4-x86-gcc4-2012-09-02.zip ; InstallOptionalHaikuImagePackage - sdl-net-1.2.8-x86-gcc4-2012-05-31.zip - : $(baseURL)/lib/sdl-net-1.2.8-x86-gcc4-2012-05-31.zip ; + sdl-net-1.2.8-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/sdl-net-1.2.8-r1a4-x86-gcc4-2012-09-02.zip ; InstallOptionalHaikuImagePackage - sdl-sound-1.0.3-x86-gcc4-2012-05-31.zip - : $(baseURL)/lib/sdl-sound-1.0.3-x86-gcc4-2012-05-31.zip ; + sdl-sound-1.0.3-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/sdl-sound-1.0.3-r1a4-x86-gcc4-2012-09-02.zip ; InstallOptionalHaikuImagePackage - sdl-rtf-0.1.0-r1a3-x86-gcc4-2011-05-26.zip - : $(baseURL)/lib/sdl-rtf-0.1.0-r1a3-x86-gcc4-2011-05-26.zip ; + sdl-rtf-0.1.0-r1a4-x86-gcc4-2012-09-03.zip + : $(baseURL)/lib/sdl-rtf-0.1.0-r1a4-x86-gcc4-2012-09-03.zip ; InstallOptionalHaikuImagePackage - sdl-ttf-2.0.11-x86-gcc4-2012-05-31.zip - : $(baseURL)/lib/sdl-ttf-2.0.11-x86-gcc4-2012-05-31.zip ; + sdl-ttf-2.0.11-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/sdl-ttf-2.0.11-r1a4-x86-gcc4-2012-09-02.zip ; InstallOptionalHaikuImagePackage - sge-030809-x86-gcc4-2012-05-31.zip - : $(baseURL)/lib/sge-030809-x86-gcc4-2012-05-31.zip ; + sge-030809-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/sge-030809-r1a4-x86-gcc4-2012-09-02.zip ; InstallOptionalHaikuImagePackage - smjpeg-0.2.1-x86-gcc4-2012-05-31.zip - : $(baseURL)/lib/smjpeg-0.2.1-x86-gcc4-2012-05-31.zip ; + smjpeg-0.2.1-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/smjpeg-0.2.1-r1a4-x86-gcc4-2012-09-02.zip ; InstallOptionalHaikuImagePackage - smpeg-0.4.5-x86-gcc4-2011-05-31.zip - : $(baseURL)/lib/smpeg-0.4.5-x86-gcc4-2012-05-31.zip ; + smpeg-0.4.5-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/smpeg-0.4.5-r1a4-x86-gcc4-2012-09-02.zip ; } else { InstallOptionalHaikuImagePackage - libsdl-1.2.15-x86-gcc2-2012-06-24.zip - : $(baseURL)/lib/libsdl-1.2.15-x86-gcc2-2012-06-24.zip ; + libsdl-1.2.15-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/libsdl-1.2.15-r1a4-x86-gcc2-2012-08-29.zip ; InstallOptionalHaikuImagePackage - guilib-1.2.1-x86-gcc2-2012-06-24.zip - : $(baseURL)/lib/guilib-1.2.1-x86-gcc2-2012-06-24.zip ; + guilib-1.2.1-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/guilib-1.2.1-r1a4-x86-gcc2-2012-08-29.zip ; InstallOptionalHaikuImagePackage - sdl-gfx-2.0.23-x86-gcc2-2012-06-24.zip - : $(baseURL)/lib/sdl-gfx-2.0.23-x86-gcc2-2012-06-24.zip ; + sdl-gfx-2.0.23-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/sdl-gfx-2.0.23-r1a4-x86-gcc2-2012-08-29.zip ; InstallOptionalHaikuImagePackage - sdl-image-1.2.12-x86-x86-gcc2-2012-06-24.zip - : $(baseURL)/lib/sdl-image-1.2.12-x86-gcc2-2012-06-24.zip ; + sdl-image-1.2.12-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/sdl-image-1.2.12-r1a4-x86-gcc2-2012-08-29.zip ; InstallOptionalHaikuImagePackage - sdl-mixer-1.2.11-x86-gcc2-2012-06-25.zip - : $(baseURL)/lib/sdl-mixer-1.2.11-x86-gcc2-2012-06-25.zip ; + sdl-mixer-1.2.11-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/sdl-mixer-1.2.11-r1a4-x86-gcc2-2012-08-29.zip ; InstallOptionalHaikuImagePackage - sdl-net-1.2.8-x86-gcc2-2012-06-24.zip - : $(baseURL)/lib/sdl-net-1.2.8-x86-gcc2-2012-06-24.zip ; + sdl-net-1.2.8-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/sdl-net-1.2.8-r1a4-x86-gcc2-2012-08-29.zip ; InstallOptionalHaikuImagePackage - sdl-sound-1.0.3-x86-gcc2-2012-06-24.zip - : $(baseURL)/lib/sdl-sound-1.0.3-x86-gcc2-2012-06-24.zip ; + sdl-sound-1.0-hg-r1a4-x86-gcc2-2012-08-30.zip + : $(baseURL)/lib/sdl-sound-1.0-hg-r1a4-x86-gcc2-2012-08-30.zip ; InstallOptionalHaikuImagePackage sdl-rtf-0.1.0-r1a3-x86-gcc2-2011-05-20.zip : $(baseURL)/lib/sdl-rtf-0.1.0-r1a3-x86-gcc2-2011-05-20.zip ; InstallOptionalHaikuImagePackage - sdl-ttf-2.0.11-x86-gcc2-2012-06-24.zip - : $(baseURL)/lib/sdl-ttf-2.0.11-x86-gcc2-2012-06-24.zip ; + sdl-ttf-2.0.11-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/sdl-ttf-2.0.11-r1a4-x86-gcc2-2012-08-29.zip ; InstallOptionalHaikuImagePackage - sge-030809-x86-gcc2-2012-06-24.zip - : $(baseURL)/lib/sge-030809-x86-gcc2-2012-06-24.zip ; + sge-030809-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/sge-030809-r1a4-x86-gcc2-2012-08-29.zip ; InstallOptionalHaikuImagePackage - smjpeg-0.2.1-x86-gcc2-2012-06-24.zip - : $(baseURL)/lib/smjpeg-0.2.1-x86-gcc2-2012-06-24.zip ; + smjpeg-0.2.1-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/smjpeg-0.2.1-r1a4-x86-gcc2-2012-08-29.zip ; InstallOptionalHaikuImagePackage - smpeg-0.4.5-x86-gcc2-2012-06-24.zip - : $(baseURL)/lib/smpeg-0.4.5-x86-gcc2-2012-06-24.zip ; + smpeg-0.4.5-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/smpeg-0.4.5-r1a4-x86-gcc2-2012-08-29.zip ; } } @@ -309,48 +309,48 @@ if [ IsOptionalHaikuImagePackageAdded XiphLibs ] { Echo "No optional package XiphLibs available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - flac-1.2.1-r1a3-x86-gcc4-2011-05-26.zip - : $(baseURL)/lib/flac-1.2.1-r1a3-x86-gcc4-2011-05-26.zip ; + flac-1.2.1-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/flac-1.2.1-r1a4-x86-gcc4-2012-09-02.zip ; InstallOptionalHaikuImagePackage - libao-1.0.0-r1a3-x86-gcc4-2011-05-26.zip - : $(baseURL)/lib/libao-1.0.0-r1a3-x86-gcc4-2011-05-26.zip ; + libao-1.0.0-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/libao-1.0.0-r1a4-x86-gcc4-2012-09-02.zip ; InstallOptionalHaikuImagePackage - libogg-1.2.2-r1a3-x86-gcc4-2011-05-26.zip - : $(baseURL)/lib/libogg-1.2.2-r1a3-x86-gcc4-2011-05-26.zip ; + libogg-1.3.0-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/libogg-1.3.0-r1a4-x86-gcc4-2012-09-02.zip ; InstallOptionalHaikuImagePackage - libtheora-1.1.1-r1a3-x86-gcc4-2011-05-26.zip - : $(baseURL)/lib/libtheora-1.1.1-r1a3-x86-gcc4-2011-05-26.zip ; + libtheora-1.1.1-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/libtheora-1.1.1-r1a4-x86-gcc4-2012-09-02.zip ; InstallOptionalHaikuImagePackage - libvorbis-1.3.2-r1a3-x86-gcc4-2011-05-26.zip - : $(baseURL)/lib/libvorbis-1.3.2-r1a3-x86-gcc4-2011-05-26.zip ; + libvorbis-1.3.2-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/libvorbis-1.3.2-r1a4-x86-gcc4-2012-09-02.zip ; InstallOptionalHaikuImagePackage - speex-1.2rc1-x86-gcc4-2012-03-12.zip - : $(baseURL)/lib/speex-1.2rc1-x86-gcc4-2012-03-12.zip ; + speex-1.2rc1-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/speex-1.2rc1-r1a4-x86-gcc4-2012-09-02.zip ; InstallOptionalHaikuImagePackage - vorbis-tools-1.4.0-r1a3-x86-gcc4-2011-05-26.zip - : $(baseURL)/lib/vorbis-tools-1.4.0-r1a3-x86-gcc4-2011-05-26.zip ; + vorbis-tools-1.4.0-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/vorbis-tools-1.4.0-r1a4-x86-gcc4-2012-09-02.zip ; } else { InstallOptionalHaikuImagePackage - flac-1.2.1-r1a3-x86-gcc2-2011-05-19.zip - : $(baseURL)/lib/flac-1.2.1-r1a3-x86-gcc2-2011-05-19.zip ; + flac-1.2.1-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/flac-1.2.1-r1a4-x86-gcc2-2012-08-29.zip ; InstallOptionalHaikuImagePackage - libao-1.0.0-r1a3-x86-gcc2-2011-05-19.zip - : $(baseURL)/lib/libao-1.0.0-r1a3-x86-gcc2-2011-05-19.zip ; + libao-1.0.0-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/libao-1.0.0-r1a4-x86-gcc2-2012-08-29.zip ; InstallOptionalHaikuImagePackage - libogg-1.2.2-r1a3-x86-gcc2-2011-05-19.zip - : $(baseURL)/lib/libogg-1.2.2-r1a3-x86-gcc2-2011-05-19.zip ; + libogg-1.3.0-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/libogg-1.3.0-r1a4-x86-gcc2-2012-08-29.zip ; InstallOptionalHaikuImagePackage - libtheora-1.1.1-r1a3-x86-gcc2-2011-05-19.zip - : $(baseURL)/lib/libtheora-1.1.1-r1a3-x86-gcc2-2011-05-19.zip ; + libtheora-1.1.1-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/libtheora-1.1.1-r1a4-x86-gcc2-2012-08-29.zip ; InstallOptionalHaikuImagePackage - libvorbis-1.3.2-r1a3-x86-gcc2-2011-05-19.zip - : $(baseURL)/lib/libvorbis-1.3.2-r1a3-x86-gcc2-2011-05-19.zip ; + libvorbis-1.3.2-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/libvorbis-1.3.2-r1a4-x86-gcc2-2012-08-29.zip ; InstallOptionalHaikuImagePackage - speex-1.2-git-r1a3-x86-gcc2-2011-05-26.zip - : $(baseURL)/lib/speex-1.2-git-r1a3-x86-gcc2-2011-05-26.zip ; + speex-1.2rc1-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/speex-1.2rc1-r1a4-x86-gcc2-2012-08-29.zip ; InstallOptionalHaikuImagePackage - vorbis-tools-1.4.0-r1a3-x86-gcc2-2011-05-19.zip - : $(baseURL)/lib/vorbis-tools-1.4.0-r1a3-x86-gcc2-2011-05-19.zip ; + vorbis-tools-1.4.0-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/lib/vorbis-tools-1.4.0-r1a4-x86-gcc2-2012-08-29.zip ; } } diff --git a/build/jam/OptionalPackageDependencies b/build/jam/OptionalPackageDependencies index 9bca225c2e..441fc5234b 100644 --- a/build/jam/OptionalPackageDependencies +++ b/build/jam/OptionalPackageDependencies @@ -10,6 +10,7 @@ OptionalPackageDependencies ArmyKnife : TagLib ; OptionalPackageDependencies Beam : LibIconv LibLayout OpenSSL PCRE ; OptionalPackageDependencies BeHappy : BeBook NetSurf ; OptionalPackageDependencies BurnItNow : CDRecord ; +OptionalPackageDependencies Caya : Expat ; OptionalPackageDependencies CDRecord : GetText LibIconv ; OptionalPackageDependencies Curl : OpenSSL ; OptionalPackageDependencies DevelopmentBase : CDRecord DevelopmentMin Yasm ; diff --git a/build/jam/OptionalPackages b/build/jam/OptionalPackages index 6784b53a61..b4574e425a 100644 --- a/build/jam/OptionalPackages +++ b/build/jam/OptionalPackages @@ -28,7 +28,7 @@ if $(HAIKU_ADD_ALTERNATIVE_GCC_LIBS) = 1 # Bluetooth - experimental Haiku components for Bluetooth # BurnItNow - CD burning app # Bzip - file archiving utility -#   Caya                    - a multiprotocol im client +# Caya - a multiprotocol im client # CCache - fast compiler cache # CDRecord - the command line CD writing tools # Clang - the LLVM C and C++ compiler (llvm, libs, headers) @@ -45,6 +45,7 @@ if $(HAIKU_ADD_ALTERNATIVE_GCC_LIBS) = 1 # DevelopmentMin - development headers, libs, tools, from sources only # DevelopmentPowerPC - Cross compiling environment for PowerPC # Doxygen - Generate documentation from source code +# Droid - Font family from Google's Android project # Expat - XML parsing libraries # Fastdep - fast dependency generator for C/C++ files # friss - RSS/ATOM/... feeds reader @@ -68,6 +69,7 @@ if $(HAIKU_ADD_ALTERNATIVE_GCC_LIBS) = 1 # Man - standard commands to read man pages # Mercurial - the distributed version control system # Nano - the command line text editor +# Nanumfont - Korean monospace font # Neon - support libraries used for example by SVN # NetFS - the native networked file system components # NetSurf - the web browser @@ -81,6 +83,7 @@ if $(HAIKU_ADD_ALTERNATIVE_GCC_LIBS) = 1 # Pe - the powerful native Programmer's Editor # Perl - the scripting language # Python - the scripting language +# Puri - chess game # Rsync - remote directory synchronization # Ruby - the programming language # Sed - the ultimate stream editor @@ -125,13 +128,13 @@ if [ IsOptionalHaikuImagePackageAdded APR ] { Echo "No optional package APR available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - apr-1.4.6-x86-gcc4-2012-06-19.zip - : $(baseURL)/apr-1.4.6-x86-gcc4-2012-06-19.zip + apr-1.4.6-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/apr-1.4.6-r1a4-x86-gcc4-2012-08-30.zip : : true ; } else { InstallOptionalHaikuImagePackage - apr-1.4.6-x86-gcc2-2012-06-19.zip - : $(baseURL)/apr-1.4.6-x86-gcc2-2012-06-19.zip + apr-1.4.6-r1a4-x86-gcc2-2012-08-27.zip + : $(baseURL)/apr-1.4.6-r1a4-x86-gcc2-2012-08-27.zip : : true ; } } @@ -143,13 +146,13 @@ if [ IsOptionalHaikuImagePackageAdded APR-util ] { Echo "No optional package APR-util available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - apr-util-1.4.1-x86-gcc4-2012-06-19.zip - : $(baseURL)/apr-util-1.4.1-x86-gcc4-2012-06-19.zip + apr-util-1.4.1-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/apr-util-1.4.1-r1a4-x86-gcc4-2012-08-30.zip : : true ; } else { InstallOptionalHaikuImagePackage - apr-util-1.4.1-x86-gcc2-2012-06-19.zip - : $(baseURL)/apr-util-1.4.1-x86-gcc2-2012-06-19.zip + apr-util-1.4.1-r1a4-x86-gcc2-2012-08-27.zip + : $(baseURL)/apr-util-1.4.1-r1a4-x86-gcc2-2012-08-27.zip : : true ; } } @@ -163,8 +166,8 @@ if [ IsOptionalHaikuImagePackageAdded ArmyKnife ] { Echo "No optional package ArmyKnife for gcc4" ; } else { InstallOptionalHaikuImagePackage - armyknife-63-r1a3-x86-gcc2-2011-06-04.zip - : $(baseURL)/armyknife-63-r1a3-x86-gcc2-2011-06-04.zip ; + armyknife-63-r1a4-x86-gcc2-2012-08-30.zip + : $(baseURL)/armyknife-63-r1a4-x86-gcc2-2012-08-30.zip ; AddSymlinkToHaikuImage home config settings deskbar Applications : /boot/apps/ArmyKnife/ArmyKnife ; } @@ -176,11 +179,11 @@ if [ IsOptionalHaikuImagePackageAdded Bazaar ] { if $(TARGET_ARCH) != x86 { Echo "No optional package Bazaar available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { - InstallOptionalHaikuImagePackage bzr-2.5.1-x86-gcc4-2012-06-22.zip - : $(baseURL)/bzr-2.5.1-x86-gcc4-2012-06-22.zip ; + InstallOptionalHaikuImagePackage bzr-2.6b1-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/bzr-2.6b1-r1a4-x86-gcc4-2012-08-30.zip ; } else { - InstallOptionalHaikuImagePackage bzr-2.5.1-x86-gcc2-2012-06-22.zip - : $(baseURL)/bzr-2.5.1-x86-gcc2-2012-06-22.zip ; + InstallOptionalHaikuImagePackage bzr-2.5.1-r1a4-x86-gcc2-2012-08-27.zip + : $(baseURL)/bzr-2.5.1-r1a4-x86-gcc2-2012-08-27.zip ; } } @@ -192,12 +195,12 @@ if [ IsOptionalHaikuImagePackageAdded BeAE ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - beae-22-r1a3-x86-gcc4-2011-05-24.zip - : $(baseURL)/beae-22-r1a3-x86-gcc4-2011-05-24.zip ; + beae-22-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/beae-22-r1a4-x86-gcc4-2012-08-30.zip ; } else { InstallOptionalHaikuImagePackage - beae-22-r1a3-x86-gcc2-2011-05-18.zip - : $(baseURL)/beae-22-r1a3-x86-gcc2-2011-05-18.zip ; + beae-22-r1a4-x86-gcc2-2012-08-27.zip + : $(baseURL)/beae-22-r1a4-x86-gcc2-2012-08-27.zip ; } AddSymlinkToHaikuImage home config settings deskbar Applications : /boot/apps/BeAE/BeAE ; @@ -212,12 +215,12 @@ if [ IsOptionalHaikuImagePackageAdded Beam ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - beam-1.2alpha-x86-gcc4-2012-08-11.zip - : $(baseURL)/beam-1.2alpha-x86-gcc4-2012-08-11.zip ; + beam-1.2alpha-r1a4-x86-gcc4-2012-09-12.zip + : $(baseURL)/beam-1.2alpha-r1a4-x86-gcc4-2012-09-12.zip ; } else { InstallOptionalHaikuImagePackage - Beam-1.2alpha-x86-gcc2-2012-06-04.zip - : $(baseURL)/Beam-1.2alpha-x86-gcc2-2012-06-04.zip ; + beam-1.2alpha-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/beam-1.2alpha-r1a4-x86-gcc2-2012-08-29.zip ; } AddSymlinkToHaikuImage home config settings deskbar Applications : /boot/apps/Beam/Beam ; @@ -279,8 +282,8 @@ if [ IsOptionalHaikuImagePackageAdded BePDF ] { : $(baseURL)/bepdf-1.1.1b4-x86-gcc4-2012-08-11.zip ; } else { InstallOptionalHaikuImagePackage - bepdf-1.1.1b4-r1a3-x86-gcc2-2011-05-30.zip - : $(baseURL)/bepdf-1.1.1b4-r1a3-x86-gcc2-2011-05-30.zip ; + bepdf-1.1.1b4-r1a4-x86-gcc2-2012-08-30.zip + : $(baseURL)/bepdf-1.1.1b4-r1a4-x86-gcc2-2012-08-30.zip ; } AddSymlinkToHaikuImage home config settings deskbar Applications : /boot/apps/BePDF/BePDF ; @@ -295,12 +298,12 @@ if [ IsOptionalHaikuImagePackageAdded BeZillaBrowser ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - BeZillaBrowser-2.0.0.22pre-x86-gcc4-2012-04-04.zip - : $(baseURL)/BeZillaBrowser-2.0.0.22pre-x86-gcc4-2012-04-04.zip ; + BeZillaBrowser-2.0.0.22pre-x86-gcc4-2012-09-21.zip + : $(baseURL)/BeZillaBrowser-2.0.0.22pre-x86-gcc4-2012-09-21.zip ; } else { InstallOptionalHaikuImagePackage - BeZillaBrowser-2.0.0.22pre-x86-gcc2-2012-04-02.zip - : $(baseURL)/BeZillaBrowser-2.0.0.22pre-x86-gcc2-2012-04-02.zip ; + BeZillaBrowser-2.0.0.22pre-x86-gcc2-2012-09-21.zip + : $(baseURL)/BeZillaBrowser-2.0.0.22pre-x86-gcc2-2012-09-21.zip ; } AddSymlinkToHaikuImage home config settings deskbar Applications : /boot/apps/BeZillaBrowser/BeZillaBrowser ; @@ -337,12 +340,12 @@ if [ IsOptionalHaikuImagePackageAdded BurnItNow ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - burnitnow-39-r1a3-x86-gcc4-2011-05-24.zip - : $(baseURL)/burnitnow-39-r1a3-x86-gcc4-2011-05-24.zip ; + burnitnow-39-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/burnitnow-39-r1a4-x86-gcc4-2012-08-30.zip ; } else { InstallOptionalHaikuImagePackage - burnitnow-39-r1a3-x86-gcc2-2011-05-18.zip - : $(baseURL)/burnitnow-39-r1a3-x86-gcc2-2011-05-18.zip ; + burnitnow-39-r1a4-x86-gcc2-2012-08-27.zip + : $(baseURL)/burnitnow-39-r1a4-x86-gcc2-2012-08-27.zip ; } AddSymlinkToHaikuImage home config settings deskbar Applications : /boot/apps/BurnItNow/BurnItNow ; @@ -355,13 +358,13 @@ if [ IsOptionalHaikuImagePackageAdded Bzip ] { if $(TARGET_ARCH) = x86 { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - bzip2-1.0.6-r1a3-x86-gcc4-2011-05-24.zip - : $(baseURL)/bzip2-1.0.6-r1a3-x86-gcc4-2011-05-24.zip + bzip2-1.0.6-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/bzip2-1.0.6-r1a4-x86-gcc4-2012-08-30.zip : : true ; } else { InstallOptionalHaikuImagePackage - bzip2-1.0.6-r1a3-x86-gcc2-2011-05-17.zip - : $(baseURL)/bzip2-1.0.6-r1a3-x86-gcc2-2011-05-17.zip + bzip2-1.0.6-r1a4-x86-gcc2-2012-08-27.zip + : $(baseURL)/bzip2-1.0.6-r1a4-x86-gcc2-2012-08-27.zip : : true ; } } else if $(TARGET_ARCH) = x86_64 { @@ -390,12 +393,12 @@ if [ IsOptionalHaikuImagePackageAdded Caya ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 || $(isHybridBuild) { InstallOptionalHaikuImagePackage - caya-264-x86-gcc4-2012-05-20.zip - : $(baseURL)/caya-264-x86-gcc4-2012-05-20.zip + caya-279-r1a4-x86-gcc4-2012-10-02.zip + : $(baseURL)/caya-279-r1a4-x86-gcc4-2012-10-02.zip : : true ; InstallOptionalHaikuImagePackage - caya-gpl-protocols-35-x86-gcc4-2012-05-20.zip - : $(baseURL)/caya-gpl-protocols-35-x86-gcc4-2012-05-20.zip + caya-gpl-protocols-36-r1a4-x86-gcc4-2012-10-01.zip + : $(baseURL)/caya-gpl-protocols-36-r1a4-x86-gcc4-2012-10-01.zip : : true ; AddSymlinkToHaikuImage home config be Applications : /boot/apps/Caya/Caya ; @@ -411,12 +414,12 @@ if [ IsOptionalHaikuImagePackageAdded CCache ] { Echo "No optional package CCache available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - ccache-3.0.1-r1a3-x86-gcc4-2011-05-23.zip - : $(baseURL)/ccache-3.0.1-r1a3-x86-gcc4-2011-05-23.zip ; + ccache-3.0.1-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/ccache-3.0.1-r1a4-x86-gcc4-2012-08-30.zip ; } else { InstallOptionalHaikuImagePackage - ccache-3.0.1-r1a3-x86-gcc2-2011-05-17.zip - : $(baseURL)/ccache-3.0.1-r1a3-x86-gcc2-2011-05-17.zip ; + ccache-3.0.1-r1a4-x86-gcc2-2012-08-27.zip + : $(baseURL)/ccache-3.0.1-r1a4-x86-gcc2-2012-08-27.zip ; } } @@ -427,12 +430,12 @@ if [ IsOptionalHaikuImagePackageAdded CDRecord ] { Echo "No optional package CDRecord available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - cdrtools-3.01a07-x86-gcc4-2012-06-19.zip - : $(baseURL)/cdrtools-3.01a07-x86-gcc4-2012-07-19.zip ; + cdrtools-3.01a07-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/cdrtools-3.01a07-r1a4-x86-gcc4-2012-08-30.zip ; } else { InstallOptionalHaikuImagePackage - cdrtools-3.01a07-x86-gcc2-2012-07-19-r2.zip - : $(baseURL)/cdrtools-3.01a07-x86-gcc2-2012-07-19-r2.zip ; + cdrtools-3.01a07-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/cdrtools-3.01a07-r1a4-x86-gcc2-2012-08-28.zip ; } } @@ -493,13 +496,13 @@ if [ IsOptionalHaikuImagePackageAdded CMake ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - cmake-2.8.5-x86-gcc4-2012-07-18.zip - : $(baseURL)/cmake-2.8.5-x86-gcc4-2012-07-18.zip + cmake-2.8.5-r1a4-x86-gcc4-2012-08-28.zip + : $(baseURL)/cmake-2.8.5-r1a4-x86-gcc4-2012-08-28.zip : : true ; } else { InstallOptionalHaikuImagePackage - cmake-2.8.5-x86-gcc2-2012-07-16.zip - : $(baseURL)/cmake-2.8.5-x86-gcc2-2012-07-16.zip + cmake-2.8.5-r1a4-x86-gcc2-2012-08-27.zip + : $(baseURL)/cmake-2.8.5-r1a4-x86-gcc2-2012-08-27.zip : : true ; } } @@ -513,12 +516,12 @@ if [ IsOptionalHaikuImagePackageAdded Colors! ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - Colors!-2.0-x86-gcc4-2012-04-30.zip - : $(baseURL)/Colors\!-2.0-x86-gcc4-2012-04-30.zip ; + Colors!-2.1-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/Colors\!-2.1-r1a4-x86-gcc4-2012-08-30.zip ; } else { InstallOptionalHaikuImagePackage - Colors!-2.0-x86-gcc2-2012-04-30.zip - : $(baseURL)/Colors\!-2.0-x86-gcc2-2012-04-30.zip ; + Colors!-2.1-r1a4-x86-gcc2-2012-08-30.zip + : $(baseURL)/Colors\!-2.1-r1a4-x86-gcc2-2012-08-30.zip ; } AddSymlinkToHaikuImage home config settings deskbar Applications : /boot/apps/Colors\!/Colors\! ; @@ -533,13 +536,13 @@ if [ IsOptionalHaikuImagePackageAdded Ctags ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - ctags-5.8-x86-gcc4-2012-01-23.zip - : $(baseURL)/ctags-5.8-x86-gcc4-2012-01-23.zip + ctags-5.8-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/ctags-5.8-r1a4-x86-gcc4-2012-08-30.zip : : true ; } else { InstallOptionalHaikuImagePackage - ctags-5.8-x86-gcc2-2010-05-24.zip - : $(baseURL)/ctags-5.8-x86-gcc2-2010-05-24.zip + ctags-5.8-r1a4-x86-gcc2-2012-09-03.zip + : $(baseURL)/ctags-5.8-r1a4-x86-gcc2-2012-09-03.zip : : true ; } } @@ -551,11 +554,11 @@ if [ IsOptionalHaikuImagePackageAdded Curl ] { if $(TARGET_ARCH) != x86 { Echo "No optional package Curl available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { - InstallOptionalHaikuImagePackage curl-7.26.0-x86-gcc4-2012-06-20.zip - : $(baseURL)/curl-7.26.0-x86-gcc4-2012-06-20.zip ; + InstallOptionalHaikuImagePackage curl-7.26.0-r1a4-x86-gcc4-2012-08-29.zip + : $(baseURL)/curl-7.26.0-r1a4-x86-gcc4-2012-08-29.zip ; } else { - InstallOptionalHaikuImagePackage curl-7.26.0-x86-gcc2-2012-06-21.zip - : $(baseURL)/curl-7.26.0-x86-gcc2-2012-06-21.zip ; + InstallOptionalHaikuImagePackage curl-7.26.0-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/curl-7.26.0-r1a4-x86-gcc2-2012-08-28.zip ; } } @@ -567,13 +570,13 @@ if [ IsOptionalHaikuImagePackageAdded CVS ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - cvs-1.12.13.1-x86-gcc4-2012-06-22.zip - : $(baseURL)/cvs-1.12.13.1-x86-gcc4-2012-06-22.zip + cvs-1.12.13.1-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/cvs-1.12.13.1-r1a4-x86-gcc4-2012-08-30.zip : : true ; } else { InstallOptionalHaikuImagePackage - cvs-1.12.13.1-x86-gcc2-2012-06-20.zip - : $(baseURL)/cvs-1.12.13.1-x86-gcc2-2012-06-20.zip + cvs-1.12.13.1-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/cvs-1.12.13.1-r1a4-x86-gcc2-2012-08-28.zip : : true ; } } @@ -584,7 +587,7 @@ if [ IsOptionalHaikuImagePackageAdded CVS ] { if [ IsOptionalHaikuImagePackageAdded DemoPackage_Audio ] { InstallOptionalHaikuImagePackage DemoPackage_Audio-0.1-2012-02-19.zip : $(baseURL)/DemoPackage_Audio-0.1-2012-02-19.zip - : home ; + : ; } @@ -592,15 +595,15 @@ if [ IsOptionalHaikuImagePackageAdded DemoPackage_Audio ] { if [ IsOptionalHaikuImagePackageAdded DemoPackage_Data ] { InstallOptionalHaikuImagePackage DemoPackage_Data-0.1-2012-02-19.zip : $(baseURL)/DemoPackage_Data-0.1-2012-02-19.zip - : home ; + : ; } # DemoPackage_Image if [ IsOptionalHaikuImagePackageAdded DemoPackage_Image ] { - InstallOptionalHaikuImagePackage DemoPackage_Image-0.1-2012-02-19.zip - : $(baseURL)/DemoPackage_Image-0.1-2012-02-19.zip - : home ; + InstallOptionalHaikuImagePackage DemoPackage_Image-0.2-2012-09-22.zip + : $(baseURL)/DemoPackage_Image-0.2-2012-09-22.zip + : ; } @@ -608,7 +611,7 @@ if [ IsOptionalHaikuImagePackageAdded DemoPackage_Image ] { if [ IsOptionalHaikuImagePackageAdded DemoPackage_Video ] { InstallOptionalHaikuImagePackage DemoPackage_Video-0.1-2012-02-19.zip : $(baseURL)/DemoPackage_Video-0.1-2012-02-19.zip - : home ; + : ; } @@ -621,37 +624,37 @@ if [ IsOptionalHaikuImagePackageAdded Development ] { # autotools if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - autoconf-2.68-r1a3-x86-gcc4-2011-05-23.zip - : $(baseURL)/autoconf-2.68-r1a3-x86-gcc4-2011-05-23.zip + autoconf-2.68-r1a4-x86-gcc4-2012-08-28.zip + : $(baseURL)/autoconf-2.68-r1a4-x86-gcc4-2012-08-28.zip : : true ; InstallOptionalHaikuImagePackage - automake-1.11.1-r1a3-x86-gcc4-2011-05-23.zip - : $(baseURL)/automake-1.11.1-r1a3-x86-gcc4-2011-05-23.zip + automake-1.11.1-r1a4-x86-gcc4-2012-08-28.zip + : $(baseURL)/automake-1.11.1-r1a4-x86-gcc4-2012-08-28.zip : : true ; InstallOptionalHaikuImagePackage - libtool-2.4-r1a3-x86-gcc4-2011-05-23.zip - : $(baseURL)/libtool-2.4-r1a3-x86-gcc4-2011-05-23.zip + libtool-2.4-r1a4-x86-gcc4-2012-08-28.zip + : $(baseURL)/libtool-2.4-r1a4-x86-gcc4-2012-08-28.zip : : true ; InstallOptionalHaikuImagePackage - texinfo-4.13a-x86-gcc4-2012-03-31.zip - : $(baseURL)/texinfo-4.13a-x86-gcc4-2012-03-31.zip + texinfo-4.13a-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/texinfo-4.13a-r1a4-x86-gcc4-2012-08-30.zip : : true ; } else { InstallOptionalHaikuImagePackage - autoconf-2.68-r1a3-x86-gcc2-2011-05-17.zip - : $(baseURL)/autoconf-2.68-r1a3-x86-gcc2-2011-05-17.zip + autoconf-2.68-r1a4-x86-gcc2-2012-08-26.zip + : $(baseURL)/autoconf-2.68-r1a4-x86-gcc2-2012-08-26.zip : : true ; InstallOptionalHaikuImagePackage - automake-1.11.1-r1a3-x86-gcc2-2011-05-17.zip - : $(baseURL)/automake-1.11.1-r1a3-x86-gcc2-2011-05-17.zip + automake-1.11.1-r1a4-x86-gcc2-2012-08-26.zip + : $(baseURL)/automake-1.11.1-r1a4-x86-gcc2-2012-08-26.zip : : true ; InstallOptionalHaikuImagePackage - libtool-2.4-r1a3-x86-gcc2-2011-05-17.zip - : $(baseURL)/libtool-2.4-r1a3-x86-gcc2-2011-05-17.zip + libtool-2.4-r1a4-x86-gcc2-2012-08-26.zip + : $(baseURL)/libtool-2.4-r1a4-x86-gcc2-2012-08-26.zip : : true ; InstallOptionalHaikuImagePackage - texinfo-4.13a-x86-gcc2-2012-03-31.zip - : $(baseURL)/texinfo-4.13a-x86-gcc2-2012-03-31.zip + texinfo-4.13a-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/texinfo-4.13a-r1a4-x86-gcc2-2012-08-28.zip : : true ; } } else if $(TARGET_ARCH) = x86_64 { @@ -681,21 +684,21 @@ if [ IsOptionalHaikuImagePackageAdded DevelopmentBase ] { # gcc and binutils if $(HAIKU_GCC_VERSION[1]) = 2 || $(isHybridBuild) { InstallOptionalHaikuImagePackage - gcc-2.95.3-x86-gcc2-2011-11-22.zip - : $(baseURL)/gcc-2.95.3-x86-gcc2-2011-11-22.zip ; + gcc-2.95.3-r1a4-x86-gcc2-2012-11-01.zip + : $(baseURL)/gcc-2.95.3-r1a4-x86-gcc2-2012-11-01.zip ; } if $(HAIKU_GCC_VERSION[1]) = 2 { # symlink to the appropriate system/lib[/gcc2] folder AddSymlinkToHaikuHybridImage - develop abi x86 gcc2 tools gcc-2.95.3-haiku-111122 lib + develop abi x86 gcc2 tools gcc-2.95.3-haiku-121101 lib : /system/lib libstdc++.r4.so : : true ; } if $(HAIKU_GCC_VERSION[1]) = 4 || $(isHybridBuild) { InstallOptionalHaikuImagePackage - gcc-4.6.2-x86-gcc4-2012-01-21.zip - : $(baseURL)/gcc-4.6.2-x86-gcc4-2012-01-21.zip ; + gcc-4.6.3-r1a4-x86-gcc4-2012-11-01.zip + : $(baseURL)/gcc-4.6.3-r1a4-x86-gcc4-2012-11-01.zip ; } if $(HAIKU_GCC_VERSION[1]) = 4 { @@ -707,7 +710,7 @@ if [ IsOptionalHaikuImagePackageAdded DevelopmentBase ] { local libs = libstdc++.so libsupc++.so ; for lib in $(libs) { AddSymlinkToHaikuHybridImage - develop abi x86 gcc4 tools gcc-4.6.2-haiku-120121 lib + develop abi x86 gcc4 tools gcc-4.6.3-haiku-121101 lib : /system/lib $(lib) : : true ; } } @@ -715,42 +718,42 @@ if [ IsOptionalHaikuImagePackageAdded DevelopmentBase ] { # other commonly used tools if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - bison-2.4.3-r1a3-x86-gcc4-2011-05-23.zip - : $(baseURL)/bison-2.4.3-r1a3-x86-gcc4-2011-05-23.zip ; + bison-2.4.3-r1a4-x86-gcc4-2012-08-28.zip + : $(baseURL)/bison-2.4.3-r1a4-x86-gcc4-2012-08-28.zip ; InstallOptionalHaikuImagePackage - m4-1.4.16-r1a3-x86-gcc4-2011-05-23.zip - : $(baseURL)/m4-1.4.16-r1a3-x86-gcc4-2011-05-23.zip ; + m4-1.4.16-r1a4-x86-gcc4-2012-08-28.zip + : $(baseURL)/m4-1.4.16-r1a4-x86-gcc4-2012-08-28.zip ; InstallOptionalHaikuImagePackage - flex-2.5.35-r1a3-x86-gcc4-2011-05-23.zip - : $(baseURL)/flex-2.5.35-r1a3-x86-gcc4-2011-05-23.zip ; + flex-2.5.35-r1a4-x86-gcc4-2012-08-28.zip + : $(baseURL)/flex-2.5.35-r1a4-x86-gcc4-2012-08-28.zip ; InstallOptionalHaikuImagePackage - jam-2.5-x86-gcc4-2011-12-26.zip - : $(baseURL)/jam-2.5-x86-gcc4-2011-12-26.zip ; + jam-2.5-r1a4-x86-gcc4-2012-08-28.zip + : $(baseURL)/jam-2.5-r1a4-x86-gcc4-2012-08-28.zip ; InstallOptionalHaikuImagePackage - mkdepend-1.7-r1a3-x86-gcc4-2011-05-23.zip - : $(baseURL)/mkdepend-1.7-r1a3-x86-gcc4-2011-05-23.zip ; + mkdepend-1.7-r1a4-x86-gcc4-2012-08-28.zip + : $(baseURL)/mkdepend-1.7-r1a4-x86-gcc4-2012-08-28.zip ; InstallOptionalHaikuImagePackage - make-3.82-r1a3-x86-gcc4-2011-05-23.zip - : $(baseURL)/make-3.82-r1a3-x86-gcc4-2011-05-23.zip ; + make-3.82-r1a4-x86-gcc4-2012-08-28.zip + : $(baseURL)/make-3.82-r1a4-x86-gcc4-2012-08-28.zip ; } else { InstallOptionalHaikuImagePackage - bison-2.4.3-r1a3-x86-gcc2-2011-05-17.zip - : $(baseURL)/bison-2.4.3-r1a3-x86-gcc2-2011-05-17.zip ; + bison-2.4.3-r1a4-x86-gcc2-2012-08-26.zip + : $(baseURL)/bison-2.4.3-r1a4-x86-gcc2-2012-08-26.zip ; InstallOptionalHaikuImagePackage - m4-1.4.16-r1a3-x86-gcc2-2011-05-17.zip - : $(baseURL)/m4-1.4.16-r1a3-x86-gcc2-2011-05-17.zip ; + m4-1.4.16-r1a4-x86-gcc2-2012-08-26.zip + : $(baseURL)/m4-1.4.16-r1a4-x86-gcc2-2012-08-26.zip ; InstallOptionalHaikuImagePackage - flex-2.5.35-r1a3-x86-gcc2-2011-05-17.zip - : $(baseURL)/flex-2.5.35-r1a3-x86-gcc2-2011-05-17.zip ; + flex-2.5.35-r1a4-x86-gcc2-2012-09-10.zip + : $(baseURL)/flex-2.5.35-r1a4-x86-gcc2-2012-09-10.zip ; InstallOptionalHaikuImagePackage - jam-2.5-x86-gcc2-2011-12-26.zip - : $(baseURL)/jam-2.5-x86-gcc2-2011-12-26.zip ; + jam-2.5-r1a4-x86-gcc2-2012-08-27.zip + : $(baseURL)/jam-2.5-r1a4-x86-gcc2-2012-08-27.zip ; InstallOptionalHaikuImagePackage - mkdepend-1.7-r1a3-x86-gcc2-2011-05-17.zip - : $(baseURL)/mkdepend-1.7-r1a3-x86-gcc2-2011-05-17.zip ; + mkdepend-1.7-r1a4-x86-gcc2-2012-08-26.zip + : $(baseURL)/mkdepend-1.7-r1a4-x86-gcc2-2012-08-26.zip ; InstallOptionalHaikuImagePackage - make-3.82-r1a3-x86-gcc2-2011-05-17.zip - : $(baseURL)/make-3.82-r1a3-x86-gcc2-2011-05-17.zip ; + make-3.82-r1a4-x86-gcc2-2012-08-26.zip + : $(baseURL)/make-3.82-r1a4-x86-gcc2-2012-08-26.zip ; } } else if $(TARGET_ARCH) = x86_64 { # gcc and binutils @@ -843,7 +846,8 @@ if [ IsOptionalHaikuImagePackageAdded DevelopmentMin ] # library symlinks local lib ; - for lib in $(SYSTEM_LIBS) $(SYSTEM_LIBS_LIBGL_ALIASES) $(developmentLibs) { + for lib in $(SYSTEM_LIBS) $(SYSTEM_LIBS_LIBGL_ALIASES) $(developmentLibs) + $(OPTIONAL_LIBS_ALIASES) { AddSymlinkToHaikuHybridImage $(abiDirTokens) lib : /system/lib $(lib:BS) : : true ; local abiVersion = [ on $(lib) return $(HAIKU_LIB_ABI_VERSION) ] ; @@ -904,20 +908,26 @@ if [ IsOptionalHaikuImagePackageAdded DevelopmentMin ] AddHeaderDirectoryToHaikuImage compatibility gnu : gnu ; # third party libs headers - AddHeaderDirectoryToHaikuImage libs jpeg : 3rdparty ; AddHeaderDirectoryToHaikuImage libs ncurses : 3rdparty ; - AddHeaderDirectoryToHaikuImage libs png : 3rdparty ; AddHeaderDirectoryToHaikuImage libs termcap : 3rdparty ; AddHeaderDirectoryToHaikuImage libs tiff : 3rdparty ; - AddHeaderDirectoryToHaikuImage libs zlib : 3rdparty ; + + CopyDirectoryToHaikuImage develop headers : + [ FDirName $(HAIKU_FREETYPE_DIR) develop headers 3rdparty ] ; + CopyDirectoryToHaikuImage develop headers : $(HAIKU_JPEG_HEADERS) + : 3rdparty ; + CopyDirectoryToHaikuImage develop headers : $(HAIKU_LIBPNG_HEADERS) + : 3rdparty ; + CopyDirectoryToHaikuImage develop headers : $(HAIKU_ZLIB_HEADERS) + : 3rdparty ; # cpp headers if $(HAIKU_GCC_VERSION[1]) = 2 { # GCC 2 only -- for GCC 4 they come with the DevelopmentBase package CopyDirectoryToHaikuImage $(abiDirTokens) headers - : [ FDirName $(HAIKU_TOP) headers cpp ] : : -x .svn ; + : [ FDirName $(HAIKU_TOP) headers cpp ] ; CopyDirectoryToAlternativeGCCArchive $(abiDirTokens) headers - : [ FDirName $(HAIKU_TOP) headers cpp ] : : -x .svn ; + : [ FDirName $(HAIKU_TOP) headers cpp ] ; } } @@ -946,12 +956,12 @@ if [ IsOptionalHaikuImagePackageAdded DMIDecode ] { Echo "No optional package DMIDecode available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - dmidecode-2.11-x86-gcc4-2011-11-02.zip - : http://revolf.free.fr/beos/dmidecode-2.11-x86-gcc4-2011-11-02.zip ; + dmidecode-2.11-r1a4-x86-gcc4-2012-09-04.zip + : $(baseURL)/dmidecode-2.11-r1a4-x86-gcc4-2012-09-04.zip ; } else { InstallOptionalHaikuImagePackage - dmidecode-2.11-x86-gcc2-2011-11-02.zip - : http://revolf.free.fr/beos/dmidecode-2.11-x86-gcc2-2011-11-02.zip ; + dmidecode-2.11-r1a4-x86-gcc2-2012-09-03.zip + : $(baseURL)/dmidecode-2.11-r1a4-x86-gcc2-2012-09-03.zip ; } } @@ -963,19 +973,27 @@ if [ IsOptionalHaikuImagePackageAdded Doxygen ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - doxygen-1.6.3-x86-gcc4-2010-05-17.zip - : $(baseURL)/doxygen-1.6.3-x86-gcc4-2010-05-17.zip + doxygen-1.6.3-r1a4-x86-gcc4-2012-09-04.zip + : $(baseURL)/doxygen-1.6.3-r1a4-x86-gcc4-2012-09-04.zip : : true ; } else { InstallOptionalHaikuImagePackage - doxygen-1.6.3-x86-gcc2-2010-05-17.zip - : $(baseURL)/doxygen-1.6.3-x86-gcc2-2010-05-17.zip + doxygen-1.6.3-r1a4-x86-gcc2-2012-09-05.zip + : $(baseURL)/doxygen-1.6.3-r1a4-x86-gcc2-2012-09-05.zip : : true ; } } } +# Droid +if [ IsOptionalHaikuImagePackageAdded Droid ] { + InstallOptionalHaikuImagePackage + droid-113-r1a4-x86-gcc2-2012-08-27.zip + : $(baseURL)/droid-113-r1a4-x86-gcc2-2012-08-27.zip ; +} + + # Expat if [ IsOptionalHaikuImagePackageAdded Expat ] { if $(TARGET_ARCH) != x86 { @@ -983,13 +1001,13 @@ if [ IsOptionalHaikuImagePackageAdded Expat ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - expat-2.0.1-r1a3-x86-gcc4-2011-05-24.zip - : $(baseURL)/expat-2.0.1-r1a3-x86-gcc4-2011-05-24.zip + expat-2.0.1-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/expat-2.0.1-r1a4-x86-gcc4-2012-08-30.zip : : true ; } else { InstallOptionalHaikuImagePackage - expat-2.0.1-x86-gcc2-2012-06-20.zip - : $(baseURL)/expat-2.0.1-x86-gcc2-2012-06-20.zip + expat-2.0.1-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/expat-2.0.1-r1a4-x86-gcc2-2012-08-28.zip : : true ; } } @@ -1002,12 +1020,12 @@ if [ IsOptionalHaikuImagePackageAdded Fastdep ] { Echo "No optional package Fastdep available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - fastdep-0.16-r1a3-x86-gcc4-2011-05-24.zip - : $(baseURL)/fastdep-0.16-r1a3-x86-gcc4-2011-05-24.zip ; + fastdep-0.16-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/fastdep-0.16-r1a4-x86-gcc4-2012-08-30.zip ; } else { InstallOptionalHaikuImagePackage - fastdep-0.16-r1a3-x86-gcc2-2011-05-18.zip - : $(baseURL)/fastdep-0.16-r1a3-x86-gcc2-2011-05-18.zip ; + fastdep-0.16-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/fastdep-0.16-r1a4-x86-gcc2-2012-08-28.zip ; } } @@ -1019,12 +1037,12 @@ if [ IsOptionalHaikuImagePackageAdded friss ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - friss-24-r1a3-x86-gcc4-2011-05-31.zip - : $(baseURL)/friss-24-r1a3-x86-gcc4-2011-05-31.zip ; + friss-33-r1a4-x86-gcc4-2012-11-06.zip + : $(baseURL)/friss-33-r1a4-x86-gcc4-2012-11-06.zip ; } else { InstallOptionalHaikuImagePackage - friss-24-r1a3-x86-gcc2-2011-05-31.zip - : $(baseURL)/friss-24-r1a3-x86-gcc2-2011-05-31.zip ; + friss-33-r1a4-x86-gcc2-2012-11-06.zip + : $(baseURL)/friss-33-r1a4-x86-gcc2-2012-11-06.zip ; } # AddSymlinkToHaikuImage home config settings deskbar Desktop\ applets # : /boot/apps/FRiSS/FRiSS ; @@ -1037,13 +1055,13 @@ if [ IsOptionalHaikuImagePackageAdded GetText ] { if $(TARGET_ARCH) = x86 { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - gettext-0.18.1.1-r1a3-x86-gcc4-2011-05-24.zip - : $(baseURL)/gettext-0.18.1.1-r1a3-x86-gcc4-2011-05-24.zip + gettext-0.18.1.1-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/gettext-0.18.1.1-r1a4-x86-gcc4-2012-08-30.zip : : true ; } else { InstallOptionalHaikuImagePackage - gettext-0.18.1.1-x86-gcc2-2011-02-07.zip - : $(baseURL)/gettext-0.18.1.1-x86-gcc2-2011-02-07.zip + gettext-0.18.1.1-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/gettext-0.18.1.1-r1a4-x86-gcc2-2012-08-28.zip : : true ; } } else if $(TARGET_ARCH) = x86_64 { @@ -1064,13 +1082,13 @@ if [ IsOptionalHaikuImagePackageAdded Git ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - git-1.7.10.2-x86-gcc4-2012-06-19.zip - : $(baseURL)/git-1.7.10.2-x86-gcc4-2012-06-19.zip + git-1.7.10.2-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/git-1.7.10.2-r1a4-x86-gcc4-2012-08-30.zip : : true ; } else { InstallOptionalHaikuImagePackage - git-1.7.10.2-x86-gcc2-2012-06-20.zip - : $(baseURL)/git-1.7.10.2-x86-gcc2-2012-06-20.zip + git-1.7.10.2-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/git-1.7.10.2-r1a4-x86-gcc2-2012-08-28.zip : : true ; } } @@ -1084,13 +1102,13 @@ if [ IsOptionalHaikuImagePackageAdded GitDoc ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - gitdoc-1.7.10.2-x86-gcc4-2012-06-20.zip - : $(baseURL)/gitdoc-1.7.10.2-x86-gcc4-2012-06-20.zip + gitdoc-1.7.10.2-r1a4-x86-gcc4-2012-09-03.zip + : $(baseURL)/gitdoc-1.7.10.2-r1a4-x86-gcc4-2012-09-03.zip : : true ; } else { InstallOptionalHaikuImagePackage - gitdoc-1.7.10.2-x86-gcc2-2012-06-20.zip - : $(baseURL)/gitdoc-1.7.10.2-x86-gcc2-2012-06-20.zip + gitdoc-1.7.10.2-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/gitdoc-1.7.10.2-r1a4-x86-gcc2-2012-08-28.zip : : true ; } } @@ -1104,13 +1122,13 @@ if [ IsOptionalHaikuImagePackageAdded GPerf ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - gperf-3.0.4-r1a3-x86-gcc4-2011-05-24.zip - : $(baseURL)/gperf-3.0.4-r1a3-x86-gcc4-2011-05-24.zip + gperf-3.0.4-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/gperf-3.0.4-r1a4-x86-gcc4-2012-08-30.zip : : true ; } else { InstallOptionalHaikuImagePackage - gperf-3.0.4-r1a3-x86-gcc2-2011-05-18.zip - : $(baseURL)/gperf-3.0.4-r1a3-x86-gcc2-2011-05-18.zip + gperf-3.0.4-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/gperf-3.0.4-r1a4-x86-gcc2-2012-08-28.zip : : true ; } } @@ -1124,13 +1142,13 @@ if [ IsOptionalHaikuImagePackageAdded Groff ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - groff-1.20.1-r1a3-x86-gcc4-2011-05-24.zip - : $(baseURL)/groff-1.20.1-r1a3-x86-gcc4-2011-05-24.zip + groff-1.20.1-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/groff-1.20.1-r1a4-x86-gcc4-2012-08-30.zip : : true ; } else { InstallOptionalHaikuImagePackage - groff-1.20.1-r1a3-x86-gcc2-2011-05-18.zip - : $(baseURL)/groff-1.20.1-r1a3-x86-gcc2-2011-05-18.zip + groff-1.20.1-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/groff-1.20.1-r1a4-x86-gcc2-2012-08-28.zip : : true ; } } @@ -1175,6 +1193,10 @@ if [ IsOptionalHaikuImagePackageAdded ICU ] { : system lib gcc2 ; } } + } else if $(TARGET_ARCH) = arm { + InstallOptionalHaikuImagePackage $(HAIKU_ICU_ARM_PACKAGE) + : $(baseURL)/(HAIKU_ICU_ARM_PACKAGE) + : system lib ; } else if $(TARGET_ARCH) = x86_64 { InstallOptionalHaikuImagePackage $(HAIKU_ICU_X86_64_PACKAGE) : $(baseURL)/$(HAIKU_ICU_X86_64_PACKAGE) @@ -1215,12 +1237,14 @@ if [ IsOptionalHaikuImagePackageAdded KeymapSwitcher ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - KeymapSwitcher-1.2.7-x86-gcc4-2012-05-19.zip - : $(baseURL)/KeymapSwitcher-1.2.7-x86-gcc4-2012-05-19.zip ; + KeymapSwitcher-1.2.7-r1a4-x86-gcc4-2012-11-01.zip + : $(baseURL)/KeymapSwitcher-1.2.7-r1a4-x86-gcc4-2012-11-01.zip + : : : false ; } else { InstallOptionalHaikuImagePackage - KeymapSwitcher-1.2.7-x86-gcc2-2012-05-19.zip - : $(baseURL)/KeymapSwitcher-1.2.7-x86-gcc2-2012-05-19.zip ; + KeymapSwitcher-1.2.7-r1a4-x86-gcc2-2012-11-01.zip + : $(baseURL)/KeymapSwitcher-1.2.7-r1a4-x86-gcc2-2012-11-01.zip + : : : false ; } AddSymlinkToHaikuImage home config settings deskbar Preferences : /boot/common/bin/KeymapSwitcher ; @@ -1247,13 +1271,13 @@ if [ IsOptionalHaikuImagePackageAdded LibEvent ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - libevent-2.0.10-r1a3-x86-gcc4-2011-05-24.zip - : $(baseURL)/lib/libevent-2.0.10-r1a3-x86-gcc4-2011-05-24.zip + libevent-2.0.10-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/libevent-2.0.10-r1a4-x86-gcc4-2012-08-30.zip : : true ; } else { InstallOptionalHaikuImagePackage - libevent-2.0.10-r1a3-x86-gcc2-2011-05-18.zip - : $(baseURL)/lib/libevent-2.0.10-r1a3-x86-gcc2-2011-05-18.zip + libevent-2.0.10-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/libevent-2.0.10-r1a4-x86-gcc2-2012-08-28.zip : : true ; } } @@ -1267,12 +1291,12 @@ if [ IsOptionalHaikuImagePackageAdded LibIconv ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - libiconv-1.13.1-r1a3-x86-gcc4-2011-05-24.zip - : $(baseURL)/libiconv-1.13.1-r1a3-x86-gcc4-2011-05-24.zip ; + libiconv-1.13.1-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/libiconv-1.13.1-r1a4-x86-gcc4-2012-08-30.zip ; } else { InstallOptionalHaikuImagePackage - libiconv-1.13.1-r1a3-x86-gcc2-2011-05-18.zip - : $(baseURL)/libiconv-1.13.1-r1a3-x86-gcc2-2011-05-18.zip ; + libiconv-1.13.1-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/libiconv-1.13.1-r1a4-x86-gcc2-2012-08-28.zip ; } } } @@ -1283,8 +1307,8 @@ if [ IsOptionalHaikuImagePackageAdded LibLayout ] { if $(TARGET_ARCH) != x86 { Echo "No optional package LibLayout available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { - InstallOptionalHaikuImagePackage liblayout-1.4.1-gcc4-2012-08-11.zip - : $(baseURL)/liblayout-1.4.1-gcc4-2012-08-11.zip ; + InstallOptionalHaikuImagePackage liblayout-1.4.1-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/liblayout-1.4.1-r1a4-x86-gcc4-2012-08-30.zip ; } else { InstallOptionalHaikuImagePackage liblayout-1.4.0-gcc2-2009-03-08.zip : $(baseURL)/liblayout-1.4.0-gcc2-2009-03-08.zip ; @@ -1298,12 +1322,12 @@ if [ IsOptionalHaikuImagePackageAdded Libmng ] { Echo "No optional package Libmng available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - libmng-1.0.10-r1a3-x86-gcc4-2011-05-24.zip - : $(baseURL)/lib/libmng-1.0.10-r1a3-x86-gcc4-2011-05-24.zip ; + libmng-1.0.10-r1a4-x86-gcc4-2012-09-02.zip + : $(baseURL)/lib/libmng-1.0.10-r1a4-x86-gcc4-2012-09-02.zip ; } else { InstallOptionalHaikuImagePackage - libmng-1.0.10-r1a3-x86-gcc2-2011-05-18.zip - : $(baseURL)/lib/libmng-1.0.10-r1a3-x86-gcc2-2011-05-18.zip ; + libmng-1.0.10-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/lib/libmng-1.0.10-r1a4-x86-gcc2-2012-08-28.zip ; } } @@ -1315,12 +1339,12 @@ if [ IsOptionalHaikuImagePackageAdded LibXML2 ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - libxml2-2.8.0-x86-gcc4-2012-07-18.zip - : $(baseURL)/libxml2-2.8.0-x86-gcc4-2012-07-18.zip ; + libxml2-2.8.0-r1a4-x86-gcc4-2012-08-28.zip + : $(baseURL)/libxml2-2.8.0-r1a4-x86-gcc4-2012-08-28.zip ; } else { InstallOptionalHaikuImagePackage - libxml2-2.8.0-x86-gcc2-2012-07-17.zip - : $(baseURL)/libxml2-2.8.0-x86-gcc2-2012-07-17.zip ; + libxml2-2.8.0-r1a4-x86-gcc2-2012-08-30.zip + : $(baseURL)/libxml2-2.8.0-r1a4-x86-gcc2-2012-08-30.zip ; } } } @@ -1332,12 +1356,12 @@ if [ IsOptionalHaikuImagePackageAdded LibXSLT ] { Echo "No optional package LibXSLT available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - libxslt-1.1.26-r1a3-x86-gcc4-2011-05-24.zip - : $(baseURL)/libxslt-1.1.26-r1a3-x86-gcc4-2011-05-24.zip ; + libxslt-1.1.26-r1a4-x86-gcc4-2012-08-29.zip + : $(baseURL)/libxslt-1.1.26-r1a4-x86-gcc4-2012-08-29.zip ; } else { InstallOptionalHaikuImagePackage - libxslt-1.1.26-r1a3-x86-gcc2-2011-05-18.zip - : $(baseURL)/libxslt-1.1.26-r1a3-x86-gcc2-2011-05-18.zip + libxslt-1.1.26-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/libxslt-1.1.26-r1a4-x86-gcc2-2012-08-28.zip : : true ; } } @@ -1347,11 +1371,16 @@ if [ IsOptionalHaikuImagePackageAdded LibXSLT ] { if [ IsOptionalHaikuImagePackageAdded Links ] { if $(TARGET_ARCH) != x86 { Echo "No optional package Links available for $(TARGET_ARCH)" ; - } else if $(HAIKU_GCC_VERSION[1]) >= 4 && ! $(isHybridBuild) { - Echo "No optional package Links available for gcc4" ; + } else if $(HAIKU_GCC_VERSION[1]) >= 4 { + InstallOptionalHaikuImagePackage + links-2.3pre2-r1a4-x86-gcc4-2012-09-09.zip + : $(baseURL)/links-2.3pre2-r1a4-x86-gcc4-2012-09-09.zip ; + AddSymlinkToHaikuImage home config settings deskbar Applications + : /boot/home/config/bin/links ; } else { - InstallOptionalHaikuImagePackage Links.zip - : $(baseURL)/links-x86-gcc2-2008-05-03.zip ; + InstallOptionalHaikuImagePackage + links-2.3pre2-r1a4-x86-gcc2-2012-08-30.zip + : $(baseURL)/links-2.3pre2-r1a4-x86-gcc2-2012-08-30.zip ; AddSymlinkToHaikuImage home config settings deskbar Applications : /boot/home/config/bin/links ; } @@ -1365,13 +1394,13 @@ if [ IsOptionalHaikuImagePackageAdded Lua ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - lua-5.1.4-x86-gcc4-2010-10-30.zip - : $(baseURL)/lua-5.1.4-x86-gcc4-2010-10-30.zip + lua-5.1.4-3-r1a4-x86-gcc4-2012-09-01.zip + : $(baseURL)/lua-5.1.4-3-r1a4-x86-gcc4-2012-09-01.zip : : true ; } else { InstallOptionalHaikuImagePackage - lua-5.1.4-3-r1a3-x86-gcc2-2011-05-18.zip - : $(baseURL)/lua-5.1.4-3-r1a3-x86-gcc2-2011-05-18.zip + lua-5.1.4-3-r1a4-x86-gcc2-2012-09-01.zip + : $(baseURL)/lua-5.1.4-3-r1a4-x86-gcc2-2012-09-01.zip : : true ; } } @@ -1384,12 +1413,12 @@ if [ IsOptionalHaikuImagePackageAdded Man ] { Echo "No optional package Man available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - man-1.6g-x86-gcc4-2012-06-19.zip - : $(baseURL)/man-1.6g-x86-gcc4-2012-06-19.zip ; + man-1.6g-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/man-1.6g-r1a4-x86-gcc4-2012-08-30.zip ; } else { InstallOptionalHaikuImagePackage - man-1.6g-x86-gcc2-2012-06-21.zip - : $(baseURL)/man-1.6g-x86-gcc2-2012-06-21.zip ; + man-1.6g-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/man-1.6g-r1a4-x86-gcc2-2012-08-28.zip ; } } @@ -1407,13 +1436,13 @@ if [ IsOptionalHaikuImagePackageAdded Mercurial ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - mercurial-2.2.2-x86-gcc4-2012-06-19.zip - : $(baseURL)/mercurial-2.2.2-x86-gcc4-2012-06-19.zip + mercurial-2.2.2-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/mercurial-2.2.2-r1a4-x86-gcc4-2012-08-30.zip : : true ; } else { InstallOptionalHaikuImagePackage - mercurial-2.2.2-x86-gcc2-2012-06-20.zip - : $(baseURL)/mercurial-2.2.2-x86-gcc2-2012-06-20.zip + mercurial-2.2.2-r1a4-x86-gcc2-2012-08-27.zip + : $(baseURL)/mercurial-2.2.2-r1a4-x86-gcc2-2012-08-27.zip : : true ; } } @@ -1425,12 +1454,12 @@ if [ IsOptionalHaikuImagePackageAdded Nano ] { if $(TARGET_ARCH) = x86 { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - nano-2.2.6-r1a3-x86-gcc4-2011-05-24.zip - : $(baseURL)/nano-2.2.6-r1a3-x86-gcc4-2011-05-24.zip ; + nano-2.2.6-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/nano-2.2.6-r1a4-x86-gcc4-2012-08-30.zip ; } else { InstallOptionalHaikuImagePackage - nano-2.2.6-r1a3-x86-gcc2-2011-05-18.zip - : $(baseURL)/nano-2.2.6-r1a3-x86-gcc2-2011-05-18.zip ; + nano-2.2.6-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/nano-2.2.6-r1a4-x86-gcc2-2012-08-28.zip ; } } else if $(TARGET_ARCH) = x86_64 { InstallOptionalHaikuImagePackage @@ -1442,6 +1471,14 @@ if [ IsOptionalHaikuImagePackageAdded Nano ] { } +# Nanumfont +if [ IsOptionalHaikuImagePackageAdded Nanumfont ] { + InstallOptionalHaikuImagePackage + nanumfont-2.0-r1a4-x86-gcc2-2012-09-12.zip + : $(baseURL)/nanumfont-2.0-r1a4-x86-gcc2-2012-09-12.zip ; +} + + # Neon if [ IsOptionalHaikuImagePackageAdded Neon ] { if $(TARGET_ARCH) != x86 { @@ -1449,12 +1486,12 @@ if [ IsOptionalHaikuImagePackageAdded Neon ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - neon-0.29.6-x86-gcc4-2012-06-19.zip - : $(baseURL)/neon-0.29.6-x86-gcc4-2012-06-19.zip ; + neon-0.29.6-r1a4-x86-gcc4-2012-08-29.zip + : $(baseURL)/neon-0.29.6-r1a4-x86-gcc4-2012-08-29.zip ; } else { InstallOptionalHaikuImagePackage - neon-0.29.6-x86-gcc2-2012-06-21.zip - : $(baseURL)/neon-0.29.6-x86-gcc2-2012-06-21.zip ; + neon-0.29.6-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/neon-0.29.6-r1a4-x86-gcc2-2012-08-28.zip ; } } } @@ -1509,15 +1546,22 @@ if [ IsOptionalHaikuImagePackageAdded NetSurf ] { if [ IsOptionalHaikuImagePackageAdded OCaml ] { if $(TARGET_ARCH) != x86 { Echo "No optional package OCaml available for $(TARGET_ARCH)" ; - } else if $(HAIKU_GCC_VERSION[1]) >= 4 && ! $(isHybridBuild) { - Echo "No optional package OCaml available for gcc4" ; } else { - InstallOptionalHaikuImagePackage - ocaml-3.11.1-r1a1-x86-gcc2-2009-09-06.zip - : $(baseURL)/ocaml-3.11.1-r1a1-x86-gcc2-2009-09-06.zip ; - InstallOptionalHaikuImagePackage - camlp5-5.12-r1a1-x86-gcc2-2009-09-06.zip - : $(baseURL)/camlp5-5.12-r1a1-x86-gcc2-2009-09-06.zip ; + if $(HAIKU_GCC_VERSION[1]) >= 4 { + InstallOptionalHaikuImagePackage + ocaml-4.00.0-r1a4-x86-gcc4-2012-09-30.zip + : $(baseURL)/ocaml-4.00.0-r1a4-x86-gcc4-2012-09-30.zip ; + InstallOptionalHaikuImagePackage + camlp5-6.06-r1a4-x86-gcc4-2012-09-30.zip + : $(baseURL)/camlp5-6.06-r1a4-x86-gcc4-2012-09-30.zip ; + } else { + InstallOptionalHaikuImagePackage + ocaml-4.00.0-r1a4-x86-gcc2-2012-09-27.zip + : $(baseURL)/ocaml-4.00.0-r1a4-x86-gcc2-2012-09-27.zip ; + InstallOptionalHaikuImagePackage + camlp5-6.06-r1a4-x86-gcc2-2012-09-27.zip + : $(baseURL)/camlp5-6.06-r1a4-x86-gcc2-2012-09-27.zip ; + } } } @@ -1546,12 +1590,12 @@ if [ IsOptionalHaikuImagePackageAdded OpenSSH ] { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - openssh-6.0p1-x86-gcc4-2012-06-20.zip - : $(baseURL)/openssh-6.0p1-x86-gcc4-2012-06-20.zip ; + openssh-6.0p1-r1a4-x86-gcc4-2012-09-29.zip + : $(baseURL)/openssh-6.0p1-r1a4-x86-gcc4-2012-09-29.zip ; } else { InstallOptionalHaikuImagePackage - openssh-6.0p1-x86-gcc2-2012-06-21.zip - : $(baseURL)/openssh-6.0p1-x86-gcc2-2012-06-21.zip ; + openssh-6.0p1-r1a4-x86-gcc2-2012-09-28.zip + : $(baseURL)/openssh-6.0p1-r1a4-x86-gcc2-2012-09-28.zip ; } AddUserToHaikuImage sshd : 1001 : 100 : /var/empty : /bin/true @@ -1583,12 +1627,12 @@ if [ IsOptionalHaikuImagePackageAdded P7zip ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - p7zip-9.20.1-x86-gcc4-2012-06-19.zip - : $(baseURL)/p7zip-9.20.1-x86-gcc4-2012-06-19.zip ; + p7zip-9.20.1-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/p7zip-9.20.1-r1a4-x86-gcc4-2012-08-30.zip ; } else { InstallOptionalHaikuImagePackage - p7zip-9.20.1-x86-gcc2-2012-06-21.zip - : $(baseURL)/p7zip-9.20.1-x86-gcc2-2012-06-21.zip ; + p7zip-9.20.1-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/p7zip-9.20.1-r1a4-x86-gcc2-2012-08-29.zip ; } AddExpanderRuleToHaikuImage "application/x-7z-compressed" : .7z : "7za l \\0045s" @@ -1606,8 +1650,8 @@ if [ IsOptionalHaikuImagePackageAdded Paladin ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - paladin-1.3-r1a3-x86-gcc4-2011-05-24.zip - : $(baseURL)/paladin-1.3-r1a3-x86-gcc4-2011-05-24.zip ; + paladin-1.3-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/paladin-1.3-r1a4-x86-gcc4-2012-08-30.zip ; } else { InstallOptionalHaikuImagePackage paladin-1.3-r1a3-x86-gcc2-2011-05-18.zip @@ -1629,12 +1673,12 @@ if [ IsOptionalHaikuImagePackageAdded PCRE ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - libpcre-8.12-r1a3-x86-gcc4-2011-05-24.zip - : $(baseURL)/libpcre-8.12-r1a3-x86-gcc4-2011-05-24.zip ; + libpcre-8.21-r1a4-x86-gcc4-2012-09-03.zip + : $(baseURL)/libpcre-8.21-r1a4-x86-gcc4-2012-09-03.zip ; } else { InstallOptionalHaikuImagePackage - libpcre-8.12-r1a3-x86-gcc2-2011-05-17.zip - : $(baseURL)/libpcre-8.12-r1a3-x86-gcc2-2011-05-17.zip ; + libpcre-8.21-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/libpcre-8.21-r1a4-x86-gcc2-2012-08-28.zip ; } } } @@ -1648,11 +1692,11 @@ if [ IsOptionalHaikuImagePackageAdded Pe ] { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage pe-2.4.3-600-x86-gcc4-2011-12-18.zip - : $(baseURL)/pe-2.4.3-600-x86-gcc4-2011-12-18.zip ; + : $(baseURL)/pe-2.4.3-hg-r1a4-x86-gcc4-2012-09-04.zip ; } else { InstallOptionalHaikuImagePackage - pe-2.4.3-600-r1a3-x86-gcc2-2011-05-18.zip - : $(baseURL)/pe-2.4.3-600-r1a3-x86-gcc2-2011-05-18.zip ; + pe-2.4.3-hg-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/pe-2.4.3-hg-r1a4-x86-gcc2-2012-08-29.zip ; } AddSymlinkToHaikuImage home config settings deskbar Applications : /boot/apps/Pe/Pe ; @@ -1667,13 +1711,13 @@ if [ IsOptionalHaikuImagePackageAdded Perl ] { if $(TARGET_ARCH) = x86 { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - perl-5.10.1-r1a3-x86-gcc4-2011-05-24.zip - : $(baseURL)/perl-5.10.1-r1a3-x86-gcc4-2011-05-24.zip + perl-5.10.1-r1a4-x86-gcc4-2012-10-17.zip + : $(baseURL)/perl-5.10.1-r1a4-x86-gcc4-2012-10-17.zip : : true ; } else { InstallOptionalHaikuImagePackage - perl-5.10.1-r1a3-x86-gcc2-2011-05-17.zip - : $(baseURL)/perl-5.10.1-r1a3-x86-gcc2-2011-05-17.zip + perl-5.10.1-r1a4-x86-gcc2-2012-08-27.zip + : $(baseURL)/perl-5.10.1-r1a4-x86-gcc2-2012-08-27.zip : : true ; } } else if $(TARGET_ARCH) = x86_64 { @@ -1687,6 +1731,22 @@ if [ IsOptionalHaikuImagePackageAdded Perl ] { } +# Puri +if [ IsOptionalHaikuImagePackageAdded Puri ] { + if $(TARGET_ARCH) != x86 { + Echo "No optional package Puri available for $(TARGET_ARCH)" ; + } else if $(HAIKU_GCC_VERSION[1]) < 4 && ! $(isHybridBuild) { + Echo "No optional package Puri for gcc2" ; + } else { + InstallOptionalHaikuImagePackage + puri-0.3.9.1-x86-gcc4-2012-11-01.zip + : $(baseURL)/puri-0.3.9.1-x86-gcc4-2012-11-01.zip ; + AddSymlinkToHaikuImage home config settings deskbar Applications + : /boot/apps/Puri/Puri ; + } +} + + # Python if [ IsOptionalHaikuImagePackageAdded Python ] { if $(TARGET_ARCH) != x86 { @@ -1694,13 +1754,13 @@ if [ IsOptionalHaikuImagePackageAdded Python ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - python-2.6.7-x86-gcc4-2011-06-24.zip - : $(baseURL)/python-2.6.7-x86-gcc4-2011-06-24.zip + python-2.6.8-r1a4-x86-gcc4-2012-09-03.zip + : $(baseURL)/python-2.6.8-r1a4-x86-gcc4-2012-09-03.zip : : true ; } else { InstallOptionalHaikuImagePackage - python-2.6.7-x86-gcc2-2011-06-24.zip - : $(baseURL)/python-2.6.7-x86-gcc2-2011-06-24.zip + python-2.6.8-r1a4-x86-gcc2-2012-08-30.zip + : $(baseURL)/python-2.6.8-r1a4-x86-gcc2-2012-08-30.zip : : true ; } } @@ -1714,13 +1774,13 @@ if [ IsOptionalHaikuImagePackageAdded Rsync ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - rsync-3.0.7-r1a3-x86-gcc4-2011-05-24.zip - : $(baseURL)/rsync-3.0.7-r1a3-x86-gcc4-2011-05-24.zip + rsync-3.0.7-r1a4-x86-gcc4-2012-09-09.zip + : $(baseURL)/rsync-3.0.7-r1a4-x86-gcc4-2012-09-09.zip : : true ; } else { InstallOptionalHaikuImagePackage - rsync-3.0.7-r1a3-x86-gcc2-2011-05-18.zip - : $(baseURL)/rsync-3.0.7-r1a3-x86-gcc2-2011-05-18.zip + rsync-3.0.7-r1a4-x86-gcc2-2012-09-12.zip + : $(baseURL)/rsync-3.0.7-r1a4-x86-gcc2-2012-09-12.zip : : true ; } } @@ -1733,12 +1793,12 @@ if [ IsOptionalHaikuImagePackageAdded Ruby ] { Echo "No optional package Ruby available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - ruby-1.9.1-r1a3-x86-gcc4-2011-05-24.zip - : $(baseURL)/ruby-1.9.1-r1a3-x86-gcc4-2011-05-24.zip ; + ruby-1.9.1-r1a4-x86-gcc4-2012-09-10.zip + : $(baseURL)/ruby-1.9.1-r1a4-x86-gcc4-2012-09-10.zip ; } else { InstallOptionalHaikuImagePackage - ruby-1.9.1-r1a3-x86-gcc2-2011-05-31.zip - : $(baseURL)/ruby-1.9.1-r1a3-x86-gcc2-2011-06-01.zip ; + ruby-1.9.1-r1a4-x86-gcc2-2012-09-10.zip + : $(baseURL)/ruby-1.9.1-r1a4-x86-gcc2-2012-09-10.zip ; } } @@ -1748,12 +1808,12 @@ if [ IsOptionalHaikuImagePackageAdded Sed ] { if $(TARGET_ARCH) = x86 { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - sed-4.2.1-r1a3-x86-gcc4-2011-05-24.zip - : $(baseURL)/sed-4.2.1-r1a3-x86-gcc4-2011-05-24.zip ; + sed-4.2.1-r1a4-x86-gcc4-2012-08-31.zip + : $(baseURL)/sed-4.2.1-r1a4-x86-gcc4-2012-08-31.zip ; } else { InstallOptionalHaikuImagePackage - sed-4.2.1-r1a3-x86-gcc2-2011-05-17.zip - : $(baseURL)/sed-4.2.1-r1a3-x86-gcc2-2011-05-17.zip ; + sed-4.2.1-r1a4-x86-gcc2-2012-08-27.zip + : $(baseURL)/sed-4.2.1-r1a4-x86-gcc2-2012-08-27.zip ; } } else if $(TARGET_ARCH) = x86_64 { InstallOptionalHaikuImagePackage @@ -1772,12 +1832,12 @@ if [ IsOptionalHaikuImagePackageAdded SQLite ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - sqlite-3.7.13-x86-gcc4-2012-06-19.zip - : $(baseURL)/sqlite-3.7.13-x86-gcc4-2012-06-19.zip ; + sqlite-3.7.13-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/sqlite-3.7.13-r1a4-x86-gcc4-2012-08-30.zip ; } else { InstallOptionalHaikuImagePackage - sqlite-3.7.13-x86-gcc2-2012-06-20.zip - : $(baseURL)/sqlite-3.7.13-x86-gcc2-2012-06-20.zip ; + sqlite-3.7.13-r1a4-x86-gcc2-2012-08-27.zip + : $(baseURL)/sqlite-3.7.13-r1a4-x86-gcc2-2012-08-27.zip ; } } } @@ -1790,13 +1850,13 @@ if [ IsOptionalHaikuImagePackageAdded Subversion ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - subversion-1.6.18-x86-gcc4-2012-06-19.zip - : $(baseURL)/subversion-1.6.18-x86-gcc4-2012-06-19.zip + subversion-1.6.18-r1a4-x86-gcc4-2012-08-30.zip + : $(baseURL)/subversion-1.6.18-r1a4-x86-gcc4-2012-08-30.zip : : true ; } else { InstallOptionalHaikuImagePackage - subversion-1.6.18-x86-gcc2-2012-06-21.zip - : $(baseURL)/subversion-1.6.18-x86-gcc2-2012-06-21.zip + subversion-1.6.18-r1a4-x86-gcc2-2012-08-28.zip + : $(baseURL)/subversion-1.6.18-r1a4-x86-gcc2-2012-08-28.zip : : true ; } } @@ -1809,12 +1869,12 @@ if [ IsOptionalHaikuImagePackageAdded TagLib ] { Echo "No optional package TagLib available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - taglib-1.6.3-r1r3-x86-gcc4-2011-05-24.zip - : $(baseURL)/taglib-1.6.3-r1r3-x86-gcc4-2011-05-24.zip ; + taglib-1.6.3-r1a4-x86-gcc4-2012-09-03.zip + : $(baseURL)/taglib-1.6.3-r1a4-x86-gcc4-2012-09-03.zip ; } else { InstallOptionalHaikuImagePackage - taglib-1.6.3-r1a3-x86-gcc2-2011-05-20.zip - : $(baseURL)/taglib-1.6.3-r1a3-x86-gcc2-2011-05-20.zip ; + taglib-1.6.3-r1a4-x86-gcc2-2012-09-03.zip + : $(baseURL)/taglib-1.6.3-r1a4-x86-gcc2-2012-09-03.zip ; } } @@ -1824,12 +1884,12 @@ if [ IsOptionalHaikuImagePackageAdded Tar ] { if $(TARGET_ARCH) = x86 { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - tar-1.26-x86-gcc4-2012-06-19.zip - : $(baseURL)/tar-1.26-x86-gcc4-2012-06-19.zip ; + tar-1.26-r1a4-x86-gcc4-2012-09-03.zip + : $(baseURL)/tar-1.26-r1a4-x86-gcc4-2012-09-03.zip ; } else { InstallOptionalHaikuImagePackage - tar-1.26-x86-gcc2-2012-06-21.zip - : $(baseURL)/tar-1.26-x86-gcc2-2012-06-21.zip ; + tar-1.26-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/tar-1.26-r1a4-x86-gcc2-2012-08-29.zip ; } } else if $(TARGET_ARCH) = x86_64 { InstallOptionalHaikuImagePackage @@ -1864,13 +1924,13 @@ if [ IsOptionalHaikuImagePackageAdded Transmission ] { } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - transmission-2.21-r1a3-x86-gcc4-2011-05-27.zip - : $(baseURL)/transmission-2.21-r1a3-x86-gcc4-2011-05-27.zip + transmission-2.21-r1a4-x86-gcc4-2012-09-12.zip + : $(baseURL)/transmission-2.21-r1a4-x86-gcc4-2012-09-12.zip : : true ; } else { InstallOptionalHaikuImagePackage - transmission-2.21-r1a3-x86-gcc2-2011-05-27.zip - : $(baseURL)/transmission-2.21-r1a3-x86-gcc2-2011-05-27.zip + transmission-2.21-r1a4-x86-gcc2-2012-09-05.zip + : $(baseURL)/transmission-2.21-r1a4-x86-gcc2-2012-09-05.zip : : true ; } } @@ -1936,18 +1996,16 @@ if [ IsOptionalHaikuImagePackageAdded Vim ] { Echo "No optional package Vim available for $(TARGET_ARCH)" ; } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { - InstallOptionalHaikuImagePackage vim-7.3-x86-gcc4-2011-12-23.zip - : $(baseURL)/vim-7.3-x86-gcc4-2011-12-23.zip + InstallOptionalHaikuImagePackage vim-7.3-r1a4-x86-gcc4-2012-09-26.zip + : $(baseURL)/vim-7.3-r1a4-x86-gcc4-2012-09-26.zip : : true ; } else { - InstallOptionalHaikuImagePackage vim-7.3-x86-gcc2-2011-12-23.zip - : $(baseURL)/vim-7.3-x86-gcc2-2011-12-23.zip + InstallOptionalHaikuImagePackage vim-7.3-r1a4-x86-gcc2-2012-09-26.zip + : $(baseURL)/vim-7.3-r1a4-x86-gcc2-2012-09-26.zip : : true ; } AddSymlinkToHaikuImage home config settings deskbar Applications : /boot/common/bin/gvim ; - # TODO: move this symlink to the archive - AddSymlinkToHaikuImage common bin : vim : vi ; } } @@ -1958,12 +2016,12 @@ if [ IsOptionalHaikuImagePackageAdded Vision ] { Echo "No optional package Vision available for $(TARGET_ARCH)" ; } else { if $(HAIKU_GCC_VERSION[1]) >= 4 { - InstallOptionalHaikuImagePackage vision-908-x86-gcc4-2012-02-26.zip - : $(baseURL)/vision-908-x86-gcc4-2012-02-26.zip ; + InstallOptionalHaikuImagePackage vision-908-r1a4-x86-gcc4-2012-09-04.zip + : $(baseURL)/vision-908-r1a4-x86-gcc4-2012-09-04.zip ; } else { InstallOptionalHaikuImagePackage - vision-908-x86-gcc2-2012-02-26.zip - : $(baseURL)/vision-908-x86-gcc2-2012-02-26.zip ; + vision-908-r1a4-x86-gcc2-2012-08-29.zip + : $(baseURL)/vision-908-r1a4-x86-gcc2-2012-08-29.zip ; } AddSymlinkToHaikuImage home config settings deskbar Applications : /boot/apps/Vision/Vision ; @@ -1994,6 +2052,12 @@ if [ IsOptionalHaikuImagePackageAdded WebPositive ] { Echo "No optional package WebPositive available for gcc2" ; } else { Echo "WebPositive will be compiled by gcc4 inside $(HAIKU_ALTERNATIVE_GCC_OUTPUT_DIR)" ; + local catalogs = [ on WebPositive return $(HAIKU_CATALOG_FILES) ] ; + if $(catalogs) { + local signature = x-vnd.Haiku-WebPositive ; + AddFilesToHaikuImage system data locale catalogs $(signature) + : $(catalogs) ; + } } } else if $(HAIKU_GCC_VERSION[1]) >= 4 { AddFilesToHaikuHybridImage apps : WebPositive ; @@ -2014,10 +2078,10 @@ if [ IsOptionalHaikuImagePackageAdded WebPositiveBookmarks ] { if [ IsOptionalHaikuImagePackageAdded Welcome ] { CopyDirectoryToHaikuImage system documentation : [ FDirName $(HAIKU_TOP) docs welcome ] - : welcome : -x .svn ; + : welcome ; CopyDirectoryToHaikuImage system documentation : [ FDirName $(HAIKU_TOP) docs userguide ] - : userguide : -x .svn ; + : userguide ; } @@ -2091,11 +2155,13 @@ if [ IsOptionalHaikuImagePackageAdded wpa_supplicant ] { } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage wpa_supplicant-0.7.3-x86-gcc4-2012-04-03.zip - : $(baseURL)/wpa_supplicant-0.7.3-x86-gcc4-2012-04-03.zip ; + : $(baseURL)/wpa_supplicant-0.7.3-x86-gcc4-2012-04-03.zip + : : : false ; } else { InstallOptionalHaikuImagePackage wpa_supplicant-0.7.3-x86-gcc2-2012-04-03.zip - : $(baseURL)/wpa_supplicant-0.7.3-x86-gcc2-2012-04-03.zip ; + : $(baseURL)/wpa_supplicant-0.7.3-x86-gcc2-2012-04-03.zip + : : : false ; } } @@ -2103,8 +2169,8 @@ if [ IsOptionalHaikuImagePackageAdded wpa_supplicant ] { # WQY-MicroHei if [ IsOptionalHaikuImagePackageAdded WQY-MicroHei ] { InstallOptionalHaikuImagePackage - wqy-microhei-0.2.0-beta-r1a3-x86-gcc2-2011-05-18.zip - : $(baseURL)/wqy-microhei-0.2.0-beta-r1a3-x86-gcc2-2011-05-18.zip ; + wqy-microhei-0.2.0-beta-r1a4-x86-gcc2-2012-08-27.zip + : $(baseURL)/wqy-microhei-0.2.0-beta-r1a4-x86-gcc2-2012-08-27.zip ; } @@ -2114,8 +2180,8 @@ if [ IsOptionalHaikuImagePackageAdded XZ-Utils ] { Echo "No optional package XZ-Utils available for $(TARGET_ARCH)" ; } else { InstallOptionalHaikuImagePackage - xz-utils-5.0.1-x86-gcc4-2012-07-18.zip - : $(baseURL)/xz-utils-5.0.1-x86-gcc4-2012-07-18.zip ; + xz-utils-5.0.1-r1a4-x86-gcc4-2012-09-03.zip + : $(baseURL)/xz-utils-5.0.1-r1a4-x86-gcc4-2012-09-03.zip ; AddExpanderRuleToHaikuImage "application/x-xz" : .tar.xz : "tar -Jtvf \\0045s" : "tar -Jxvf \\0045s" @@ -2138,11 +2204,11 @@ if [ IsOptionalHaikuImagePackageAdded Yasm ] { Echo "No optional package Yasm available for $(TARGET_ARCH)" ; } else if $(HAIKU_GCC_VERSION[1]) >= 4 { InstallOptionalHaikuImagePackage - yasm-1.2.0-x86-gcc4-2012-06-18.zip - : $(baseURL)/yasm-1.2.0-x86-gcc4-2012-06-18.zip ; + yasm-1.2.0-r1a4-x86-gcc4-2012-08-29.zip + : $(baseURL)/yasm-1.2.0-r1a4-x86-gcc4-2012-08-29.zip ; } else { InstallOptionalHaikuImagePackage - yasm-1.2.0-x86-gcc2-2012-06-19.zip - : $(baseURL)/yasm-1.2.0-x86-gcc2-2012-06-19.zip ; + yasm-1.2.0-r1a4-x86-gcc2-2012-08-27.zip + : $(baseURL)/yasm-1.2.0-r1a4-x86-gcc2-2012-08-27.zip ; } } diff --git a/build/jam/ReleaseBuildProfiles b/build/jam/ReleaseBuildProfiles index fc751be44b..0fc925fdf6 100644 --- a/build/jam/ReleaseBuildProfiles +++ b/build/jam/ReleaseBuildProfiles @@ -16,6 +16,7 @@ switch $(HAIKU_BUILD_PROFILE) { HAIKU_ROOT_USER_REAL_NAME = "Yourself" ; AddGroupToHaikuImage party : 101 : user sshd ; HAIKU_IMAGE_HOST_NAME = shredder ; + HAIKU_STRIP_DEBUG_FROM_OPTIONAL_PACKAGES = 1 ; HAIKU_IMAGE_SIZE = 800 ; AddOptionalHaikuImagePackages TimGMSoundFont TrackerNewTemplates @@ -24,7 +25,8 @@ switch $(HAIKU_BUILD_PROFILE) { WebPositive WonderBrush ; AddOptionalHaikuImagePackages CVS Development Git Mercurial Python Subversion OpenSSH OpenSSL ; - AddOptionalHaikuImagePackages Nano P7zip Welcome BeBook XZ-Utils ; + AddOptionalHaikuImagePackages KeymapSwitcher Nano P7zip Welcome + BeBook XZ-Utils ; AddOptionalHaikuImagePackages wpa_supplicant ; } @@ -37,8 +39,9 @@ switch $(HAIKU_BUILD_PROFILE) { HAIKU_ROOT_USER_NAME = user ; HAIKU_ROOT_USER_REAL_NAME = "Yourself" ; AddGroupToHaikuImage party : 101 : user sshd ; + HAIKU_STRIP_DEBUG_FROM_OPTIONAL_PACKAGES = 1 ; HAIKU_IMAGE_HOST_NAME = shredder ; - HAIKU_IMAGE_SIZE = 550 ; + HAIKU_IMAGE_SIZE = 600 ; AddOptionalHaikuImagePackages Pe Nano Vision P7zip XZ-Utils ; AddOptionalHaikuImagePackages Development Git OpenSSH OpenSSL ; diff --git a/build/jam/UserBuildConfig.ReadMe b/build/jam/UserBuildConfig.ReadMe index d1c9eb172d..637de80f67 100644 --- a/build/jam/UserBuildConfig.ReadMe +++ b/build/jam/UserBuildConfig.ReadMe @@ -63,6 +63,7 @@ HAIKU_IMAGE_DIR = /tmp ; HAIKU_IMAGE_SIZE = 100 ; # Enable stripping the debug symbols from optional packages. +# Note, some optional packages may override this to prevent stripping. HAIKU_STRIP_DEBUG_FROM_OPTIONAL_PACKAGES = 1 ; # Set image volume label to "Walter". Default label is "Haiku". diff --git a/build/jam/board/raspberry_pi/BoardSetup b/build/jam/board/raspberry_pi/BoardSetup index 6be630cea1..c70eb90a3d 100644 --- a/build/jam/board/raspberry_pi/BoardSetup +++ b/build/jam/board/raspberry_pi/BoardSetup @@ -7,7 +7,7 @@ HAIKU_BOOT_PLATFORM = raspberrypi_arm ; # Various hardcoded addresses # -HAIKU_BOARD_LOADER_BASE = 0x32000000 ; +HAIKU_BOARD_LOADER_BASE = 0x0 ; # # Flash image diff --git a/build/jam/board/raspberry_pi/info.txt b/build/jam/board/raspberry_pi/info.txt index 41e912ac7f..c8651971c2 100644 --- a/build/jam/board/raspberry_pi/info.txt +++ b/build/jam/board/raspberry_pi/info.txt @@ -1,4 +1,5 @@ Setting up the Haiku boot partition +------------------------------------- partition 1 -- FAT32, bootable flag, type 'c' partition 2 -- BeFS, Haiku filesystem, type 'eb' @@ -7,7 +8,7 @@ The boot partition must contain the following files to boot Haiku: * bootcode.bin : 2nd stage bootloader, starts with SDRAM disabled * loader.bin : 3rd stage bootloader, starts with SDRAM enabled * start.elf: The GPU binary firmware image, provided by the foundation. -* kernel.img: Haiku Loader (haiku_loader) +* haiku_loader: Haiku Loader * config.txt: A configuration file read by the GPU. Optional files: @@ -20,4 +21,13 @@ Additional GPU firmware images, rename over start.elf to use them: - this is the default * arm224_start.elf : 224M ARM, 32M GPU split - (use this for Linux only with no 3D or video processing. - Its enough for the 1080p framebuffer, but not much else) + Enough for the 1080p framebuffer, but not much else) + +Building +------------------------------------- +jam -q -sHAIKU_BOOT_BOARD=raspberry_pi -sHAIKU_BOOT_PLATFORM=raspberrypi_arm haiku_loader + +config.txt options +------------------------------------- +kernel=haiku_loader +disable_commandline_tags=1 diff --git a/build/scripts/build_cross_tools b/build/scripts/build_cross_tools index ea442b5557..cc7c63d3c4 100755 --- a/build/scripts/build_cross_tools +++ b/build/scripts/build_cross_tools @@ -89,12 +89,15 @@ mkdir -p $installDir $objDir $binutilsObjDir $gccObjDir $tmpIncludeDir \ $tmpLibDir || exit 1 mkdir -p $installDir/lib/gcc-lib/i586-pc-haiku/$haikuRequiredLegacyGCCVersion +# force the POSIX locale, as the build (makeinfo) might choke otherwise +export LC_ALL=POSIX + # build binutils cd $binutilsObjDir CFLAGS="-O2" CXXFLAGS="-O2" $buildToolsDir/binutils/configure \ --prefix=$installDir --target=i586-pc-haiku --disable-nls \ --enable-shared=yes --disable-werror || exit 1 -make $additionalMakeArgs || exit 1 +make -j1 $additionalMakeArgs || exit 1 make $additionalMakeArgs install || exit 1 PATH=$PATH:$installDir/bin @@ -109,7 +112,7 @@ copy_headers() sourceDir=$1 targetDir=$2 - headers="`find $sourceDir -name \*\.h | grep -v /.svn`" + headers="`find $sourceDir -name \*\.h`" headers="`echo $headers | sed -e s@$sourceDir/@@g`" for f in $headers; do headerTargetDir=$targetDir/`dirname $f` @@ -154,7 +157,7 @@ eval "sed $sedExpr Makefile.bak > Makefile" || exit 1 rm Makefile.bak # make gcc -make cross || { +make -j1 cross || { echo "ERROR: Building gcc failed." >&2 exit 1 } diff --git a/build/scripts/build_cross_tools_gcc4 b/build/scripts/build_cross_tools_gcc4 index 3298bf4826..3f5a99696d 100755 --- a/build/scripts/build_cross_tools_gcc4 +++ b/build/scripts/build_cross_tools_gcc4 @@ -113,6 +113,8 @@ mkdir -p $installDir $objDir $binutilsObjDir $gccObjDir $stdcxxObjDir \ $tmpIncludeDir $tmpLibDir || exit 1 mkdir -p $installDir/lib/gcc/$haikuMachine/$gccVersion +# force the POSIX locale, as the build (makeinfo) might choke otherwise +export LC_ALL=POSIX # build binutils cd $binutilsObjDir @@ -133,7 +135,7 @@ copy_headers() sourceDir=$1 targetDir=$2 - headers="$(find $sourceDir -name \*\.h | grep -v /.svn)" + headers="$(find $sourceDir -name \*\.h)" headers="$(echo $headers | sed -e s@$sourceDir/@@g)" for f in $headers; do headerTargetDir=$targetDir/$(dirname $f) diff --git a/build/scripts/build_haiku_image b/build/scripts/build_haiku_image index d6001f9d19..155e5f6876 100755 --- a/build/scripts/build_haiku_image +++ b/build/scripts/build_haiku_image @@ -16,7 +16,6 @@ set -o errexit # dontClearImage # isVMwareImage # optionalPackageDescriptions -# stripOptionalPackageDebugSymbols # # addattr # copyattr @@ -158,10 +157,11 @@ stripDebugInfo() extractFile() { - # extractFile + # extractFile archiveFile=$1 targetExtractedDir=$2 extractedSubDir=$3 + stripDebugSymbols=$4 echo "Extracting $archiveFile ..." @@ -188,7 +188,7 @@ extractFile() rm $extractDir/.OptionalPackageDescription fi - if [ "$stripOptionalPackageDebugSymbols" = "1" ]; then + if [ "$stripDebugSymbols" = "1" ]; then # strip executables in common/bin if [ -d $extractDir/common/bin ]; then for file in `find $extractDir/common/bin -type f -a -perm +100 \ diff --git a/configure b/configure index b7e0d33eb8..f0df8ebabf 100755 --- a/configure +++ b/configure @@ -353,7 +353,7 @@ HOST_GCC_OBJCOPY=`gcc -print-prog-name=objcopy` SFDISK_BINARY=sfdisk HOST_SFDISK=$SFDISK_BINARY -haikuRequiredLegacyGCCVersion="2.95.3-haiku-111122" +haikuRequiredLegacyGCCVersion="2.95.3-haiku-121101" export haikuRequiredLegacyGCCVersion # version of legacy gcc required to build haiku diff --git a/data/artwork/GET HAIKU - download box 2 b/data/artwork/GET HAIKU - download box 2 index b1f79ba110..97d7fcc26f 100644 Binary files a/data/artwork/GET HAIKU - download box 2 and b/data/artwork/GET HAIKU - download box 2 differ diff --git a/data/artwork/HAIKU logo - black on white - installer b/data/artwork/HAIKU logo - black on white - installer index 9c23baee61..10820d7ba7 100644 Binary files a/data/artwork/HAIKU logo - black on white - installer and b/data/artwork/HAIKU logo - black on white - installer differ diff --git a/data/artwork/HAIKU logo - black on white - installer.png b/data/artwork/HAIKU logo - black on white - installer.png index 83fadde56a..b33399cf41 100644 Binary files a/data/artwork/HAIKU logo - black on white - installer.png and b/data/artwork/HAIKU logo - black on white - installer.png differ diff --git a/data/artwork/alpha-numbers-stamp b/data/artwork/alpha-numbers-stamp index 72cac7ad4a..25452e58f8 100644 Binary files a/data/artwork/alpha-numbers-stamp and b/data/artwork/alpha-numbers-stamp differ diff --git a/data/bin/installoptionalpackage b/data/bin/installoptionalpackage index f2a22dfd6d..bd8c40c4f0 100755 --- a/data/bin/installoptionalpackage +++ b/data/bin/installoptionalpackage @@ -42,8 +42,8 @@ declare alreadyInstalled="" # Some Packages cannot be installed, # as they require either the source code or compiled binaries declare packageIgnoreList="Bluetooth Development DevelopmentMin \ -DevelopmentBase MandatoryPackages UserlandFS Welcome WifiFirmwareScriptData \ -ICU-devel ICU " +DevelopmentBase ICU-devel ICU MandatoryPackages UserlandFS \ +WebPositive Welcome WifiFirmwareScriptData " function CreateInstallerScript() @@ -65,6 +65,7 @@ HAIKU_INCLUDE_SOURCES=0 $urlLine $sslPkgLine $sslUrlLine +$webkitFileLine declare -a functionArgs expanderRulesFile=`finddir B_COMMON_DATA_DIRECTORY`/expander.rules if [ -f \${expanderRulesFile} ] ; then @@ -686,7 +687,7 @@ function ConvertJamToBash() #icuDevelPkgLine=`sed -n -e "$regExp" ${baseDir}/OptionalBuildFeatures` #ConvertVariableDeclarationLines "$regExp" 'icuDevelPkgLine' - local regExp='/^HAIKU_OPENSSL_PACKAGE/p' + local regExp="/^\s*HAIKU_OPENSSL_PACKAGE = .*-gcc${HAIKU_GCC_VERSION[1]}-/p" sslPkgLine=`sed -n -e "$regExp" ${baseDir}/OptionalBuildFeatures` ConvertVariableDeclarationLines "$regExp" 'sslPkgLine' @@ -694,6 +695,10 @@ function ConvertJamToBash() sslUrlLine=`sed -n -e "$regExp" ${baseDir}/OptionalBuildFeatures` ConvertVariableDeclarationLines "$regExp" 'sslUrlLine' + local regExp='/^HAIKU_WEBKIT_FILE/p' + webkitFileLine=`sed -n -e "$regExp" ${baseDir}/OptionalBuildFeatures` + ConvertVariableDeclarationLines "$regExp" 'webkitFileLine' + local regExp='/^local\ baseURL/p' urlLine=`sed -n -e "$regExp" ${baseDir}/OptionalPackages` urlLine=${urlLine/local\ /''} diff --git a/data/catalogs/add-ons/media/media-add-ons/mixer/ru.catkeys b/data/catalogs/add-ons/media/media-add-ons/mixer/ru.catkeys index 974d67ba41..214de561c6 100644 --- a/data/catalogs/add-ons/media/media-add-ons/mixer/ru.catkeys +++ b/data/catalogs/add-ons/media/media-add-ons/mixer/ru.catkeys @@ -24,4 +24,4 @@ Setup AudioMixer Настройка Use non linear gain sliders (like BeOS R5) AudioMixer Использовать нелинейные ползунки управления звуком Gain AudioMixer Усиление Allow output channel remapping AudioMixer Разрешить переназначение выходного канала -Physical input channels AudioMixer Физические входные каналы +Physical input channels AudioMixer Физические каналы входа diff --git a/data/catalogs/add-ons/screen_savers/glife/ja.catkeys b/data/catalogs/add-ons/screen_savers/glife/ja.catkeys index aa16edd95f..bd7d5f7044 100644 --- a/data/catalogs/add-ons/screen_savers/glife/ja.catkeys +++ b/data/catalogs/add-ons/screen_savers/glife/ja.catkeys @@ -1,4 +1,4 @@ -1 japanese x-vnd.Haiku-GLifeScreensaver 206066243 +1 japanese x-vnd.Haiku-GLifeScreensaver 1707534289 Grid Border: %li GLife ScreenSaver グリッドの輪郭: %li Grid Width: GLife ScreenSaver グリッドの幅: none GLife ScreenSaver 無し @@ -10,5 +10,6 @@ Grid Width: %li GLife ScreenSaver グリッドの幅: %li Grid Height: %li GLife ScreenSaver グリッドの高さ: %li Grid Life Delay: GLife ScreenSaver グリッドの生存猶予: OpenGL \"Game of Life\" GLife ScreenSaver OpenGL \"ライフゲーム\" +Grid Life Delay: %s GLife ScreenSaver グリッドの生存猶予: %s Grid Border: GLife ScreenSaver グリッドの境界: by Aaron Hill GLife ScreenSaver Aaron Hill 作 diff --git a/data/catalogs/add-ons/translators/exr/be.catkeys b/data/catalogs/add-ons/translators/exr/be.catkeys index 280bcc3ee9..12541168ca 100644 --- a/data/catalogs/add-ons/translators/exr/be.catkeys +++ b/data/catalogs/add-ons/translators/exr/be.catkeys @@ -1,7 +1,9 @@ -1 belarusian x-vnd.Haiku-EXRTranslator 2253035870 +1 belarusian x-vnd.Haiku-EXRTranslator 106859695 Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s EXR image translator EXRTranslator Канвертар EXR выяваў Based on OpenEXR (http://www.openexr.com) ConfigView Грунтуецца на матэрыялах праекту OpenEXR (http://www.openexr.com) EXR Settings main Наладкі EXR +EXR images EXRTranslator Выявы EXR a division of Lucasfilm Entertainment Company Ltd ConfigView падраздяленне Lucasfilm Entertainment Company Ltd EXR image EXRTranslator Выява EXR +EXR image translator ConfigView Канвертар EXR выяваў diff --git a/data/catalogs/add-ons/translators/exr/fr.catkeys b/data/catalogs/add-ons/translators/exr/fr.catkeys index b96b46b675..5f62f75b1e 100644 --- a/data/catalogs/add-ons/translators/exr/fr.catkeys +++ b/data/catalogs/add-ons/translators/exr/fr.catkeys @@ -1,7 +1,9 @@ -1 french x-vnd.Haiku-EXRTranslator 2253035870 +1 french x-vnd.Haiku-EXRTranslator 106859695 Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s EXR image translator EXRTranslator Traducteur d'images EXR Based on OpenEXR (http://www.openexr.com) ConfigView Basé sur OpenEXR (http://www.openexr.com) EXR Settings main Réglages EXR +EXR images EXRTranslator Images EXR a division of Lucasfilm Entertainment Company Ltd ConfigView une division de Lucasfilm Entertainment Company Ltd EXR image EXRTranslator Image EXR +EXR image translator ConfigView Traducteur d'images EXR diff --git a/data/catalogs/add-ons/translators/hvif/be.catkeys b/data/catalogs/add-ons/translators/hvif/be.catkeys index 7e7542ee62..71cb3856f7 100644 --- a/data/catalogs/add-ons/translators/hvif/be.catkeys +++ b/data/catalogs/add-ons/translators/hvif/be.catkeys @@ -1,6 +1,8 @@ -1 belarusian x-vnd.Haiku-HVIFTranslator 2227623652 +1 belarusian x-vnd.Haiku-HVIFTranslator 249304797 +Haiku vector icon translator HVIFTranslator Канвертар вектарных значкаў Haiku HVIF icons HVIFTranslator значкі HVIF Render size: HVIFView Памер выніковай выявы: HVIFTranslator Settings HVIFTranslator Наладкі канвертара HVIF +Haiku vector icon translator HVIFView Канвертар вектарных значкаў Haiku HVIF Settings HVIFMain Наладкі HVIF Version %d.%d.%d, %s HVIFView Версія %d.%d.%d, %s diff --git a/data/catalogs/add-ons/translators/hvif/fr.catkeys b/data/catalogs/add-ons/translators/hvif/fr.catkeys index 720538ab1f..91e3e37554 100644 --- a/data/catalogs/add-ons/translators/hvif/fr.catkeys +++ b/data/catalogs/add-ons/translators/hvif/fr.catkeys @@ -1,6 +1,8 @@ -1 french x-vnd.Haiku-HVIFTranslator 2227623652 +1 french x-vnd.Haiku-HVIFTranslator 249304797 +Haiku vector icon translator HVIFTranslator Traducteur d'icônes vectorielles Haiku HVIF icons HVIFTranslator Icônes HVIF Render size: HVIFView Taille de rendu : HVIFTranslator Settings HVIFTranslator Réglages du traducteur d'icônes HVIF +Haiku vector icon translator HVIFView Traducteur d'icônes vectorielles Haiku HVIF Settings HVIFMain Réglages HVIF Version %d.%d.%d, %s HVIFView Version %d.%d.%d, %s diff --git a/data/catalogs/add-ons/translators/ico/be.catkeys b/data/catalogs/add-ons/translators/ico/be.catkeys index 6bac8df8e6..d2411ed034 100644 --- a/data/catalogs/add-ons/translators/ico/be.catkeys +++ b/data/catalogs/add-ons/translators/ico/be.catkeys @@ -1,8 +1,9 @@ -1 belarusian x-vnd.Haiku-ICOTranslator 1637901496 +1 belarusian x-vnd.Haiku-ICOTranslator 3916328565 Cursor ICOTranslator Курсор Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s Windows %s %ld bit image ICOTranslator Выява Windows %s %ld біт Valid icon sizes are 16, 32, or 48 ConfigView Стандартныя памеры значкаў 16, 32 або 48 +Windows icons ICOTranslator Значкі Windows Enforce valid icon sizes ConfigView Выкарыстоўваць стандартныя памеры ICO Settings main Наладкі ICO Windows icon translator ICOTranslator Канвертар значкаў Windows @@ -10,3 +11,4 @@ pixels in either direction. ConfigView пікселяў у кожным нап Write 32 bit images on true color input ConfigView Запісать выявы ў 32 біт поўны колер Icon ICOTranslator Значак ICOTranslator Settings ConfigView Наладкі канвертара ICO +Windows icon translator ConfigView Канвертар значкаў Windows diff --git a/data/catalogs/add-ons/translators/ico/fr.catkeys b/data/catalogs/add-ons/translators/ico/fr.catkeys index c50bcca32d..221d6b74ee 100644 --- a/data/catalogs/add-ons/translators/ico/fr.catkeys +++ b/data/catalogs/add-ons/translators/ico/fr.catkeys @@ -1,8 +1,9 @@ -1 french x-vnd.Haiku-ICOTranslator 1637901496 +1 french x-vnd.Haiku-ICOTranslator 3916328565 Cursor ICOTranslator Curseur Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s Windows %s %ld bit image ICOTranslator Image Windows %s %ld bits Valid icon sizes are 16, 32, or 48 ConfigView Les tailles d'icônes valides sont 16, 32 ou 48 +Windows icons ICOTranslator Icône Windows Enforce valid icon sizes ConfigView Imposer des tailles valides aux icônes ICO Settings main Réglages des icônes Windows icon translator ICOTranslator Traducteur d'icônes Windows @@ -10,3 +11,4 @@ pixels in either direction. ConfigView pixels dans n'importe quel sens. Write 32 bit images on true color input ConfigView Écrire des images 32 bits pour les entrées en vraies couleurs Icon ICOTranslator Icône ICOTranslator Settings ConfigView Réglages du traducteur d'icônes +Windows icon translator ConfigView Traducteur d'icônes Windows diff --git a/data/catalogs/add-ons/translators/pcx/be.catkeys b/data/catalogs/add-ons/translators/pcx/be.catkeys index 6158246ac9..5613584f9a 100644 --- a/data/catalogs/add-ons/translators/pcx/be.catkeys +++ b/data/catalogs/add-ons/translators/pcx/be.catkeys @@ -1,6 +1,8 @@ -1 belarusian x-vnd.Haiku-PCXTranslator 2307793683 +1 belarusian x-vnd.Haiku-PCXTranslator 938242683 PCX Settings main Наладкі PCX Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s PCXTranslator Settings ConfigView Наладкі канвертару PCX +PCX image translator PCXTranslator Канвертар выяваў PCX PCX %lu bit image PCXTranslator %lu-бітная выява PCX PCX images PCXTranslator Выявы PCX +PCX image translator ConfigView Канвертар выяваў PCX diff --git a/data/catalogs/add-ons/translators/pcx/fr.catkeys b/data/catalogs/add-ons/translators/pcx/fr.catkeys index 1e44aa8de3..59d0e5a427 100644 --- a/data/catalogs/add-ons/translators/pcx/fr.catkeys +++ b/data/catalogs/add-ons/translators/pcx/fr.catkeys @@ -1,6 +1,8 @@ -1 french x-vnd.Haiku-PCXTranslator 2307793683 +1 french x-vnd.Haiku-PCXTranslator 938242683 PCX Settings main Réglages PCX Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s PCXTranslator Settings ConfigView Réglages du traducteur PCX +PCX image translator PCXTranslator Traducteur d'images PCX PCX %lu bit image PCXTranslator Image PCX %lu bits PCX images PCXTranslator Images PCX +PCX image translator ConfigView Traducteur d'images PCX diff --git a/data/catalogs/add-ons/translators/ppm/be.catkeys b/data/catalogs/add-ons/translators/ppm/be.catkeys index 6c9a9f86bd..3b0ff66d3c 100644 --- a/data/catalogs/add-ons/translators/ppm/be.catkeys +++ b/data/catalogs/add-ons/translators/ppm/be.catkeys @@ -1,4 +1,4 @@ -1 belarusian x-vnd.Haiku-PPMTranslator 2435270880 +1 belarusian x-vnd.Haiku-PPMTranslator 276252412 PPM Settings PPMMain Наладкі PPM Based on PPMTranslator sample code PPMTranslator Грунтуецца на зыходным тэксце прыкладу "PPMTranslator" OK PPMMain ОК @@ -9,6 +9,7 @@ RGBA 5:5:5:1 16 bits PPMTranslator RGBA 5:5:5:1 16 біт Be Bitmap Format (PPMTranslator) PPMTranslator Фармат бітмапу BeOS (Канвертар PPM) CMYA 8:8:8:8 32 bits PPMTranslator CMYA 8:8:8:8 32 біт CMYK 8:8:8:8 32 bits PPMTranslator CMYK 8:8:8:8 32 біт +PPM image translator PPMTranslator Канвертар выяваў PPM bits/space PPMTranslator бітаў/ліст RGB 8:8:8 32 bits big-endian PPMTranslator RGB 8:8:8 32 бітаў (big-endian) RGB 5:6:5 16 bits big-endian PPMTranslator RGB 5:6:5 16 бітаў (big-endian) diff --git a/data/catalogs/add-ons/translators/ppm/fr.catkeys b/data/catalogs/add-ons/translators/ppm/fr.catkeys index 9554feb0ca..7e18a6d061 100644 --- a/data/catalogs/add-ons/translators/ppm/fr.catkeys +++ b/data/catalogs/add-ons/translators/ppm/fr.catkeys @@ -1,4 +1,4 @@ -1 french x-vnd.Haiku-PPMTranslator 2435270880 +1 french x-vnd.Haiku-PPMTranslator 276252412 PPM Settings PPMMain Réglages PPM Based on PPMTranslator sample code PPMTranslator Basé sur le code d'exemple du traducteur PPM OK PPMMain OK @@ -9,6 +9,7 @@ RGBA 5:5:5:1 16 bits PPMTranslator RVBA 5:5:5:1 16 bits Be Bitmap Format (PPMTranslator) PPMTranslator Format Bitmap Be (Traducteur PPM) CMYA 8:8:8:8 32 bits PPMTranslator CMJA 8:8:8:8 32 bits CMYK 8:8:8:8 32 bits PPMTranslator CMJN 8:8:8:8 32 bits +PPM image translator PPMTranslator Traducteur d'images PPM bits/space PPMTranslator bits/espace RGB 8:8:8 32 bits big-endian PPMTranslator RVB 8:8:8 32 bits big-endian RGB 5:6:5 16 bits big-endian PPMTranslator RVB 5:6:5 16 bits big-endian diff --git a/data/catalogs/add-ons/translators/raw/be.catkeys b/data/catalogs/add-ons/translators/raw/be.catkeys index 342037ad83..78922b35db 100644 --- a/data/catalogs/add-ons/translators/raw/be.catkeys +++ b/data/catalogs/add-ons/translators/raw/be.catkeys @@ -1,7 +1,6 @@ -1 belarusian x-vnd.Haiku-RAWTranslator 1938728039 +1 belarusian x-vnd.Haiku-RAWTranslator 2229230003 RAWTranslator Settings ConfigView Наладкі канвертара RAW Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s -RAW Images ConfigView Выявы RAW RAW image translator RAWTranslator Канвертар выяваў RAW RAW Settings RAWTranslator main Наладкі RAW RAW images RAWTranslator Выявы RAW diff --git a/data/catalogs/add-ons/translators/raw/de.catkeys b/data/catalogs/add-ons/translators/raw/de.catkeys index e7f08c07e5..5d3963ba48 100644 --- a/data/catalogs/add-ons/translators/raw/de.catkeys +++ b/data/catalogs/add-ons/translators/raw/de.catkeys @@ -1,7 +1,6 @@ -1 german x-vnd.Haiku-RAWTranslator 1938728039 +1 german x-vnd.Haiku-RAWTranslator 2229230003 RAWTranslator Settings ConfigView RAWTranslator-Einstellungen Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s -RAW Images ConfigView RAW-Bilder RAW image translator RAWTranslator RAW-Bild-Translator RAW Settings RAWTranslator main RAW-Einstellungen RAW images RAWTranslator RAW-Bilder diff --git a/data/catalogs/add-ons/translators/raw/el.catkeys b/data/catalogs/add-ons/translators/raw/el.catkeys index 2541effcac..b5639e56a8 100644 --- a/data/catalogs/add-ons/translators/raw/el.catkeys +++ b/data/catalogs/add-ons/translators/raw/el.catkeys @@ -1,7 +1,6 @@ -1 greek, modern (1453-) x-vnd.Haiku-RAWTranslator 1938728039 +1 greek, modern (1453-) x-vnd.Haiku-RAWTranslator 2229230003 RAWTranslator Settings ConfigView Ρυθμίσεις μεταφραστή RAW Version %d.%d.%d, %s ConfigView Έκδοση %d.%d.%d, %s -RAW Images ConfigView RAW Εικόνες RAW image translator RAWTranslator Μεταφραστής εικόνας RAW RAW Settings RAWTranslator main RAW Ρυθμίσεις RAW images RAWTranslator RAW εικόνες diff --git a/data/catalogs/add-ons/translators/raw/fi.catkeys b/data/catalogs/add-ons/translators/raw/fi.catkeys index b82158142d..bffc0f0d0e 100644 --- a/data/catalogs/add-ons/translators/raw/fi.catkeys +++ b/data/catalogs/add-ons/translators/raw/fi.catkeys @@ -1,7 +1,6 @@ -1 finnish x-vnd.Haiku-RAWTranslator 1938728039 +1 finnish x-vnd.Haiku-RAWTranslator 2229230003 RAWTranslator Settings ConfigView RAW-muunninasetukset Version %d.%d.%d, %s ConfigView Versio %d.%d.%d, %s -RAW Images ConfigView RAW-kuvat RAW image translator RAWTranslator RAW-kuvamuunnin RAW Settings RAWTranslator main RAW-asetukset RAW images RAWTranslator RAW-kuvat diff --git a/data/catalogs/add-ons/translators/raw/fr.catkeys b/data/catalogs/add-ons/translators/raw/fr.catkeys index d7cb5a2ba3..f39a351fc7 100644 --- a/data/catalogs/add-ons/translators/raw/fr.catkeys +++ b/data/catalogs/add-ons/translators/raw/fr.catkeys @@ -1,9 +1,8 @@ -1 french x-vnd.Haiku-RAWTranslator 1938728039 +1 french x-vnd.Haiku-RAWTranslator 2229230003 RAWTranslator Settings ConfigView Réglages du traducteur RAW Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s -RAW Images ConfigView Images RAW RAW image translator RAWTranslator Traducteur d'images RAW RAW Settings RAWTranslator main Réglages RAW RAW images RAWTranslator Images RAW -%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') Image %s RAW +%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') Image brute %s Based on Dave Coffin's dcraw 8.63 ConfigView Basé sur dcraw 8.63 de Dave Coffin diff --git a/data/catalogs/add-ons/translators/raw/hi.catkeys b/data/catalogs/add-ons/translators/raw/hi.catkeys index dc3f16d8cf..4e6818bf80 100644 --- a/data/catalogs/add-ons/translators/raw/hi.catkeys +++ b/data/catalogs/add-ons/translators/raw/hi.catkeys @@ -1,7 +1,6 @@ -1 hindi x-vnd.Haiku-RAWTranslator 1938728039 +1 hindi x-vnd.Haiku-RAWTranslator 2229230003 RAWTranslator Settings ConfigView RAWTranslator की सेत्तिंग्स Version %d.%d.%d, %s ConfigView संस्करण %d.%d.%d, %s -RAW Images ConfigView RAW चित्र RAW image translator RAWTranslator RAW चित्र का अनुवादक RAW Settings RAWTranslator main RAW की सेत्तिंग्स RAW images RAWTranslator RAW चित्र diff --git a/data/catalogs/add-ons/translators/raw/ja.catkeys b/data/catalogs/add-ons/translators/raw/ja.catkeys index f625655ace..6ec794939d 100644 --- a/data/catalogs/add-ons/translators/raw/ja.catkeys +++ b/data/catalogs/add-ons/translators/raw/ja.catkeys @@ -1,7 +1,6 @@ -1 japanese x-vnd.Haiku-RAWTranslator 1938728039 +1 japanese x-vnd.Haiku-RAWTranslator 2229230003 RAWTranslator Settings ConfigView RAW トランスレーター設定 Version %d.%d.%d, %s ConfigView バージョン %d.%d.%d, %s -RAW Images ConfigView RAW イメージ RAW image translator RAWTranslator RAW イメージトランスレーター RAW Settings RAWTranslator main RAW 設定 RAW images RAWTranslator RAW イメージ diff --git a/data/catalogs/add-ons/translators/raw/lt.catkeys b/data/catalogs/add-ons/translators/raw/lt.catkeys index cd3e927cc9..904c8fb50e 100644 --- a/data/catalogs/add-ons/translators/raw/lt.catkeys +++ b/data/catalogs/add-ons/translators/raw/lt.catkeys @@ -1,7 +1,6 @@ -1 lithuanian x-vnd.Haiku-RAWTranslator 1938728039 +1 lithuanian x-vnd.Haiku-RAWTranslator 2229230003 RAWTranslator Settings ConfigView RAW keitiklio nuostatos Version %d.%d.%d, %s ConfigView Versija %d.%d.%d, %s -RAW Images ConfigView RAW paveikslai RAW image translator RAWTranslator RAW paveikslų keitiklis RAW Settings RAWTranslator main RAW nuostatos RAW images RAWTranslator RAW paveikslai diff --git a/data/catalogs/add-ons/translators/raw/nb.catkeys b/data/catalogs/add-ons/translators/raw/nb.catkeys index 5e0d2c0f33..eb7ff993fe 100644 --- a/data/catalogs/add-ons/translators/raw/nb.catkeys +++ b/data/catalogs/add-ons/translators/raw/nb.catkeys @@ -1,7 +1,6 @@ -1 bokmål, norwegian; norwegian bokmål x-vnd.Haiku-RAWTranslator 1938728039 +1 bokmål, norwegian; norwegian bokmål x-vnd.Haiku-RAWTranslator 2229230003 RAWTranslator Settings ConfigView RAW-oversetterinnstillinger Version %d.%d.%d, %s ConfigView Versjon %d.%d.%d, %s -RAW Images ConfigView RAW-bilder RAW image translator RAWTranslator RAW-bildeoversetter RAW Settings RAWTranslator main RAW-innstillinger RAW images RAWTranslator RAW-bilder diff --git a/data/catalogs/add-ons/translators/raw/nl.catkeys b/data/catalogs/add-ons/translators/raw/nl.catkeys index 61c84cebae..3f1800a647 100644 --- a/data/catalogs/add-ons/translators/raw/nl.catkeys +++ b/data/catalogs/add-ons/translators/raw/nl.catkeys @@ -1,7 +1,6 @@ -1 dutch; flemish x-vnd.Haiku-RAWTranslator 1938728039 +1 dutch; flemish x-vnd.Haiku-RAWTranslator 2229230003 RAWTranslator Settings ConfigView RAWTranslator Instellingen Version %d.%d.%d, %s ConfigView Versie %d.%d.%d, %s -RAW Images ConfigView RAW Afbeeldingen RAW image translator RAWTranslator RAW afbeelding vertaler RAW Settings RAWTranslator main RAW Instellingen RAW images RAWTranslator RAW afbeeldingen diff --git a/data/catalogs/add-ons/translators/raw/pl.catkeys b/data/catalogs/add-ons/translators/raw/pl.catkeys index 9f56cea639..1f64820188 100644 --- a/data/catalogs/add-ons/translators/raw/pl.catkeys +++ b/data/catalogs/add-ons/translators/raw/pl.catkeys @@ -1,7 +1,6 @@ -1 polish x-vnd.Haiku-RAWTranslator 1938728039 +1 polish x-vnd.Haiku-RAWTranslator 2229230003 RAWTranslator Settings ConfigView Ustawienia translatora RAW Version %d.%d.%d, %s ConfigView Wersja %d.%d.%d, %s -RAW Images ConfigView Obrazy RAW RAW image translator RAWTranslator Translator obrazów RAW RAW Settings RAWTranslator main Ustawienia RAW RAW images RAWTranslator Obrazy RAW diff --git a/data/catalogs/add-ons/translators/raw/ru.catkeys b/data/catalogs/add-ons/translators/raw/ru.catkeys index 8b69fe81f7..7d53f8d86e 100644 --- a/data/catalogs/add-ons/translators/raw/ru.catkeys +++ b/data/catalogs/add-ons/translators/raw/ru.catkeys @@ -1,7 +1,6 @@ -1 russian x-vnd.Haiku-RAWTranslator 1938728039 +1 russian x-vnd.Haiku-RAWTranslator 2229230003 RAWTranslator Settings ConfigView Настройки RAW транслятора Version %d.%d.%d, %s ConfigView Версия %d.%d.%d, %s -RAW Images ConfigView Транслятор RAW изображений RAW image translator RAWTranslator Транслятор RAW изображений RAW Settings RAWTranslator main Настройки RAW транслятора RAW images RAWTranslator RAW изображения diff --git a/data/catalogs/add-ons/translators/raw/sk.catkeys b/data/catalogs/add-ons/translators/raw/sk.catkeys index e06689ba40..f05ad62a1d 100644 --- a/data/catalogs/add-ons/translators/raw/sk.catkeys +++ b/data/catalogs/add-ons/translators/raw/sk.catkeys @@ -1,7 +1,6 @@ -1 slovak x-vnd.Haiku-RAWTranslator 1938728039 +1 slovak x-vnd.Haiku-RAWTranslator 2229230003 RAWTranslator Settings ConfigView Nastavenia Prekladača RAW Version %d.%d.%d, %s ConfigView Verzia %d.%d.%d, %s -RAW Images ConfigView Obrázky RAW RAW image translator RAWTranslator Prekladač obrázkov RAW RAW Settings RAWTranslator main Nastavenia RAW RAW images RAWTranslator Obrázky RAW diff --git a/data/catalogs/add-ons/translators/raw/sv.catkeys b/data/catalogs/add-ons/translators/raw/sv.catkeys index ba4eb5d4b3..14fbd7d5bf 100644 --- a/data/catalogs/add-ons/translators/raw/sv.catkeys +++ b/data/catalogs/add-ons/translators/raw/sv.catkeys @@ -1,7 +1,6 @@ -1 swedish x-vnd.Haiku-RAWTranslator 1938728039 +1 swedish x-vnd.Haiku-RAWTranslator 2229230003 RAWTranslator Settings ConfigView RAW översättare inställningar Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s -RAW Images ConfigView RAW bilder RAW image translator RAWTranslator RAW bildöversättare RAW Settings RAWTranslator main RAW inställningar RAW images RAWTranslator RAW bilder diff --git a/data/catalogs/add-ons/translators/raw/uk.catkeys b/data/catalogs/add-ons/translators/raw/uk.catkeys index b2c046faa9..974aff609e 100644 --- a/data/catalogs/add-ons/translators/raw/uk.catkeys +++ b/data/catalogs/add-ons/translators/raw/uk.catkeys @@ -1,7 +1,6 @@ -1 ukrainian x-vnd.Haiku-RAWTranslator 1938728039 +1 ukrainian x-vnd.Haiku-RAWTranslator 2229230003 RAWTranslator Settings ConfigView Настройки Перетворювача RAW Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s -RAW Images ConfigView Зображення RAW RAW image translator RAWTranslator Перетворювач зображень RAW RAW Settings RAWTranslator main Настройки RAW RAW images RAWTranslator Зображення RAW diff --git a/data/catalogs/add-ons/translators/raw/zh-Hans.catkeys b/data/catalogs/add-ons/translators/raw/zh-Hans.catkeys index 40c43437e9..231974d285 100644 --- a/data/catalogs/add-ons/translators/raw/zh-Hans.catkeys +++ b/data/catalogs/add-ons/translators/raw/zh-Hans.catkeys @@ -1,7 +1,6 @@ -1 english x-vnd.Haiku-RAWTranslator 1938728039 +1 english x-vnd.Haiku-RAWTranslator 2229230003 RAWTranslator Settings ConfigView RAW 转换器设置 Version %d.%d.%d, %s ConfigView 版本 %d.%d.%d, %s -RAW Images ConfigView RAW 图像 RAW image translator RAWTranslator RAW 图像转换器 RAW Settings RAWTranslator main RAW 设置 RAW images RAWTranslator RAW 图像 diff --git a/data/catalogs/add-ons/translators/rtf/be.catkeys b/data/catalogs/add-ons/translators/rtf/be.catkeys index 20577b9268..482c72f4d2 100644 --- a/data/catalogs/add-ons/translators/rtf/be.catkeys +++ b/data/catalogs/add-ons/translators/rtf/be.catkeys @@ -1,7 +1,9 @@ -1 belarusian x-vnd.Haiku-RTFTranslator 3736645044 +1 belarusian x-vnd.Haiku-RTFTranslator 1620328626 Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s RTF text files RTFTranslator Файлы тэксту ў RTF RTF-Translator Settings ConfigView Наладкі канвертара RTF +Rich Text Format (RTF) translator ConfigView Канвертар Фарматаванага Тэксту (RTF) RTF Settings main Наладки RTF RichTextFormat file RTFTranslator Файл RichTextFormat +Rich Text Format translator RTFTranslator Канвертар Фарматаванага Тэксту (RTF) Rich Text Format translator v%d.%d.%d %s RTFTranslator Канвертар Багата Фарматаванага Тэксту (RTF) версія %d.%d.%d %s diff --git a/data/catalogs/add-ons/translators/rtf/fr.catkeys b/data/catalogs/add-ons/translators/rtf/fr.catkeys index 46da7b01d5..6b88b4f5ac 100644 --- a/data/catalogs/add-ons/translators/rtf/fr.catkeys +++ b/data/catalogs/add-ons/translators/rtf/fr.catkeys @@ -1,7 +1,9 @@ -1 french x-vnd.Haiku-RTFTranslator 3736645044 +1 french x-vnd.Haiku-RTFTranslator 1620328626 Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s RTF text files RTFTranslator Fichiers textes RTF RTF-Translator Settings ConfigView Réglages du traducteur RTF +Rich Text Format (RTF) translator ConfigView Traducteur du Format Texte enRichi (RTF) RTF Settings main Réglages RTF RichTextFormat file RTFTranslator Fichier Format Texte enRichi +Rich Text Format translator RTFTranslator Traducteur du Format Texte enRichi Rich Text Format translator v%d.%d.%d %s RTFTranslator Traducteur du Format Texte enRichi v%d.%d.%d %s diff --git a/data/catalogs/add-ons/translators/stxt/be.catkeys b/data/catalogs/add-ons/translators/stxt/be.catkeys index a3cf681121..41f308f80f 100644 --- a/data/catalogs/add-ons/translators/stxt/be.catkeys +++ b/data/catalogs/add-ons/translators/stxt/be.catkeys @@ -1,6 +1,8 @@ -1 belarusian x-vnd.Haiku-STXTTranslator 3302294301 +1 belarusian x-vnd.Haiku-STXTTranslator 274886668 Be styled text file STXTTranslator Тэкставы файл са стылямі (Be styled) Plain text file STXTTranslator Файл з простым тэкстам STXTTranslator Settings STXTTranslator Наладкі канвертара STXT +StyledEdit file translator STXTView Канвртар файлаў StyledEdit StyledEdit files STXTTranslator Файлы StyledEdit +StyledEdit file translator STXTTranslator Канвeртар файлаў StyledEdit STXT Settings STXTMain Наладкі STXT diff --git a/data/catalogs/add-ons/translators/stxt/fr.catkeys b/data/catalogs/add-ons/translators/stxt/fr.catkeys index d9cd87acf6..a4d1161178 100644 --- a/data/catalogs/add-ons/translators/stxt/fr.catkeys +++ b/data/catalogs/add-ons/translators/stxt/fr.catkeys @@ -1,6 +1,8 @@ -1 french x-vnd.Haiku-STXTTranslator 3302294301 +1 french x-vnd.Haiku-STXTTranslator 274886668 Be styled text file STXTTranslator Fichier texte stylé Be Plain text file STXTTranslator Fichier de texte brut STXTTranslator Settings STXTTranslator Réglages du traducteur STXT +StyledEdit file translator STXTView Traducteur de fichiers texte stylé StyledEdit files STXTTranslator Fichiers texte stylé +StyledEdit file translator STXTTranslator Traducteur de fichiers texte stylé STXT Settings STXTMain Réglages STXT diff --git a/data/catalogs/add-ons/translators/webp/be.catkeys b/data/catalogs/add-ons/translators/webp/be.catkeys index 57211cfe5f..4acf1343e7 100644 --- a/data/catalogs/add-ons/translators/webp/be.catkeys +++ b/data/catalogs/add-ons/translators/webp/be.catkeys @@ -1,8 +1,7 @@ -1 belarusian x-vnd.Haiku-WebPTranslator 3630570850 +1 belarusian x-vnd.Haiku-WebPTranslator 2427600890 Compression method: ConfigView Метад сціску: Based on libwebp v0.1, ConfigView Грунтуецца на матэрыялах libwebp v0.1, Preset ConfigView Прадвызначаныя -WebP Images ConfigView Выявы WebP WebP images WebPTranslator Выявы WebP WebPTranslator Settings ConfigView Наладкі канвертара выяваў WebP Output quality: ConfigView Выходная якасць: diff --git a/data/catalogs/add-ons/translators/webp/de.catkeys b/data/catalogs/add-ons/translators/webp/de.catkeys index 11cb5c09d3..6ff6a87182 100644 --- a/data/catalogs/add-ons/translators/webp/de.catkeys +++ b/data/catalogs/add-ons/translators/webp/de.catkeys @@ -1,8 +1,7 @@ -1 german x-vnd.Haiku-WebPTranslator 3630570850 +1 german x-vnd.Haiku-WebPTranslator 2427600890 Compression method: ConfigView Komprimierungsart: Based on libwebp v0.1, ConfigView Basiert auf libwebp v0.1 Preset ConfigView Voreinstellung -WebP Images ConfigView WebP-Bilder WebP images WebPTranslator WebP-Bilder WebPTranslator Settings ConfigView WebPTranslator-Einstellungen Output quality: ConfigView Ausgabequalität: diff --git a/data/catalogs/add-ons/translators/webp/el.catkeys b/data/catalogs/add-ons/translators/webp/el.catkeys index 3e2e3bdac6..e3dbd78829 100644 --- a/data/catalogs/add-ons/translators/webp/el.catkeys +++ b/data/catalogs/add-ons/translators/webp/el.catkeys @@ -1,8 +1,7 @@ -1 greek, modern (1453-) x-vnd.Haiku-WebPTranslator 3630570850 +1 greek, modern (1453-) x-vnd.Haiku-WebPTranslator 2427600890 Compression method: ConfigView Μέθοδος συμπίεσης: Based on libwebp v0.1, ConfigView Βασισμένο στο libwebp v0.1, Preset ConfigView Προεπιλογή -WebP Images ConfigView Εικόνες WebP WebP images WebPTranslator Εικόνες WebP WebPTranslator Settings ConfigView Ρυθμίσεις μεταφραστή WebP Output quality: ConfigView Ποιότητα εξόδου: diff --git a/data/catalogs/add-ons/translators/webp/fi.catkeys b/data/catalogs/add-ons/translators/webp/fi.catkeys index 240231252e..956352d791 100644 --- a/data/catalogs/add-ons/translators/webp/fi.catkeys +++ b/data/catalogs/add-ons/translators/webp/fi.catkeys @@ -1,8 +1,7 @@ -1 finnish x-vnd.Haiku-WebPTranslator 3630570850 +1 finnish x-vnd.Haiku-WebPTranslator 2427600890 Compression method: ConfigView Tiivistysmenetelmä Based on libwebp v0.1, ConfigView Perustuu kirjastoon libwebp v0.1, Preset ConfigView Esiasetus -WebP Images ConfigView WebP-kuvat WebP images WebPTranslator WebP-kuvat WebPTranslator Settings ConfigView WebP-muunninasetukset Output quality: ConfigView Tulostuslaatu: diff --git a/data/catalogs/add-ons/translators/webp/fr.catkeys b/data/catalogs/add-ons/translators/webp/fr.catkeys index e53444633a..d2f3b463c6 100644 --- a/data/catalogs/add-ons/translators/webp/fr.catkeys +++ b/data/catalogs/add-ons/translators/webp/fr.catkeys @@ -1,8 +1,7 @@ -1 french x-vnd.Haiku-WebPTranslator 3630570850 +1 french x-vnd.Haiku-WebPTranslator 2427600890 Compression method: ConfigView Méthode de compression : Based on libwebp v0.1, ConfigView Basé sur libwebp v0.1, Preset ConfigView Préréglage -WebP Images ConfigView Images WebP WebP images WebPTranslator Images WebP WebPTranslator Settings ConfigView Réglages du traducteur WebP Output quality: ConfigView Qualité de sortie : diff --git a/data/catalogs/add-ons/translators/webp/hi.catkeys b/data/catalogs/add-ons/translators/webp/hi.catkeys index a2354c8eef..58fc25e32c 100644 --- a/data/catalogs/add-ons/translators/webp/hi.catkeys +++ b/data/catalogs/add-ons/translators/webp/hi.catkeys @@ -1,8 +1,7 @@ -1 hindi x-vnd.Haiku-WebPTranslator 3630570850 +1 hindi x-vnd.Haiku-WebPTranslator 2427600890 Compression method: ConfigView काम्प्रेस्शन का तरीका: Based on libwebp v0.1, ConfigView libwebp v0.1 पर आधारित, Preset ConfigView प्रीसेट -WebP Images ConfigView WebP चित्र WebP images WebPTranslator WebP चित्र WebPTranslator Settings ConfigView WebP ट्रांसलेटर सेतिनग्स Output quality: ConfigView आउटपुट गुणवत्ता: diff --git a/data/catalogs/add-ons/translators/webp/ja.catkeys b/data/catalogs/add-ons/translators/webp/ja.catkeys index 15289114d4..186ba72b31 100644 --- a/data/catalogs/add-ons/translators/webp/ja.catkeys +++ b/data/catalogs/add-ons/translators/webp/ja.catkeys @@ -1,8 +1,7 @@ -1 japanese x-vnd.Haiku-WebPTranslator 3630570850 +1 japanese x-vnd.Haiku-WebPTranslator 2427600890 Compression method: ConfigView 圧縮方法: Based on libwebp v0.1, ConfigView libwebp v0.1 に基づく、 Preset ConfigView プリセット: -WebP Images ConfigView WebP イメージ WebP images WebPTranslator WebP イメージ WebPTranslator Settings ConfigView WebP トランスレーター設定 Output quality: ConfigView 出力品質: diff --git a/data/catalogs/add-ons/translators/webp/lt.catkeys b/data/catalogs/add-ons/translators/webp/lt.catkeys index 51e0cf11bb..1bdf672156 100644 --- a/data/catalogs/add-ons/translators/webp/lt.catkeys +++ b/data/catalogs/add-ons/translators/webp/lt.catkeys @@ -1,8 +1,7 @@ -1 lithuanian x-vnd.Haiku-WebPTranslator 3630570850 +1 lithuanian x-vnd.Haiku-WebPTranslator 2427600890 Compression method: ConfigView Glaudinimo būdas: Based on libwebp v0.1, ConfigView Sukurta „libwebp v0.1“ pagrindu, Preset ConfigView Ruošinys -WebP Images ConfigView WebP paveikslai WebP images WebPTranslator WebP paveikslai WebPTranslator Settings ConfigView WebP keitiklio nuostatos Output quality: ConfigView Išvesties kokybė: diff --git a/data/catalogs/add-ons/translators/webp/nb.catkeys b/data/catalogs/add-ons/translators/webp/nb.catkeys index 6029ba5958..f1ce63614a 100644 --- a/data/catalogs/add-ons/translators/webp/nb.catkeys +++ b/data/catalogs/add-ons/translators/webp/nb.catkeys @@ -1,8 +1,7 @@ -1 bokmål, norwegian; norwegian bokmål x-vnd.Haiku-WebPTranslator 3630570850 +1 bokmål, norwegian; norwegian bokmål x-vnd.Haiku-WebPTranslator 2427600890 Compression method: ConfigView Kompresjonsmetode: Based on libwebp v0.1, ConfigView Basert på libwebp v0.1, Preset ConfigView Forhåndsinstilling -WebP Images ConfigView WebP-bilder WebP images WebPTranslator WebP-bilder WebPTranslator Settings ConfigView WebP-oversetterinnstillinger Output quality: ConfigView Output kvalitet: diff --git a/data/catalogs/add-ons/translators/webp/nl.catkeys b/data/catalogs/add-ons/translators/webp/nl.catkeys index 7a155c126c..71db77ebf9 100644 --- a/data/catalogs/add-ons/translators/webp/nl.catkeys +++ b/data/catalogs/add-ons/translators/webp/nl.catkeys @@ -1,8 +1,7 @@ -1 dutch; flemish x-vnd.Haiku-WebPTranslator 3630570850 +1 dutch; flemish x-vnd.Haiku-WebPTranslator 2427600890 Compression method: ConfigView Compressie methode: Based on libwebp v0.1, ConfigView Gebaseerd op libwebp v0.1, Preset ConfigView Voorinstelling -WebP Images ConfigView WebP Afbeeldingen WebP images WebPTranslator WebP afbeeldingen WebPTranslator Settings ConfigView WebPVertaler Instellingen Output quality: ConfigView Uitvoerkwaliteit: diff --git a/data/catalogs/add-ons/translators/webp/pl.catkeys b/data/catalogs/add-ons/translators/webp/pl.catkeys index 0748d18940..47fa1c4fa0 100644 --- a/data/catalogs/add-ons/translators/webp/pl.catkeys +++ b/data/catalogs/add-ons/translators/webp/pl.catkeys @@ -1,8 +1,7 @@ -1 polish x-vnd.Haiku-WebPTranslator 3630570850 +1 polish x-vnd.Haiku-WebPTranslator 2427600890 Compression method: ConfigView Metoda kompresji: Based on libwebp v0.1, ConfigView Bazuje na libwebp v0.1, Preset ConfigView Ustawienie -WebP Images ConfigView Obrazki WebP WebP images WebPTranslator Obrazki WebP WebPTranslator Settings ConfigView Ustawienia translatora WebP Output quality: ConfigView Jakość wyjściowa: diff --git a/data/catalogs/add-ons/translators/webp/ro.catkeys b/data/catalogs/add-ons/translators/webp/ro.catkeys index a692ddfee9..ba2bcb3318 100644 --- a/data/catalogs/add-ons/translators/webp/ro.catkeys +++ b/data/catalogs/add-ons/translators/webp/ro.catkeys @@ -1,5 +1,4 @@ -1 romanian x-vnd.Haiku-WebPTranslator 1423533669 -WebP Images ConfigView Imagini WebP +1 romanian x-vnd.Haiku-WebPTranslator 220563709 WebP images WebPTranslator Imagini WebP WebPTranslator Settings ConfigView Configurări TraducătorWebP WebP Settings main Configurări WebP diff --git a/data/catalogs/add-ons/translators/webp/ru.catkeys b/data/catalogs/add-ons/translators/webp/ru.catkeys index 1f55644280..642081a026 100644 --- a/data/catalogs/add-ons/translators/webp/ru.catkeys +++ b/data/catalogs/add-ons/translators/webp/ru.catkeys @@ -1,8 +1,7 @@ -1 russian x-vnd.Haiku-WebPTranslator 3630570850 +1 russian x-vnd.Haiku-WebPTranslator 2427600890 Compression method: ConfigView Метод сжатия Based on libwebp v0.1, ConfigView Основано на libwebp v0.1, Preset ConfigView Пресет -WebP Images ConfigView Транслятор WebP изображений WebP images WebPTranslator WebP изображения WebPTranslator Settings ConfigView Настройки WebP транслятора Output quality: ConfigView Качество вывода: diff --git a/data/catalogs/add-ons/translators/webp/sk.catkeys b/data/catalogs/add-ons/translators/webp/sk.catkeys index 8ca3462ecc..0e26410570 100644 --- a/data/catalogs/add-ons/translators/webp/sk.catkeys +++ b/data/catalogs/add-ons/translators/webp/sk.catkeys @@ -1,8 +1,7 @@ -1 slovak x-vnd.Haiku-WebPTranslator 3630570850 +1 slovak x-vnd.Haiku-WebPTranslator 2427600890 Compression method: ConfigView Spôsob kompresie: Based on libwebp v0.1, ConfigView Založené na libwebp v0.1, Preset ConfigView Predvoľby -WebP Images ConfigView Obrázky WebP WebP images WebPTranslator Obrázky WebP WebPTranslator Settings ConfigView Nastavenie WebPTranslator Output quality: ConfigView Kvalita výstupu: diff --git a/data/catalogs/add-ons/translators/webp/sv.catkeys b/data/catalogs/add-ons/translators/webp/sv.catkeys index 58d14655f0..8ba1c66903 100644 --- a/data/catalogs/add-ons/translators/webp/sv.catkeys +++ b/data/catalogs/add-ons/translators/webp/sv.catkeys @@ -1,8 +1,7 @@ -1 swedish x-vnd.Haiku-WebPTranslator 3630570850 +1 swedish x-vnd.Haiku-WebPTranslator 2427600890 Compression method: ConfigView Komprimeringsmetod Based on libwebp v0.1, ConfigView Baserat på libwebp v0.1, Preset ConfigView Förval -WebP Images ConfigView WebP bilder WebP images WebPTranslator WebP bilder WebPTranslator Settings ConfigView WebP översättningsinställningar Output quality: ConfigView Utdatakvalité diff --git a/data/catalogs/add-ons/translators/webp/uk.catkeys b/data/catalogs/add-ons/translators/webp/uk.catkeys index 6f7216b7b3..cbc6b63c23 100644 --- a/data/catalogs/add-ons/translators/webp/uk.catkeys +++ b/data/catalogs/add-ons/translators/webp/uk.catkeys @@ -1,8 +1,7 @@ -1 ukrainian x-vnd.Haiku-WebPTranslator 3630570850 +1 ukrainian x-vnd.Haiku-WebPTranslator 2427600890 Compression method: ConfigView Метод стискання Based on libwebp v0.1, ConfigView На основі libwebp v0.1, Preset ConfigView Набір параметрів -WebP Images ConfigView Зображення WebP WebP images WebPTranslator Зображення WebP WebPTranslator Settings ConfigView Настройки перетворювача WebP Output quality: ConfigView Якість виведення diff --git a/data/catalogs/add-ons/translators/webp/zh-Hans.catkeys b/data/catalogs/add-ons/translators/webp/zh-Hans.catkeys index ce8dfcc326..c6b716a690 100644 --- a/data/catalogs/add-ons/translators/webp/zh-Hans.catkeys +++ b/data/catalogs/add-ons/translators/webp/zh-Hans.catkeys @@ -1,8 +1,7 @@ -1 english x-vnd.Haiku-WebPTranslator 3630570850 +1 english x-vnd.Haiku-WebPTranslator 2427600890 Compression method: ConfigView 压缩方法: Based on libwebp v0.1, ConfigView 基于 libwebp v0.1, Preset ConfigView 预设 -WebP Images ConfigView WebP 图像 WebP images WebPTranslator WebP 图像 WebPTranslator Settings ConfigView WebP 转换器设置 Output quality: ConfigView 输出质量: diff --git a/data/catalogs/apps/codycam/fr.catkeys b/data/catalogs/apps/codycam/fr.catkeys index d14a1c7801..468f37eaa4 100644 --- a/data/catalogs/apps/codycam/fr.catkeys +++ b/data/catalogs/apps/codycam/fr.catkeys @@ -1,4 +1,4 @@ -1 french x-vnd.Haiku-CodyCam 2499223827 +1 french x-vnd.Haiku-CodyCam 2416864674 Capturing Image… VideoConsumer.cpp Capture d'une image… Every 30 seconds CodyCam Toutes les 30 secondes File name: CodyCam Nom du fichier : @@ -85,6 +85,7 @@ Cannot find the media roster CodyCam Impossible de trouver le diagramme des mé Every 4 hours CodyCam Toutes les 4 heures FTP CodyCam FTP File transmission failed VideoConsumer.cpp Erreur dans la transmission du fichier +Cannot seek time source! CodyCam Impossible de positionner la référence de temps ! File CodyCam Fichier Image Format Menu CodyCam Menu de formats d'images Every 30 minutes CodyCam Toutes les 30 minutes diff --git a/data/catalogs/apps/devices/fr.catkeys b/data/catalogs/apps/devices/fr.catkeys index 5da59e267b..3c07c38c1a 100644 --- a/data/catalogs/apps/devices/fr.catkeys +++ b/data/catalogs/apps/devices/fr.catkeys @@ -1,4 +1,4 @@ -1 french x-vnd.Haiku-Devices 2511616912 +1 french x-vnd.Haiku-Devices 865240481 Manufacturer DeviceSCSI Fabricant Order by: DevicesView Trier par : ACPI controller Device Contrôleur ACPI @@ -18,6 +18,7 @@ Detailed DevicesView Détail Category DevicesView Catégorie Quit DevicesView Quitter Device paths Device Chemin des périphériques +Scanner DeviceSCSI Scanner Printer DeviceSCSI Imprimante Processor Device Microprocesseur Optical Drive DeviceSCSI Lecteur optique @@ -40,6 +41,7 @@ Driver used Device Pilote utilisé Other DeviceSCSI Autre Device Name\t\t\t\t: %Name%\nManufacturer\t\t\t: %Manufacturer%\nDriver used\t\t\t\t: %DriverUsed%\nDevice paths\t: %DevicePaths% Device Nom du périphérique\t\t\t\t\t: %Name%\nFabricant\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: %Manufacturer%\nPilote utilisé\t\t\t\t\t\t\t\t\t\t: %DriverUsed%\nChemins du périphérique\t: %DevicePaths% ACPI Thermal Zone DeviceACPI Zone thermique ACPI +Communications DeviceSCSI Communications Bus DevicesView Bus Communication controller Device Contrôleur de communication Manufacturer DeviceACPI Fabricant @@ -52,8 +54,10 @@ Basic information DevicesView Informations de base PCI Information DevicePCI Informations PCI Manufacturer: Device Fabricant : ACPI bus DevicesView Bus ACPI +Changer DeviceSCSI Changeur de disques ACPI System Bus DeviceACPI Bus système ACPI Devices System name Périphériques +Worm DeviceSCSI Disque inscriptible Multimedia controller Device Contrôleur multimédia Unknown DevicePCI Inconnu Device name: Device Nom du périphérique : @@ -72,6 +76,8 @@ Manufacturer DevicePCI Fabricant Intelligent controller Device Contrôleur intelligent Satellite communications controller Device Contrôleur de communications par satellite SCSI Information DeviceSCSI Informations SCSI +Enclosure DeviceSCSI Zone de stockage +Array DeviceSCSI Baie Bridge Device Pont Refresh devices DevicesView Rafraichir les périphériques Unknown device DevicesView Périphérique inconnu diff --git a/data/catalogs/apps/drivesetup/fr.catkeys b/data/catalogs/apps/drivesetup/fr.catkeys index 6cb62990bf..84d5fbadfa 100644 --- a/data/catalogs/apps/drivesetup/fr.catkeys +++ b/data/catalogs/apps/drivesetup/fr.catkeys @@ -1,4 +1,4 @@ -1 french x-vnd.Haiku-DriveSetup 3496601396 +1 french x-vnd.Haiku-DriveSetup 1372142450 DriveSetup System name Gestionnaire de disque Delete MainWindow Supprimer Are you sure you want to write the changes back to disk now?\n\nAll data on the selected partition will be irretrievably lost if you do so! MainWindow Êtes-vous sûr de vouloir écrire les changements sur le disque ?\n\nToutes les données de la partition sélectionnée seront effacées si vous le faites ! @@ -11,12 +11,15 @@ There's no space on the partition where a child partition could be created. Main Unable to find the selected partition by ID. MainWindow Impossible de trouver la partition sélectionnée par son ID. Select a partition from the list below. DiskView Sélectionnez une partition dans la liste ci-dessous. No disk devices have been recognized. DiskView Aucun périphérique disque n'a été reconnu. +Failed to initialize the disk %s!\n MainWindow Impossible d'initialiser le disque %s !\n The selected disk is read-only. MainWindow Le disque choisi est en lecture seule. Partition name: CreateParamsPanel Nom de la partition : Initialize InitParamsPanel Initialiser +Are you sure you want to format the partition \"%s\"? You will be asked again before changes are written to the disk. MainWindow Êtes-vous sûr de vouloir formater la partition « %s » ? Une confirmation vous sera à nouveau demandée avant que les changements ne soient écrits sur le disque. Could not mount partition %s. MainWindow Impossible de monter la partition %s. +The partition %s has been successfully formatted.\n MainWindow La partition %s a été correctement formatée.\n The partition %s is already unmounted. MainWindow La partition %s est déjà démontée. -Failed to delete the partition. No changes have been written to disk. MainWindow Impossible de supprimer la partition. Aucun changement n'a été enregistré sur le disque. +Failed to delete the partition. No changes have been written to disk. MainWindow Impossible de supprimer la partition. Aucun changement n'a été écrit sur le disque. Partition type: CreateParamsPanel Type de partition : Could not delete the selected partition. MainWindow Impossible de supprimer la partition sélectionnée. Initialize MainWindow Initialiser @@ -29,21 +32,25 @@ Mounted at PartitionList Montée en There was an error acquiring the partition row. MainWindow Erreur de lecture des informations de la partition. You need to select a partition entry from the list. MainWindow Sélectionnez d'abord une entrée de la table des partitions. The currently selected partition does not have a parent partition. MainWindow La partition sélectionnée n'a pas de partition parente. -Are you sure you want to write the changes back to disk now?\n\nAll data on the selected disk will be irretrievably lost if you do so! MainWindow Êtes-vous sur de vouloir enregistrer les changements sur le disque ?\n\nToutes les données du disque seront définitivement perdues si vous le faites ! +Are you sure you want to write the changes back to disk now?\n\nAll data on the selected disk will be irretrievably lost if you do so! MainWindow Êtes-vous sur de vouloir écrire les changements sur le disque ?\n\nToutes les données du disque seront définitivement perdues si vous le faites ! Offset: %ld MB Support Déplacement : %ld Mo -Write changes MainWindow Enregistrer les modifications +Write changes MainWindow Écrire les modifications There was an error preparing the disk for modifications. MainWindow Une erreur est survenue pendant la préparation des modifications du disque. The partition %s is already mounted. MainWindow La partition %s est déjà montée. +Are you sure you want to format the partition? You will be asked again before changes are written to the disk. MainWindow Êtes-vous sûr de vouloir formater la partition ? Une confirmation vous sera à nouveau demandée avant que les changements ne soient écrits sur le disque. Are you sure you want to write the changes back to disk now?\n\nAll data on the disk %s will be irretrievably lost if you do so! MainWindow Êtes-vous sûr de vouloir écrire les modifications sur disque maintenant ?\n\nToutes les données du disque %s seront irrémédiablement perdues si vous le faites ! Are you sure you want to delete the selected partition?\n\nAll data on the partition will be irretrievably lost if you do so! MainWindow Êtes-vous sûr de vouloir supprimer la partition sélectionnée ?\n\nToutes les données sur la partition seront définitivement perdues si vous le faites ! Create… MainWindow Créer… Disk system \"%s\"\" not found! MainWindow Le disque système « %s » est introuvable ! The disk has been successfully initialized.\n MainWindow Le disque a été correctement initialisée.\n Could not unmount partition %s. MainWindow Impossible de démonter la partition %s. +Failed to format the partition %s!\n MainWindow Impossible de formater la partition %s !\n Mount MainWindow Monter Create CreateParamsPanel Créer +Are you sure you want to format a raw disk? (most people initialize the disk with a partitioning system first) You will be asked again before changes are written to the disk. MainWindow Êtes-vous sûr de vouloir formater un disque brut ? (la plus part du temps, il convient au préalable d'initialiser le disque avec un système de partitions ) Une confirmation vous sera à nouveau demandée avant que les changements ne soient écrits sur le disque. Device PartitionList Périphérique Disk MainWindow Disque +Are you sure you want to initialize the selected disk? All data will be lost. You will be asked again before changes are written to the disk.\n MainWindow Êtes-vous sûr de vouloir initialiser le disque sélectionné ? Toutes les données seront perdues. Une confirmation vous sera à nouveau demandée avant que les changements ne soient écrits sur le disque.\n Device DiskView Périphérique Active PartitionList Active Volume name PartitionList Nom de volume @@ -58,6 +65,7 @@ Partition MainWindow Partition File system PartitionList Système de fichiers Validation of the given creation parameters failed. MainWindow Le contrôle des paramètres de création donnés a échoué. Size PartitionList Taille +Wipe (not implemented) MainWindow Effacer (non implémenté) Validation of the given initialization parameters failed. MainWindow Le contrôle des paramètres d'initialisation donnés a échoué. The selected partition does not contain a partitioning system. MainWindow La partition sélectionnée ne contient pas de système de partitionnement. Are you sure you want to write the changes back to disk now?\n\nAll data on the partition %s will be irretrievably lost if you do so! MainWindow Êtes-vous sûr de vouloir enregistrer les modifications sur le disque maintenant ?\n\nToutes les données sur la partition %s seront définitivement perdues si vous le faites ! @@ -66,7 +74,9 @@ Partition size CreateParamsPanel Taille de la partition Surface test (not implemented) MainWindow Test de surface (non implémenté) Cancel InitParamsPanel Annuler Cancel CreateParamsPanel Annuler +Format MainWindow Formater Parameters PartitionList Paramètres Creation of the partition has failed. MainWindow La partition n'a pas pu être créée. The currently selected partition is not empty. MainWindow La partition sélectionnée n'est pas vide. +Failed to format the partition. No changes have been written to disk. MainWindow Impossible de formater la partition. Aucun changement n'a été écrit sur le disque. Unmount MainWindow Démonter diff --git a/data/catalogs/apps/fontdemo/fr.catkeys b/data/catalogs/apps/fontdemo/fr.catkeys index 1b91450ac8..dd38cb9fb7 100644 --- a/data/catalogs/apps/fontdemo/fr.catkeys +++ b/data/catalogs/apps/fontdemo/fr.catkeys @@ -1,4 +1,4 @@ -1 french x-vnd.Haiku-FontDemo 3756411221 +1 french x-vnd.Haiku-FontDemo 1769653414 Outline: ControlView Contour : Size: 50 ControlView Taille : 50 Stop cycling ControlView Arrêter de boucler @@ -11,6 +11,8 @@ Spacing: %d ControlView Espacement : %d Cycle fonts ControlView Polices en boucle Font: ControlView Police : Rotation: 0 ControlView Rotation : 0 +Drawing mode: ControlView Mode de dessin : +FontDemo FontDemo FontDemo Haiku, Inc. ControlView Haiku, Inc. Controls FontDemo Contrôles Outline: %d ControlView Contour : %d diff --git a/data/catalogs/apps/glteapot/be.catkeys b/data/catalogs/apps/glteapot/be.catkeys index 7947745a67..7d5a80a1a2 100644 --- a/data/catalogs/apps/glteapot/be.catkeys +++ b/data/catalogs/apps/glteapot/be.catkeys @@ -1,4 +1,4 @@ -1 belarusian x-vnd.Haiku-GLTeapot 2890609668 +1 belarusian x-vnd.Haiku-GLTeapot 1569683445 Upper center TeapotWindow Зверху Lighting TeapotWindow Падсветка Off TeapotWindow Выключыць @@ -9,11 +9,11 @@ Blue TeapotWindow Блакітны Gouraud shading TeapotWindow Адценне Gouraud Quit TeapotWindow Выйсці Filled polygons TeapotWindow Запоўненыя палігоны +Settings TeapotWindow Наладкі Fog TeapotWindow Туман Backface culling TeapotWindow Адкідаць заднія Z-buffered TeapotWindow Z-буферызаваны File TeapotWindow Файл -Options TeapotWindow Наладкі Perspective TeapotWindow Перспектыва GLTeapot System name GL Чайнік Green TeapotWindow Зялёны diff --git a/data/catalogs/apps/glteapot/de.catkeys b/data/catalogs/apps/glteapot/de.catkeys index 74341dc872..82b2d5c6c5 100644 --- a/data/catalogs/apps/glteapot/de.catkeys +++ b/data/catalogs/apps/glteapot/de.catkeys @@ -1,4 +1,4 @@ -1 german x-vnd.Haiku-GLTeapot 2890609668 +1 german x-vnd.Haiku-GLTeapot 1569683445 Upper center TeapotWindow Mitte oben Lighting TeapotWindow Beleuchtung Off TeapotWindow Aus @@ -9,11 +9,11 @@ Blue TeapotWindow Blau Gouraud shading TeapotWindow Gouraud Shading Quit TeapotWindow Beenden Filled polygons TeapotWindow Gefüllte Polygone +Settings TeapotWindow Einstellungen Fog TeapotWindow Nebel Backface culling TeapotWindow Backface Culling Z-buffered TeapotWindow Z-Buffering File TeapotWindow Datei -Options TeapotWindow Optionen Perspective TeapotWindow Perspektive GLTeapot System name GL-Teekanne Green TeapotWindow Grün diff --git a/data/catalogs/apps/glteapot/el.catkeys b/data/catalogs/apps/glteapot/el.catkeys index 2802105e8f..af27850dd5 100644 --- a/data/catalogs/apps/glteapot/el.catkeys +++ b/data/catalogs/apps/glteapot/el.catkeys @@ -1,4 +1,4 @@ -1 greek, modern (1453-) x-vnd.Haiku-GLTeapot 2890609668 +1 greek, modern (1453-) x-vnd.Haiku-GLTeapot 3688092856 Upper center TeapotWindow Πάνω κέντρο Lighting TeapotWindow Φωτισμός Off TeapotWindow Κλειστό @@ -13,7 +13,6 @@ Fog TeapotWindow Ομίχλη Backface culling TeapotWindow Κλείσιμο οπίσθιας όψης Z-buffered TeapotWindow Z-buffered File TeapotWindow Αρχείο -Options TeapotWindow Επιλογές Perspective TeapotWindow Προοπτική GLTeapot System name GL-Τσαγιέρα Green TeapotWindow Πράσινο diff --git a/data/catalogs/apps/glteapot/fi.catkeys b/data/catalogs/apps/glteapot/fi.catkeys index 73be5ceadc..7ed06497d2 100644 --- a/data/catalogs/apps/glteapot/fi.catkeys +++ b/data/catalogs/apps/glteapot/fi.catkeys @@ -1,4 +1,4 @@ -1 finnish x-vnd.Haiku-GLTeapot 2890609668 +1 finnish x-vnd.Haiku-GLTeapot 3688092856 Upper center TeapotWindow Ylempi keskikohta Lighting TeapotWindow Valaistus Off TeapotWindow Valot pois @@ -13,7 +13,6 @@ Fog TeapotWindow Sumu Backface culling TeapotWindow Taustakulman häivytys Z-buffered TeapotWindow Z-puskuroitu File TeapotWindow Tiedosto -Options TeapotWindow Valitsimet Perspective TeapotWindow Perspektiivi GLTeapot System name GL-teekannu Green TeapotWindow Vihreä diff --git a/data/catalogs/apps/glteapot/fr.catkeys b/data/catalogs/apps/glteapot/fr.catkeys index cd64cf4ad7..d68bedc700 100644 --- a/data/catalogs/apps/glteapot/fr.catkeys +++ b/data/catalogs/apps/glteapot/fr.catkeys @@ -1,4 +1,4 @@ -1 french x-vnd.Haiku-GLTeapot 2890609668 +1 french x-vnd.Haiku-GLTeapot 1569683445 Upper center TeapotWindow En haut au centre Lighting TeapotWindow Éclairage Off TeapotWindow Arrêt @@ -9,11 +9,11 @@ Blue TeapotWindow Bleu Gouraud shading TeapotWindow Ombrages de Gouraud Quit TeapotWindow Quitter Filled polygons TeapotWindow Polygones pleins +Settings TeapotWindow Réglages Fog TeapotWindow Brouillard Backface culling TeapotWindow Abattage des faces arrières Z-buffered TeapotWindow Tampon de profondeur File TeapotWindow Fichier -Options TeapotWindow Options Perspective TeapotWindow Perspective GLTeapot System name GLTeapot Green TeapotWindow Vert diff --git a/data/catalogs/apps/glteapot/hi.catkeys b/data/catalogs/apps/glteapot/hi.catkeys index 92c543b7e7..13f72f6e8e 100644 --- a/data/catalogs/apps/glteapot/hi.catkeys +++ b/data/catalogs/apps/glteapot/hi.catkeys @@ -1,4 +1,4 @@ -1 hindi x-vnd.Haiku-GLTeapot 2890609668 +1 hindi x-vnd.Haiku-GLTeapot 3688092856 Upper center TeapotWindow ऊपरी बीच Lighting TeapotWindow प्रकाश Off TeapotWindow बंद @@ -13,7 +13,6 @@ Fog TeapotWindow कोहरा Backface culling TeapotWindow बेकफेस कल्लिंग Z-buffered TeapotWindow ज़ड-बफर File TeapotWindow फ़ाइल -Options TeapotWindow विकल्पों Perspective TeapotWindow परिप्रेक्ष्य GLTeapot System name जीअल टीपोट Green TeapotWindow हरा diff --git a/data/catalogs/apps/glteapot/ja.catkeys b/data/catalogs/apps/glteapot/ja.catkeys index d977a4eadf..360c5a760c 100644 --- a/data/catalogs/apps/glteapot/ja.catkeys +++ b/data/catalogs/apps/glteapot/ja.catkeys @@ -1,4 +1,4 @@ -1 japanese x-vnd.Haiku-GLTeapot 2890609668 +1 japanese x-vnd.Haiku-GLTeapot 1569683445 Upper center TeapotWindow 上中央 Lighting TeapotWindow Lighting Off TeapotWindow オフ @@ -9,11 +9,11 @@ Blue TeapotWindow 青 Gouraud shading TeapotWindow グローシェーディング Quit TeapotWindow 終了 Filled polygons TeapotWindow ポリゴンを塗りつぶす +Settings TeapotWindow 設定 Fog TeapotWindow フォグ Backface culling TeapotWindow バックフェースカリング Z-buffered TeapotWindow Z バッファーを使用 File TeapotWindow ファイル -Options TeapotWindow オプション Perspective TeapotWindow パースペクティブ GLTeapot System name GLTeapot Green TeapotWindow 緑 diff --git a/data/catalogs/apps/glteapot/lt.catkeys b/data/catalogs/apps/glteapot/lt.catkeys index 8b237ca34e..3e635cc942 100644 --- a/data/catalogs/apps/glteapot/lt.catkeys +++ b/data/catalogs/apps/glteapot/lt.catkeys @@ -1,4 +1,4 @@ -1 lithuanian x-vnd.Haiku-GLTeapot 2890609668 +1 lithuanian x-vnd.Haiku-GLTeapot 3688092856 Upper center TeapotWindow Viršuje centre Lighting TeapotWindow Apšvietimas Off TeapotWindow Išjungta @@ -13,7 +13,6 @@ Fog TeapotWindow Rūkas Backface culling TeapotWindow Nugarėlių atranka Z-buffered TeapotWindow Z–buferiavimas File TeapotWindow Failas -Options TeapotWindow Parinktys Perspective TeapotWindow Perspektyva GLTeapot System name Arbatinukas Green TeapotWindow Žalia diff --git a/data/catalogs/apps/glteapot/nl.catkeys b/data/catalogs/apps/glteapot/nl.catkeys index 47b5da99ac..41ab1c969b 100644 --- a/data/catalogs/apps/glteapot/nl.catkeys +++ b/data/catalogs/apps/glteapot/nl.catkeys @@ -1,4 +1,4 @@ -1 dutch; flemish x-vnd.Haiku-GLTeapot 2890609668 +1 dutch; flemish x-vnd.Haiku-GLTeapot 3688092856 Upper center TeapotWindow Middenboven Lighting TeapotWindow Verlichting Off TeapotWindow Uit @@ -13,7 +13,6 @@ Fog TeapotWindow Mist Backface culling TeapotWindow Backface culling Z-buffered TeapotWindow Z-gebufferd File TeapotWindow Bestand -Options TeapotWindow Opties Perspective TeapotWindow Perspectief GLTeapot System name GLTeapot Green TeapotWindow Groen diff --git a/data/catalogs/apps/glteapot/pl.catkeys b/data/catalogs/apps/glteapot/pl.catkeys index 9b2f316b8c..d6c14cafbe 100644 --- a/data/catalogs/apps/glteapot/pl.catkeys +++ b/data/catalogs/apps/glteapot/pl.catkeys @@ -1,4 +1,4 @@ -1 polish x-vnd.Haiku-GLTeapot 2890609668 +1 polish x-vnd.Haiku-GLTeapot 3688092856 Upper center TeapotWindow Górne Lighting TeapotWindow Oświetlenie Off TeapotWindow Wyłącz @@ -13,7 +13,6 @@ Fog TeapotWindow Mgła Backface culling TeapotWindow Usuwanie niewidocznych powierzchni Z-buffered TeapotWindow Buforowane Z File TeapotWindow Plik -Options TeapotWindow Opcje Perspective TeapotWindow Perspektywa GLTeapot System name GLTeapot Green TeapotWindow Zielony diff --git a/data/catalogs/apps/glteapot/ro.catkeys b/data/catalogs/apps/glteapot/ro.catkeys index 1c3c39d392..85413a1f0b 100644 --- a/data/catalogs/apps/glteapot/ro.catkeys +++ b/data/catalogs/apps/glteapot/ro.catkeys @@ -1,4 +1,4 @@ -1 romanian x-vnd.Haiku-GLTeapot 2878465056 +1 romanian x-vnd.Haiku-GLTeapot 3675948244 Upper center TeapotWindow Centru sus Lighting TeapotWindow Iluminare Off TeapotWindow Oprit @@ -11,7 +11,6 @@ Quit TeapotWindow Părăsește Filled polygons TeapotWindow Poligoane completate Fog TeapotWindow Ceață File TeapotWindow Fișier -Options TeapotWindow Opțiuni Perspective TeapotWindow Perspectivă GLTeapot System name CeainicGL Green TeapotWindow Verde diff --git a/data/catalogs/apps/glteapot/ru.catkeys b/data/catalogs/apps/glteapot/ru.catkeys index 9b85b0c8e2..036eae9169 100644 --- a/data/catalogs/apps/glteapot/ru.catkeys +++ b/data/catalogs/apps/glteapot/ru.catkeys @@ -1,4 +1,4 @@ -1 russian x-vnd.Haiku-GLTeapot 4001979038 +1 russian x-vnd.Haiku-GLTeapot 2681052815 Upper center TeapotWindow Сверху на центр Lighting TeapotWindow Освещение Off TeapotWindow Выключить @@ -9,10 +9,10 @@ Blue TeapotWindow Голубой Gouraud shading TeapotWindow Метод тонирования Гуро Quit TeapotWindow Выход Filled polygons TeapotWindow Заполненные многоугольники +Settings TeapotWindow Настройки Fog TeapotWindow Туман Z-buffered TeapotWindow Z-буферизация File TeapotWindow Файл -Options TeapotWindow Опции Perspective TeapotWindow Перспектива GLTeapot System name Чайник Green TeapotWindow Зеленый diff --git a/data/catalogs/apps/glteapot/sk.catkeys b/data/catalogs/apps/glteapot/sk.catkeys index 1fce41e998..c42d4b0d73 100644 --- a/data/catalogs/apps/glteapot/sk.catkeys +++ b/data/catalogs/apps/glteapot/sk.catkeys @@ -1,4 +1,4 @@ -1 slovak x-vnd.Haiku-GLTeapot 2890609668 +1 slovak x-vnd.Haiku-GLTeapot 3688092856 Upper center TeapotWindow Hore v strede Lighting TeapotWindow Osvetlenie Off TeapotWindow Vypnuté @@ -13,7 +13,6 @@ Fog TeapotWindow Dym Backface culling TeapotWindow Orezávanie zadnej strany Z-buffered TeapotWindow Z-buffering File TeapotWindow Súbor -Options TeapotWindow Možnosti Perspective TeapotWindow Perspektíva GLTeapot System name GLKonvica Green TeapotWindow Zelená diff --git a/data/catalogs/apps/glteapot/sv.catkeys b/data/catalogs/apps/glteapot/sv.catkeys index 43297ce8f6..e6081ab03b 100644 --- a/data/catalogs/apps/glteapot/sv.catkeys +++ b/data/catalogs/apps/glteapot/sv.catkeys @@ -1,4 +1,4 @@ -1 swedish x-vnd.Haiku-GLTeapot 2890609668 +1 swedish x-vnd.Haiku-GLTeapot 3688092856 Upper center TeapotWindow Övre mitten Lighting TeapotWindow Ljussättning Off TeapotWindow Av @@ -13,7 +13,6 @@ Fog TeapotWindow Dimma Backface culling TeapotWindow Filtrera bort bakåtvända polygoner Z-buffered TeapotWindow Z-buffrad File TeapotWindow Arkiv -Options TeapotWindow Alternativ Perspective TeapotWindow Perspektiv GLTeapot System name GLTekanna Green TeapotWindow Grön diff --git a/data/catalogs/apps/glteapot/uk.catkeys b/data/catalogs/apps/glteapot/uk.catkeys index 11ea36b1be..199d46a955 100644 --- a/data/catalogs/apps/glteapot/uk.catkeys +++ b/data/catalogs/apps/glteapot/uk.catkeys @@ -1,4 +1,4 @@ -1 ukrainian x-vnd.Haiku-GLTeapot 2890609668 +1 ukrainian x-vnd.Haiku-GLTeapot 3688092856 Upper center TeapotWindow Вище центру Lighting TeapotWindow Свічення Off TeapotWindow Вимкнути @@ -13,7 +13,6 @@ Fog TeapotWindow Туман Backface culling TeapotWindow Backface culling Z-buffered TeapotWindow Z-буферизація File TeapotWindow Файл -Options TeapotWindow Опції Perspective TeapotWindow Перспектива GLTeapot System name Чайник GL Green TeapotWindow Зелений diff --git a/data/catalogs/apps/glteapot/zh-Hans.catkeys b/data/catalogs/apps/glteapot/zh-Hans.catkeys index 01fd536b01..a584c08127 100644 --- a/data/catalogs/apps/glteapot/zh-Hans.catkeys +++ b/data/catalogs/apps/glteapot/zh-Hans.catkeys @@ -1,4 +1,4 @@ -1 english x-vnd.Haiku-GLTeapot 2890609668 +1 english x-vnd.Haiku-GLTeapot 3688092856 Upper center TeapotWindow 上部中心 Lighting TeapotWindow 灯光 Off TeapotWindow 关闭 @@ -13,7 +13,6 @@ Fog TeapotWindow 模糊 Backface culling TeapotWindow 隐面消除 Z-buffered TeapotWindow Z-缓冲 File TeapotWindow 文件 -Options TeapotWindow 选项 Perspective TeapotWindow 透视 GLTeapot System name GL 茶壶 Green TeapotWindow 绿色 diff --git a/data/catalogs/apps/icon-o-matic/be.catkeys b/data/catalogs/apps/icon-o-matic/be.catkeys index 08002c4ed5..bb7d438d1e 100644 --- a/data/catalogs/apps/icon-o-matic/be.catkeys +++ b/data/catalogs/apps/icon-o-matic/be.catkeys @@ -1,4 +1,4 @@ -1 belarusian x-vnd.haiku-icon_o_matic 4233739176 +1 belarusian x-vnd.haiku-icon_o_matic 2079362081 Select All Icon-O-Matic-PathManipulator Выбраць Усё Add Style Icon-O-Matic-AddStylesCmd Дадаць Стыль Color (#%02x%02x%02x) Style name after dropping a color Колер (#%02x%02x%02x) @@ -65,6 +65,7 @@ Remove Shape Icon-O-Matic-RemoveShapesCmd Выдаліць Фігуру Reverse Icon-O-Matic-PathsList Зваротна HVIF Source Code Icon-O-Matic-SavePanel Зыходны код HVIF Reset Transformations Icon-O-Matic-ResetTransformationCmd Скінуць Трансфармацыі +Settings Icon-O-Matic-Menus Наладкі All Icon-O-Matic-Properties Усё Multi Paste Properties Icon-O-Matic-Properties Уставіць некалькі уласцівасцяў Undo Icon-O-Matic-Main Вярнуць @@ -192,7 +193,6 @@ Overwrite Icon-O-Matic-SVGExport Перазапісаць Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Замарозіць Фігуры Split Control Point Icon-O-Matic-SplitPointsCmd Раздзяліць Кантрольную Кропку Open… Icon-O-Matic-Menu-File Адкрыць... -Options Icon-O-Matic-Menus Опцыі Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Колер (#%02x%02x%02x) Edit Gradient Icon-O-Matic-SetGradientCmd Правіць Градыент Clean Up Path Icon-O-Matic-CleanUpPathCmd Ачысціць Шлях diff --git a/data/catalogs/apps/icon-o-matic/de.catkeys b/data/catalogs/apps/icon-o-matic/de.catkeys index 86422954e6..c568f7de73 100644 --- a/data/catalogs/apps/icon-o-matic/de.catkeys +++ b/data/catalogs/apps/icon-o-matic/de.catkeys @@ -1,4 +1,4 @@ -1 german x-vnd.haiku-icon_o_matic 4233739176 +1 german x-vnd.haiku-icon_o_matic 2079362081 Select All Icon-O-Matic-PathManipulator Alles auswählen Add Style Icon-O-Matic-AddStylesCmd Stil hinzufügen Color (#%02x%02x%02x) Style name after dropping a color Farbe (#%02x%02x%02x) @@ -65,6 +65,7 @@ Remove Shape Icon-O-Matic-RemoveShapesCmd Form entfernen Reverse Icon-O-Matic-PathsList Umkehren HVIF Source Code Icon-O-Matic-SavePanel HVIF-Quellcode Reset Transformations Icon-O-Matic-ResetTransformationCmd Transformationen zurücksetzen +Settings Icon-O-Matic-Menus Einstellungen All Icon-O-Matic-Properties Alle Multi Paste Properties Icon-O-Matic-Properties Mehrere Eigenschaften einfügen Undo Icon-O-Matic-Main Rückgängig: @@ -192,7 +193,6 @@ Overwrite Icon-O-Matic-SVGExport Überschreiben Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Formen einfrieren Split Control Point Icon-O-Matic-SplitPointsCmd Kontrollpunkt trennen Open… Icon-O-Matic-Menu-File Öffnen… -Options Icon-O-Matic-Menus Optionen Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Farbe (#%02x%02x%02x) Edit Gradient Icon-O-Matic-SetGradientCmd Farbverlauf bearbeiten Clean Up Path Icon-O-Matic-CleanUpPathCmd Pfad aufräumen diff --git a/data/catalogs/apps/icon-o-matic/el.catkeys b/data/catalogs/apps/icon-o-matic/el.catkeys index 28cae72282..d7286aadfb 100644 --- a/data/catalogs/apps/icon-o-matic/el.catkeys +++ b/data/catalogs/apps/icon-o-matic/el.catkeys @@ -1,4 +1,4 @@ -1 greek, modern (1453-) x-vnd.haiku-icon_o_matic 3736361491 +1 greek, modern (1453-) x-vnd.haiku-icon_o_matic 2591538723 Select All Icon-O-Matic-PathManipulator Επιλογή όλων Add Style Icon-O-Matic-AddStylesCmd Προσθήκη Στυλ Color (#%02x%02x%02x) Style name after dropping a color Χρώμα (#%02x%02x%02x) @@ -191,7 +191,6 @@ Overwrite Icon-O-Matic-SVGExport Αντικατάσταση Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Πάγωμα Σχημάτων Split Control Point Icon-O-Matic-SplitPointsCmd Διαίρεση σημείου ελέγχου Open… Icon-O-Matic-Menu-File Άνοιγμα... -Options Icon-O-Matic-Menus Επιλογές Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Χρώμα (#%02x%02x%02x) Edit Gradient Icon-O-Matic-SetGradientCmd Επεξεργασία Gradient Clean Up Path Icon-O-Matic-CleanUpPathCmd Καθαρισμός Μονοπατιού diff --git a/data/catalogs/apps/icon-o-matic/fi.catkeys b/data/catalogs/apps/icon-o-matic/fi.catkeys index 97f9008902..a7e36800a1 100644 --- a/data/catalogs/apps/icon-o-matic/fi.catkeys +++ b/data/catalogs/apps/icon-o-matic/fi.catkeys @@ -1,4 +1,4 @@ -1 finnish x-vnd.haiku-icon_o_matic 4233739176 +1 finnish x-vnd.haiku-icon_o_matic 3088916408 Select All Icon-O-Matic-PathManipulator Valitse kaikki Add Style Icon-O-Matic-AddStylesCmd Lisää tyyli Color (#%02x%02x%02x) Style name after dropping a color Väri (#%02x%02x%02x) @@ -192,7 +192,6 @@ Overwrite Icon-O-Matic-SVGExport Korvaa Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Jähmetä hahmot Split Control Point Icon-O-Matic-SplitPointsCmd Halkaise ohjauspiste Open… Icon-O-Matic-Menu-File Avaa... -Options Icon-O-Matic-Menus Valitsimet Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Väri (#%02x%02x%02x) Edit Gradient Icon-O-Matic-SetGradientCmd Muokkaa kaltevuutta Clean Up Path Icon-O-Matic-CleanUpPathCmd Nollaa polku diff --git a/data/catalogs/apps/icon-o-matic/fr.catkeys b/data/catalogs/apps/icon-o-matic/fr.catkeys index 5376580672..74f149bbbe 100644 --- a/data/catalogs/apps/icon-o-matic/fr.catkeys +++ b/data/catalogs/apps/icon-o-matic/fr.catkeys @@ -1,4 +1,4 @@ -1 french x-vnd.haiku-icon_o_matic 3302636941 +1 french x-vnd.haiku-icon_o_matic 2934880409 Select All Icon-O-Matic-PathManipulator Sélectionner tout Add Style Icon-O-Matic-AddStylesCmd Ajouter un style Color (#%02x%02x%02x) Style name after dropping a color Couleur (#%02x%02x%02x) @@ -6,26 +6,33 @@ Add Icon-O-Matic-StylesList Ajouter Move Shape Icon-O-Matic-MoveShapesCommand Déplacer la forme Opening the document failed! Icon-O-Matic-Main L'ouverture du document a échoué ! Reset transformation Icon-O-Matic-ShapesList Annuler la transformation +Move Paths Icon-O-Matic-MovePathsCmd Déplacer les chemins None Icon-O-Matic-Properties Aucun New Icon-O-Matic-Menu-File Nouveau Icon-O-Matic might not have interpreted all data from the SVG when it was loaded. By overwriting the original file, this information would now be lost. Icon-O-Matic-SVGExport Icon-O-Matic peut ne pas avoir interprété toutes les données du fichier SVG lors de son importation. En sauvegardant par-dessus le fichier original, ces informations seront perdues. Paste Properties Icon-O-Matic-Properties Coller les propriétés +Stroke Transformation Barré Save Icon Dialog title Enregistrer icône Closed Icon-O-Matic-PropertyNames Fermé Remove Path Icon-O-Matic-RemovePathsCmd Enlever le chemin +Add shape with path Icon-O-Matic-Menu-Shape Ajouter une forme avec un chemin Select Icon-O-Matic-Properties Sélectionner Height Icon-O-Matic-PropertyNames Hauteur +Remove Transformers Icon-O-Matic-RemoveTransformersCmd Enlever les Transformations Width Icon-O-Matic-PropertyNames Largeur Transformation Icon-O-Matic-TransformationBoxStates Transformation Duplicate Icon-O-Matic-ShapesList Dupliquer Icon-O-Matic-PropertyNames Linear Icon-O-Matic-StyleTypes Linéaire +Assign Path Icon-O-Matic-AddPathsCmd Assigner un chemin Move Icon-O-Matic-TransformationBoxStates Déplacer +Flip Control Points Icon-O-Matic-FlipPointsCmd Retourner les points de contrôle warning Icon-O-Matic-SVGExport alerte Copy Icon-O-Matic-Properties Copier OK Icon-O-Matic-ColorPicker OK Remove Control Point Icon-O-Matic-RemovePointsCmd Enlever le point de contrôle Add circle Icon-O-Matic-PathsList Ajouter un cercle +Shorten Icon-O-Matic-PropertyNames Raccourcir bad news Title of error alert mauvaises nouvelles Remove Paths Icon-O-Matic-RemovePathsCmd Enlever les chemins Add Control Point Icon-O-Matic-AddPointCmd Ajouter un point de contrôle @@ -44,11 +51,15 @@ Cancel Icon-O-Matic-SVGExport Annuler Add shape with style Icon-O-Matic-Menu-Shape Ajouter une forme avec un style Remove Shape Icon-O-Matic-RemoveShapesCmd Enlever la forme HVIF Source Code Icon-O-Matic-SavePanel Code source HVIF +Reset Transformations Icon-O-Matic-ResetTransformationCmd Réinitialiser les Transformations +Settings Icon-O-Matic-Menus Réglages All Icon-O-Matic-Properties Tout Undo Icon-O-Matic-Main Annuler Add Shape Icon-O-Matic-AddShapesCmd Ajouter une forme Contour Transformation Contour + Icon-O-Matic-Menu-Edit Perspective Transformation Perspective +Move Transformer Icon-O-Matic-MoveTransformersCmd Déplacer la Transformation Opacity Icon-O-Matic-PropertyNames Opacité Gradient type Icon-O-Matic-StyleTypes Type de dégradé Icon-O-Matic System name Icon-O-Matic @@ -56,6 +67,7 @@ Cancel Icon-O-Matic-Menu-Settings Annuler Modify Control Point Icon-O-Matic-ChangePointCmd Modifier le point de contrôle Saving your document failed! Icon-O-Matic-Exporter L'enregistrement du document a échoué ! Split Icon-O-Matic-PathManipulator Diviser +Nudge Control Points Icon-O-Matic-NudgePointsCommand Orner les points de contrôle Remove Icon-O-Matic-StylesList Enlever META:ICON Attribute Icon-O-Matic-SavePanel Attribut META:ICON Rotate Icon-O-Matic-TransformationBoxStates Pivoter @@ -101,11 +113,13 @@ Swatches Icon-O-Matic-Menus Nuancier Icon-O-Matic-StyleTypes Rotation Icon-O-Matic-PropertyNames Rotation Add Icon-O-Matic-PathsList Ajouter +Add Shapes Icon-O-Matic-AddShapesCmd Ajouter des Formes Move Style Icon-O-Matic-MoveStylesCmd Déplacer le style Snap to grid Icon-O-Matic-Menu-Settings Aligner sur la grille Remove Icon-O-Matic-ShapesList Enlever Yes Icon-O-Matic-StyledTextImport Oui Transformation Icon-O-Matic-TransformersList Transformation +Save image Icon-O-Matic-SavePanel Enregistrer l'image Add Styles Icon-O-Matic-AddStylesCmd Ajouter des styles Remove Control Points Icon-O-Matic-RemovePointsCmd Enlever les points de contrôle Format Icon-O-Matic-SavePanel Format @@ -114,6 +128,7 @@ Duplicate Icon-O-Matic-StylesList Dupliquer too big Icon-O-Matic-StyledTextImport trop grand Color Icon-O-Matic-PropertyNames Couleur Insert Control Point Icon-O-Matic-InsertPointCmd Insérer un point de contrôle +Flip Control Point Icon-O-Matic-FlipPointsCmd Retourner le Point de Contrôle Redo Icon-O-Matic-Main Rétablir OK Icon-O-Matic-SVGImport OK Reset Transformation Icon-O-Matic-ResetTransformationCmd Réinitialiser la transformation @@ -124,7 +139,6 @@ Overwrite Icon-O-Matic-SVGExport Écraser Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Figer les formes Split Control Point Icon-O-Matic-SplitPointsCmd Diviser le point de contrôle Open… Icon-O-Matic-Menu-File Ouvrir… -Options Icon-O-Matic-Menus Options Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Couleur (#%02x%02x%02x) Edit Gradient Icon-O-Matic-SetGradientCmd Éditer le dégadé Remove Shapes Icon-O-Matic-RemoveShapesCmd Enlever les formes diff --git a/data/catalogs/apps/icon-o-matic/ja.catkeys b/data/catalogs/apps/icon-o-matic/ja.catkeys index b864003b0a..2e44b78400 100644 --- a/data/catalogs/apps/icon-o-matic/ja.catkeys +++ b/data/catalogs/apps/icon-o-matic/ja.catkeys @@ -1,4 +1,4 @@ -1 japanese x-vnd.haiku-icon_o_matic 3736361491 +1 japanese x-vnd.haiku-icon_o_matic 2591538723 Select All Icon-O-Matic-PathManipulator すべて選択 Add Style Icon-O-Matic-AddStylesCmd スタイルを追加 Color (#%02x%02x%02x) Style name after dropping a color カラー (#%02x%02x%02x) @@ -191,7 +191,6 @@ Overwrite Icon-O-Matic-SVGExport 上書き Freeze Shapes Icon-O-Matic-FreezeTransformationCmd シェイプを固定 Split Control Point Icon-O-Matic-SplitPointsCmd コントロールポイントを分割 Open… Icon-O-Matic-Menu-File 開く… -Options Icon-O-Matic-Menus オプション Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport カラー (#%02x%02x%02x) Edit Gradient Icon-O-Matic-SetGradientCmd グラデーションの編集 Clean Up Path Icon-O-Matic-CleanUpPathCmd パスをクリーンアップ diff --git a/data/catalogs/apps/icon-o-matic/lt.catkeys b/data/catalogs/apps/icon-o-matic/lt.catkeys index 840bce9a64..31a018a76b 100644 --- a/data/catalogs/apps/icon-o-matic/lt.catkeys +++ b/data/catalogs/apps/icon-o-matic/lt.catkeys @@ -1,4 +1,4 @@ -1 lithuanian x-vnd.haiku-icon_o_matic 2985145160 +1 lithuanian x-vnd.haiku-icon_o_matic 1840322392 Select All Icon-O-Matic-PathManipulator Pažymėti viską Add Style Icon-O-Matic-AddStylesCmd Pridėti stilių Color (#%02x%02x%02x) Style name after dropping a color Spalva (#%02x%02x%02x) @@ -189,7 +189,6 @@ Overwrite Icon-O-Matic-SVGExport Perrašyti Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Fiksuoti figūras Split Control Point Icon-O-Matic-SplitPointsCmd Perkelti valdymo tašką Open… Icon-O-Matic-Menu-File Atverti… -Options Icon-O-Matic-Menus Parinktys Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Spalva (#%02x%02x%02x) Edit Gradient Icon-O-Matic-SetGradientCmd Keisti gradientą Clean Up Path Icon-O-Matic-CleanUpPathCmd Išvalyti kreivę diff --git a/data/catalogs/apps/icon-o-matic/nb.catkeys b/data/catalogs/apps/icon-o-matic/nb.catkeys index 74348386d8..a2dc1f9d9c 100644 --- a/data/catalogs/apps/icon-o-matic/nb.catkeys +++ b/data/catalogs/apps/icon-o-matic/nb.catkeys @@ -1,4 +1,4 @@ -1 bokmål, norwegian; norwegian bokmål x-vnd.haiku-icon_o_matic 2755867189 +1 bokmål, norwegian; norwegian bokmål x-vnd.haiku-icon_o_matic 1611044421 Select All Icon-O-Matic-PathManipulator Velg alle Add Style Icon-O-Matic-AddStylesCmd Legg til stil Color (#%02x%02x%02x) Style name after dropping a color Farge (#%02x%02x%02x) @@ -162,7 +162,6 @@ Move Path Icon-O-Matic-MovePathsCmd Flytt sti Overwrite Icon-O-Matic-SVGExport Overskriv Split Control Point Icon-O-Matic-SplitPointsCmd Splitt kontrollpunkt Open… Icon-O-Matic-Menu-File Åpne... -Options Icon-O-Matic-Menus Valg Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Farge (#%02x%02x%02x) Edit Gradient Icon-O-Matic-SetGradientCmd Endre gradient Rounding Icon-O-Matic-PropertyNames Runding diff --git a/data/catalogs/apps/icon-o-matic/nl.catkeys b/data/catalogs/apps/icon-o-matic/nl.catkeys index ff1c85b74d..882da63bf0 100644 --- a/data/catalogs/apps/icon-o-matic/nl.catkeys +++ b/data/catalogs/apps/icon-o-matic/nl.catkeys @@ -1,4 +1,4 @@ -1 dutch; flemish x-vnd.haiku-icon_o_matic 3736361491 +1 dutch; flemish x-vnd.haiku-icon_o_matic 2591538723 Select All Icon-O-Matic-PathManipulator Alles selecteren Add Style Icon-O-Matic-AddStylesCmd Stijl toevoegen Color (#%02x%02x%02x) Style name after dropping a color Kleur (#02x%02x%02x) @@ -191,7 +191,6 @@ Overwrite Icon-O-Matic-SVGExport Overschrijven Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Vormen bevriezen Split Control Point Icon-O-Matic-SplitPointsCmd Controlepunt splitsen Open… Icon-O-Matic-Menu-File Openen... -Options Icon-O-Matic-Menus Opties Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Kleur (#%02x%02x%02x) Edit Gradient Icon-O-Matic-SetGradientCmd Gradiënt aanpassen Clean Up Path Icon-O-Matic-CleanUpPathCmd Pad opruimen diff --git a/data/catalogs/apps/icon-o-matic/pl.catkeys b/data/catalogs/apps/icon-o-matic/pl.catkeys index 0b9f08fe4f..b9f649f026 100644 --- a/data/catalogs/apps/icon-o-matic/pl.catkeys +++ b/data/catalogs/apps/icon-o-matic/pl.catkeys @@ -1,4 +1,4 @@ -1 polish x-vnd.haiku-icon_o_matic 3736361491 +1 polish x-vnd.haiku-icon_o_matic 2591538723 Select All Icon-O-Matic-PathManipulator Zaznacz wszystko Add Style Icon-O-Matic-AddStylesCmd Dodanie stylu Color (#%02x%02x%02x) Style name after dropping a color Kolor (#%02x%02x%02x) @@ -191,7 +191,6 @@ Overwrite Icon-O-Matic-SVGExport Nadpisz Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Zamrożenie kształtów Split Control Point Icon-O-Matic-SplitPointsCmd Podzielenie punktów kontrolnych Open… Icon-O-Matic-Menu-File Otwórz… -Options Icon-O-Matic-Menus Opcje Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Kolor (#%02x%02x%02x) Edit Gradient Icon-O-Matic-SetGradientCmd Edycję gradientu Clean Up Path Icon-O-Matic-CleanUpPathCmd Czyszczenie ścieżki diff --git a/data/catalogs/apps/icon-o-matic/ro.catkeys b/data/catalogs/apps/icon-o-matic/ro.catkeys index cc94d2a320..4b98533224 100644 --- a/data/catalogs/apps/icon-o-matic/ro.catkeys +++ b/data/catalogs/apps/icon-o-matic/ro.catkeys @@ -1,4 +1,4 @@ -1 romanian x-vnd.haiku-icon_o_matic 2326864078 +1 romanian x-vnd.haiku-icon_o_matic 1182041310 Select All Icon-O-Matic-PathManipulator Selectează tot Add Style Icon-O-Matic-AddStylesCmd Adaugă stil Color (#%02x%02x%02x) Style name after dropping a color Culoare (#%02x%02x%02x) @@ -190,7 +190,6 @@ Overwrite Icon-O-Matic-SVGExport Suprascrie Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Îngheață forme Split Control Point Icon-O-Matic-SplitPointsCmd Separă punct de control Open… Icon-O-Matic-Menu-File Deschide... -Options Icon-O-Matic-Menus Opțiuni Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Culoare (#%02x%02x%02x) Edit Gradient Icon-O-Matic-SetGradientCmd Editează degrade Clean Up Path Icon-O-Matic-CleanUpPathCmd Curăță cale diff --git a/data/catalogs/apps/icon-o-matic/ru.catkeys b/data/catalogs/apps/icon-o-matic/ru.catkeys index feb4d516b6..5fae5af33f 100644 --- a/data/catalogs/apps/icon-o-matic/ru.catkeys +++ b/data/catalogs/apps/icon-o-matic/ru.catkeys @@ -1,4 +1,4 @@ -1 russian x-vnd.haiku-icon_o_matic 4233739176 +1 russian x-vnd.haiku-icon_o_matic 2079362081 Select All Icon-O-Matic-PathManipulator Выделить всё Add Style Icon-O-Matic-AddStylesCmd Добавить стиль Color (#%02x%02x%02x) Style name after dropping a color Цвет (#%02x%02x%02x) @@ -65,6 +65,7 @@ Remove Shape Icon-O-Matic-RemoveShapesCmd Удалить форму Reverse Icon-O-Matic-PathsList Обратить HVIF Source Code Icon-O-Matic-SavePanel Исходный код HVIF Reset Transformations Icon-O-Matic-ResetTransformationCmd Сбросить изменения +Settings Icon-O-Matic-Menus Настройки All Icon-O-Matic-Properties Все Multi Paste Properties Icon-O-Matic-Properties Вставить все свойства Undo Icon-O-Matic-Main Отменить @@ -192,7 +193,6 @@ Overwrite Icon-O-Matic-SVGExport Перезаписать Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Заморозить формы Split Control Point Icon-O-Matic-SplitPointsCmd Разделить точку Open… Icon-O-Matic-Menu-File Открыть… -Options Icon-O-Matic-Menus Опции Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Цвет (#%02x%02x%02x) Edit Gradient Icon-O-Matic-SetGradientCmd Изменить градиент Clean Up Path Icon-O-Matic-CleanUpPathCmd Очистить контур diff --git a/data/catalogs/apps/icon-o-matic/sk.catkeys b/data/catalogs/apps/icon-o-matic/sk.catkeys index e38db46494..e307ae4746 100644 --- a/data/catalogs/apps/icon-o-matic/sk.catkeys +++ b/data/catalogs/apps/icon-o-matic/sk.catkeys @@ -1,4 +1,4 @@ -1 slovak x-vnd.haiku-icon_o_matic 4233739176 +1 slovak x-vnd.haiku-icon_o_matic 3088916408 Select All Icon-O-Matic-PathManipulator Vybrať všetky Add Style Icon-O-Matic-AddStylesCmd Pridať štýl Color (#%02x%02x%02x) Style name after dropping a color Farba (#%02x%02x%02x) @@ -192,7 +192,6 @@ Overwrite Icon-O-Matic-SVGExport Prepísať Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Zmraziť tvary Split Control Point Icon-O-Matic-SplitPointsCmd Rozdeliť riadiaci bod Open… Icon-O-Matic-Menu-File Otvoriť… -Options Icon-O-Matic-Menus Možnosti Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Farba (#%02x%02x%02x) Edit Gradient Icon-O-Matic-SetGradientCmd Upraviť farebný prechod Clean Up Path Icon-O-Matic-CleanUpPathCmd Vyčistiť cestu diff --git a/data/catalogs/apps/icon-o-matic/sv.catkeys b/data/catalogs/apps/icon-o-matic/sv.catkeys index a92603ae35..7825e1ff8d 100644 --- a/data/catalogs/apps/icon-o-matic/sv.catkeys +++ b/data/catalogs/apps/icon-o-matic/sv.catkeys @@ -1,4 +1,4 @@ -1 swedish x-vnd.haiku-icon_o_matic 4233739176 +1 swedish x-vnd.haiku-icon_o_matic 3088916408 Select All Icon-O-Matic-PathManipulator Markera allt Add Style Icon-O-Matic-AddStylesCmd Lägg till stil Color (#%02x%02x%02x) Style name after dropping a color Färg (#%02x%02x%02x) @@ -192,7 +192,6 @@ Overwrite Icon-O-Matic-SVGExport Skriv över Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Frys figurer Split Control Point Icon-O-Matic-SplitPointsCmd Klyv kontrollpunkt Open… Icon-O-Matic-Menu-File Öppna... -Options Icon-O-Matic-Menus Alternativ Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Färg (#%02x%02x%02x) Edit Gradient Icon-O-Matic-SetGradientCmd Redigera övergång Clean Up Path Icon-O-Matic-CleanUpPathCmd Rensa upp bana diff --git a/data/catalogs/apps/icon-o-matic/uk.catkeys b/data/catalogs/apps/icon-o-matic/uk.catkeys index d1f6b9b777..d76465dbda 100644 --- a/data/catalogs/apps/icon-o-matic/uk.catkeys +++ b/data/catalogs/apps/icon-o-matic/uk.catkeys @@ -1,4 +1,4 @@ -1 ukrainian x-vnd.haiku-icon_o_matic 3736361491 +1 ukrainian x-vnd.haiku-icon_o_matic 2591538723 Select All Icon-O-Matic-PathManipulator Вибрати все Add Style Icon-O-Matic-AddStylesCmd Додати cтиль Color (#%02x%02x%02x) Style name after dropping a color Колір (#%02x%02x%02x) @@ -191,7 +191,6 @@ Overwrite Icon-O-Matic-SVGExport Перезаписати Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Заморозити фігури Split Control Point Icon-O-Matic-SplitPointsCmd Розділити контрольну точку Open… Icon-O-Matic-Menu-File Відкрити… -Options Icon-O-Matic-Menus Налаштування Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Колір (#%02x%02x%02x) Edit Gradient Icon-O-Matic-SetGradientCmd Редагувати градієнт Clean Up Path Icon-O-Matic-CleanUpPathCmd Очистити шлях diff --git a/data/catalogs/apps/icon-o-matic/zh-Hans.catkeys b/data/catalogs/apps/icon-o-matic/zh-Hans.catkeys index dceb68b003..b8277b083d 100644 --- a/data/catalogs/apps/icon-o-matic/zh-Hans.catkeys +++ b/data/catalogs/apps/icon-o-matic/zh-Hans.catkeys @@ -1,4 +1,4 @@ -1 english x-vnd.haiku-icon_o_matic 4233739176 +1 english x-vnd.haiku-icon_o_matic 3088916408 Select All Icon-O-Matic-PathManipulator 全选 Add Style Icon-O-Matic-AddStylesCmd 添加样式 Color (#%02x%02x%02x) Style name after dropping a color 颜色(#%02x%02x%02x) @@ -192,7 +192,6 @@ Overwrite Icon-O-Matic-SVGExport 覆盖 Freeze Shapes Icon-O-Matic-FreezeTransformationCmd 冻结模型 Split Control Point Icon-O-Matic-SplitPointsCmd 分割控制点 Open… Icon-O-Matic-Menu-File 打开... -Options Icon-O-Matic-Menus 选项 Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport 颜色(#%02x%02x%02x) Edit Gradient Icon-O-Matic-SetGradientCmd 编辑渐变 Clean Up Path Icon-O-Matic-CleanUpPathCmd 清理路径 diff --git a/data/catalogs/apps/login/fr.catkeys b/data/catalogs/apps/login/fr.catkeys new file mode 100644 index 0000000000..51dbbfd319 --- /dev/null +++ b/data/catalogs/apps/login/fr.catkeys @@ -0,0 +1,17 @@ +1 french x-vnd.Haiku-Login 3428662131 +Error: %1 Login App Erreur : %1 +Hide password Login View Camoufler le mot de passe +Desktop Desktop Window Bureau +Invalid login! Login View Échec de l'identification ! +--edit\tLaunch in shelf editting mode to allow customizing the desktop.\n Login App --edit\tLancer en mode édition de présentoire pour permettre la personnalisation du bureau.\n +OK Login View OK +error %s\n Desktop Window A return message from fDesktopShelf->Save(). It can be \"B_OK\" erreur %s\n +Login: Login View Identifiant : +Error Login App Erreur +Unimplemented Login App Non implémenté +Welcome to Haiku Login Window Bienvenue dans Haiku +Reboot Login View Redémarrer +Halt Login View Arrêter +Password: Login View Mot de passe : +OK Login App OK +--nonmodal\tDo not make the window modal\n Login App --nonmodal\tLa fenêtre n'est pas rendue modale\n diff --git a/data/catalogs/apps/magnify/fr.catkeys b/data/catalogs/apps/magnify/fr.catkeys index 16bef6518c..551fa0203a 100644 --- a/data/catalogs/apps/magnify/fr.catkeys +++ b/data/catalogs/apps/magnify/fr.catkeys @@ -1,4 +1,4 @@ -1 french x-vnd.Haiku-Magnify 3515889001 +1 french x-vnd.Haiku-Magnify 283320408 no clip msg\n In console, when clipboard is empty after clicking Copy image aucun clip\n Make square Magnify-Main Rendre carré Copy image Magnify-Main Copier l'image @@ -6,6 +6,7 @@ Magnify help Magnify-Help Aide de la Loupe usage: magnify [size] (magnify size * size pixels)\n Console utilisation : magnify [taille] (taille d'agrandissement * taille des pixels)\n Stick coordinates Magnify-Main Mémoriser les coordonnées Info:\n hide/show info - hides/shows all these new features\n note: when showing, a red square will appear which signifies\n which pixel's rgb values will be displayed\n add/remove crosshairs - 2 crosshairs can be added (or removed)\n to aid in the alignment and placement of objects.\n The crosshairs are represented by blue squares and blue lines.\n hide/show grid - hides/shows the grid that separates each pixel\n Magnify-Help Informations :\n cacher/afficher les informations - cache ou affiche toutes les nouvelles fonctionnalités\n note : Lorsqu'un carré rouge apparait\n Il indique sur quel pixel la valeur de couleur RVB est mesurées\n Ajouter/Enlever un viseur - 2 viseurs peuvent être ajoutés (ou retirés...)\n pour aider à aligner et placer des objets\n les viseurs sont représentés par des carrés bleus et des lignes bleus\n montrer/cacher la grille - montre ou cache la grille séparant chaque pixel\n + freeze - freezes/unfreezes magnification of whatever the\n cursor is currently over\n Magnify-Help freeze - gèle/dégèle le grossissement quel que soit l'endroit\n où se trouve le curseur\n Hide/Show grid Magnify-Main Cacher/afficher la grille magnify: size must be a multiple of 4\n Console Loupe : la taille doit être un multiple de 4\n General:\n 32 x 32 - the top left numbers are the number of visible\n pixels (width x height)\n 8 pixels/pixel - represents the number of pixels that are\n used to magnify a pixel\n R:152 G:52 B:10 - the RGB values for the pixel under\n the red square\n Magnify-Help Général :\n 32⨯32 - les nombres dans le coin supérieur gauche représentent\n le nombre de pixels affichés (largeur ⨯ hauteur).\n 8 pixels/pixel - représente le facteur de grossissement des pixels.\n R:152 V:52 B:10 - les valeurs RVB du pixel sous le carré rouge.\n diff --git a/data/catalogs/apps/mail/be.catkeys b/data/catalogs/apps/mail/be.catkeys index 808c051706..675c9b3885 100644 --- a/data/catalogs/apps/mail/be.catkeys +++ b/data/catalogs/apps/mail/be.catkeys @@ -1,4 +1,4 @@ -1 belarusian x-vnd.Be-MAIL 2834665561 +1 belarusian x-vnd.Be-MAIL 3337401776 View Mail Агляд %d - Date Mail %d - Дата Attach attributes: Mail Атрыбуты ўкладання: @@ -27,6 +27,7 @@ Expert Mail Поўны Reply account: Mail Акаунт для адказаў: Discard Mail Адхіліць Message Mail Паведамленне +Settings… Mail Наладкі… Reply to sender Mail Адказаць адпраўніку There is no installed handler for URL links. Mail Апрацоўшчык URL спасылак не ўсталяваны. Signature Mail Подпіс @@ -38,7 +39,6 @@ Save changes to this signature? Mail Захаваць змены подпісу Cc: Mail Cc: Off Mail Адключыць Find Mail Шукаць -Preferences… Mail Наладкі… Undo Mail Вярнуць Date: Mail Дата: An error occurred trying to open this signature. Mail Памылка. Немагчыма адкрыць гэты подпіс. diff --git a/data/catalogs/apps/mail/de.catkeys b/data/catalogs/apps/mail/de.catkeys index d8fbc87509..228ad08c7a 100644 --- a/data/catalogs/apps/mail/de.catkeys +++ b/data/catalogs/apps/mail/de.catkeys @@ -1,4 +1,4 @@ -1 german x-vnd.Be-MAIL 2834665561 +1 german x-vnd.Be-MAIL 3337401776 View Mail Ansicht %d - Date Mail %d - Datum Attach attributes: Mail Attribute von Anhängen: @@ -27,6 +27,7 @@ Expert Mail Experte Reply account: Mail Konto zum Beantworten: Discard Mail Verwerfen Message Mail Nachricht +Settings… Mail Einstellungen… Reply to sender Mail Antwort an Absender There is no installed handler for URL links. Mail URL-Verweisen ist keine Anwendung zugeordnet. Signature Mail Signatur @@ -38,7 +39,6 @@ Save changes to this signature? Mail Änderungen an der Signatur speichern? Cc: Mail Kopie: Off Mail Aus Find Mail Suchen -Preferences… Mail Einstellungen… Undo Mail Rückgängig Date: Mail Datum: An error occurred trying to open this signature. Mail Beim Öffnen dieser Signatur ist ein Fehler aufgetreten. diff --git a/data/catalogs/apps/mail/fi.catkeys b/data/catalogs/apps/mail/fi.catkeys index 6b2bb2ac91..728d0da52f 100644 --- a/data/catalogs/apps/mail/fi.catkeys +++ b/data/catalogs/apps/mail/fi.catkeys @@ -1,4 +1,4 @@ -1 finnish x-vnd.Be-MAIL 2834665561 +1 finnish x-vnd.Be-MAIL 849531913 View Mail Näkymä %d - Date Mail %d - Päivämäärä Attach attributes: Mail Liittämisattribuutit: @@ -38,7 +38,6 @@ Save changes to this signature? Mail Tallennetaanko muutokset tähän allekirjo Cc: Mail Kopio: Off Mail Pois päältä Find Mail Etsi -Preferences… Mail Asetukset… Undo Mail Peru Date: Mail Päivämäärä: An error occurred trying to open this signature. Mail Tapahtui virhe yritettäessä avata tätä allekirjiotusta. diff --git a/data/catalogs/apps/mail/fr.catkeys b/data/catalogs/apps/mail/fr.catkeys index e76e7a52dd..2e07fc2b97 100644 --- a/data/catalogs/apps/mail/fr.catkeys +++ b/data/catalogs/apps/mail/fr.catkeys @@ -1,10 +1,11 @@ -1 french x-vnd.Be-MAIL 1925197549 +1 french x-vnd.Be-MAIL 3337401776 View Mail Vue %d - Date Mail %d - Date Attach attributes: Mail Attributs du fichier joint : Inconsistency occurred in the undo/redo buffer. Mail Une incohérence est survenue dans le tampon d'annulation. An error occurred trying to save the attachment. Mail Une erreur s'est produite en essayant de sauvegarder le fichier joint. Copy to new Mail Copier vers nouveau +Leave as 'New' Mail Do not translate New - this is non-localizable e-mail status Laisser en « nouveau » Edit Mail Modifier Print Mail Imprimer Mail @@ -26,6 +27,7 @@ Expert Mail Expert Reply account: Mail Compte de réponse : Discard Mail Ignorer Message Mail Message +Settings… Mail Réglages… Reply to sender Mail Répondre à l'expéditeur There is no installed handler for URL links. Mail Il n'y a pas d'application d'ouvrir les liens URL. Signature Mail Signature @@ -37,7 +39,6 @@ Save changes to this signature? Mail Enregistrer les modifications apportées Cc: Mail Cc : Off Mail Arrêt Find Mail Rechercher -Preferences… Mail Préférences… Undo Mail Annuler Date: Mail Date : An error occurred trying to open this signature. Mail Une erreur est survenue en essayant d'ouvrir la signature. @@ -63,12 +64,14 @@ Warn unencodable: Mail Avertir si non encodable : Quit Mail Quitter %n - Full name Mail %n - Nom complet Read Mail Lu +UTF-8 Mail This string is used as a key to set default message compose encoding. It must be correct IANA name from http://cgit.haiku-os.org/haiku/tree/src/kits/textencoding/character_sets.cpp Translate it only if you want to change default message compose encoding for your locale. If you don't know what is it and why it may needs changing, just leave \"UTF-8\". UTF-8 Trash Mail Corbeille Default account: Mail Compte par défaut : Size: Mail Taille : Account from mail Mail Compte de courrier Edit signatures… Mail Modifier les signatures… New Mail Nouveau +Attachments: Mail Pièces jointes : On Mail Marche Set to %s Mail Changer en %s Forward Mail Transférer @@ -77,6 +80,7 @@ E-mail draft could not be saved! Mail Le brouillon n'a pas pu être sauvegardé To: Mail À : Only files can be added as attachments. Mail Seuls des fichiers peuvent être joints à un message. Previous message Mail Message précédent +Attachments: Mail Pièces jointes : Title: Mail Titre : Find… Mail Chercher… Accounts… Mail Comptes… @@ -99,6 +103,7 @@ Show raw message Mail Montrer le message brut \\n - Newline Mail \\n - Nouvelle ligne Start now Mail Démarrer maintenant Close Mail Fermer +No matches Mail Pas de correspondances The mail_daemon is not running. The message is queued and will be sent when the mail_daemon is started. Mail mail_daemon n'est pas démarré. Ce message a été placé en file d'attente et sera envoyé quand mail_daemon sera démarré. Really delete this signature? This cannot be undone. Mail Voulez-vous vraiment effacer cette signature ? Ça ne pourra pas être annulé. Open Mail Ouvrir diff --git a/data/catalogs/apps/mail/ja.catkeys b/data/catalogs/apps/mail/ja.catkeys index 5e76c37e7f..5bf9463fd5 100644 --- a/data/catalogs/apps/mail/ja.catkeys +++ b/data/catalogs/apps/mail/ja.catkeys @@ -1,4 +1,4 @@ -1 japanese x-vnd.Be-MAIL 2834665561 +1 japanese x-vnd.Be-MAIL 3337401776 View Mail 表示 %d - Date Mail %d - 日付 Attach attributes: Mail 属性の添付: @@ -27,6 +27,7 @@ Expert Mail 上級者 Reply account: Mail 返信アカウント: Discard Mail 破棄 Message Mail メッセージ +Settings… Mail 設定… Reply to sender Mail 差出人に返信 There is no installed handler for URL links. Mail URL リンク用ハンドラがインストールされていません。 Signature Mail 署名 @@ -38,7 +39,6 @@ Save changes to this signature? Mail 署名の変更を確定し保存します Cc: Mail Cc: Off Mail オフ Find Mail 検索 -Preferences… Mail メールの設定… Undo Mail 元に戻す Date: Mail 日付: An error occurred trying to open this signature. Mail この署名を開くときにエラーが発生しました。 diff --git a/data/catalogs/apps/mail/lt.catkeys b/data/catalogs/apps/mail/lt.catkeys index 4b54577e60..0a711f1ff4 100644 --- a/data/catalogs/apps/mail/lt.catkeys +++ b/data/catalogs/apps/mail/lt.catkeys @@ -1,4 +1,4 @@ -1 lithuanian x-vnd.Be-MAIL 1831526878 +1 lithuanian x-vnd.Be-MAIL 4141360526 View Mail Rodymas %d - Date Mail %d – data Attach attributes: Mail Pridedamų failų požymių įtraukimas: @@ -37,7 +37,6 @@ Save changes to this signature? Mail Ar įrašyti šio prierašo pakeitimus? Cc: Mail Kopija: Off Mail Išjungti Find Mail Ieškoti -Preferences… Mail Nuostatos… Undo Mail Atšaukti Date: Mail Data: An error occurred trying to open this signature. Mail Bandant atverti šį prierašą, įvyko klaida. diff --git a/data/catalogs/apps/mail/nl.catkeys b/data/catalogs/apps/mail/nl.catkeys index 6665f861bf..c64e70823f 100644 --- a/data/catalogs/apps/mail/nl.catkeys +++ b/data/catalogs/apps/mail/nl.catkeys @@ -1,4 +1,4 @@ -1 dutch; flemish x-vnd.Be-MAIL 2834665561 +1 dutch; flemish x-vnd.Be-MAIL 849531913 View Mail Bekijken %d - Date Mail %d - Datum Attach attributes: Mail Attributen bijvoegen: @@ -38,7 +38,6 @@ Save changes to this signature? Mail Veranderingen aan dit onderschrift opslaan Cc: Mail Cc: Off Mail Uit Find Mail Zoeken -Preferences… Mail Voorkeuren... Undo Mail Ongedaan maken Date: Mail Datum: An error occurred trying to open this signature. Mail Er is een fout ontstaan bij het openen van dit onderschift. diff --git a/data/catalogs/apps/mail/pl.catkeys b/data/catalogs/apps/mail/pl.catkeys index 970f29786b..a5f07e32c1 100644 --- a/data/catalogs/apps/mail/pl.catkeys +++ b/data/catalogs/apps/mail/pl.catkeys @@ -1,4 +1,4 @@ -1 polish x-vnd.Be-MAIL 2834665561 +1 polish x-vnd.Be-MAIL 849531913 View Mail Widok %d - Date Mail %d - Data Attach attributes: Mail Dołączaj atrybuty: @@ -38,7 +38,6 @@ Save changes to this signature? Mail Czy zapisać zmiany tej sygnaturki? Cc: Mail Cc: Off Mail Wyłącz Find Mail Znajdź -Preferences… Mail Ustawienia… Undo Mail Cofnij Date: Mail Data: An error occurred trying to open this signature. Mail Wystąpił błąd podczas próby otwarcia tej sygnaturki. diff --git a/data/catalogs/apps/mail/ro.catkeys b/data/catalogs/apps/mail/ro.catkeys index 147d5ab862..8d2614bdc5 100644 --- a/data/catalogs/apps/mail/ro.catkeys +++ b/data/catalogs/apps/mail/ro.catkeys @@ -1,4 +1,4 @@ -1 romanian x-vnd.Be-MAIL 1770407339 +1 romanian x-vnd.Be-MAIL 4080240987 View Mail Vizualizare %d - Date Mail %d - Dată Attach attributes: Mail Atașează atribute: @@ -36,7 +36,6 @@ Save changes to this signature? Mail Se salvează modificările la această sem Cc: Mail Cc: Off Mail Oprit Find Mail Găsește -Preferences… Mail Preferințe... Undo Mail Refă Date: Mail Dată: An error occurred trying to open this signature. Mail A apărut o eroare când s-a încercat deschiderea acestei semnături. diff --git a/data/catalogs/apps/mail/ru.catkeys b/data/catalogs/apps/mail/ru.catkeys index 0dbce3f763..f7cfc6f742 100644 --- a/data/catalogs/apps/mail/ru.catkeys +++ b/data/catalogs/apps/mail/ru.catkeys @@ -1,4 +1,4 @@ -1 russian x-vnd.Be-MAIL 2834665561 +1 russian x-vnd.Be-MAIL 3337401776 View Mail Вид %d - Date Mail %d - Дата Attach attributes: Mail Прикрепление атрибутов: @@ -27,6 +27,7 @@ Expert Mail Эксперт Reply account: Mail Ответить, используя акканут: Discard Mail Сбросить Message Mail Сообщение +Settings… Mail Настройки… Reply to sender Mail Ответить отправителю There is no installed handler for URL links. Mail Не выбрано приложение для открытия ссылок. Signature Mail Подпись @@ -38,7 +39,6 @@ Save changes to this signature? Mail Сохранить изменения в Cc: Mail Копия: Off Mail Выключить Find Mail Найти -Preferences… Mail Настройки… Undo Mail Отменить Date: Mail Дата: An error occurred trying to open this signature. Mail Возникла ошибка при попытке открытия этой подписи. diff --git a/data/catalogs/apps/mail/sk.catkeys b/data/catalogs/apps/mail/sk.catkeys index 4005250df6..420b55dd20 100644 --- a/data/catalogs/apps/mail/sk.catkeys +++ b/data/catalogs/apps/mail/sk.catkeys @@ -1,4 +1,4 @@ -1 slovak x-vnd.Be-MAIL 2834665561 +1 slovak x-vnd.Be-MAIL 849531913 View Mail Zobraziť %d - Date Mail %d - Dátum Attach attributes: Mail Pripojiť atribúty: @@ -38,7 +38,6 @@ Save changes to this signature? Mail Uložiť zmeny tohto podpisu? Cc: Mail Kópia: Off Mail Vypnúť Find Mail Nájsť -Preferences… Mail Predvoľby… Undo Mail Vrátiť Date: Mail Dátum: An error occurred trying to open this signature. Mail Vyskytla sa chyba pri pokuse otvoriť podpis. diff --git a/data/catalogs/apps/mail/sv.catkeys b/data/catalogs/apps/mail/sv.catkeys index 175c57ac59..4dd208c84a 100644 --- a/data/catalogs/apps/mail/sv.catkeys +++ b/data/catalogs/apps/mail/sv.catkeys @@ -1,4 +1,4 @@ -1 swedish x-vnd.Be-MAIL 1584464035 +1 swedish x-vnd.Be-MAIL 3894297683 View Mail Visa %d - Date Mail %d - Datum Attach attributes: Mail Bifoga attribut: @@ -30,7 +30,6 @@ There is no installed handler for URL links. Mail Det finns ingen behandlare in Signature Mail Signatur Find again Mail Sök igen Signature: Mail Signatur: -Preferences… Mail Inställningar... Undo Mail Ångra Date: Mail Datum: Paste Mail Klistra in diff --git a/data/catalogs/apps/mail/uk.catkeys b/data/catalogs/apps/mail/uk.catkeys index d30ee280fc..3acd051bcc 100644 --- a/data/catalogs/apps/mail/uk.catkeys +++ b/data/catalogs/apps/mail/uk.catkeys @@ -1,4 +1,4 @@ -1 ukrainian x-vnd.Be-MAIL 485048633 +1 ukrainian x-vnd.Be-MAIL 2794882281 View Mail Вигляд %d - Date Mail %d - Дата Attach attributes: Mail Додати атрибути: @@ -38,7 +38,6 @@ Save changes to this signature? Mail Зберегти зміни в цьому Cc: Mail Cc: Off Mail Вимкнути Find Mail Знайти -Preferences… Mail Настройки… Undo Mail Відмінити Date: Mail Дата: An error occurred trying to open this signature. Mail Помилка при спробі відкрити цей підпис. diff --git a/data/catalogs/apps/mail/zh-Hans.catkeys b/data/catalogs/apps/mail/zh-Hans.catkeys index 37f59abeed..646c13a121 100644 --- a/data/catalogs/apps/mail/zh-Hans.catkeys +++ b/data/catalogs/apps/mail/zh-Hans.catkeys @@ -1,4 +1,4 @@ -1 english x-vnd.Be-MAIL 2834665561 +1 english x-vnd.Be-MAIL 849531913 View Mail 查看 %d - Date Mail %d - 日期 Attach attributes: Mail 附加属性: @@ -38,7 +38,6 @@ Save changes to this signature? Mail 保存此样式? Cc: Mail 副本: Off Mail 关闭 Find Mail 搜索 -Preferences… Mail 首选项… Undo Mail 撤销 Date: Mail 日期: An error occurred trying to open this signature. Mail 试图打开标识出错。 diff --git a/data/catalogs/apps/mediaplayer/fr.catkeys b/data/catalogs/apps/mediaplayer/fr.catkeys index 06bcad6d2e..e5c9bcf0c1 100644 --- a/data/catalogs/apps/mediaplayer/fr.catkeys +++ b/data/catalogs/apps/mediaplayer/fr.catkeys @@ -1,4 +1,4 @@ -1 french x-vnd.Haiku-MediaPlayer 4127722853 +1 french x-vnd.Haiku-MediaPlayer 2969013755 raw audio MediaPlayer-InfoWin audio brut Location MediaPlayer-InfoWin Emplacement 1.85 : 1 (American) MediaPlayer-Main 1.85 : 1 (Panoramique américain) @@ -72,6 +72,7 @@ Stop playing. MediaPlayer-Main Arrêter la lecture. The file '%filename' could not be opened.\n\n MediaPlayer-Main Impossible d'ouvrir le fichier « %filename ».\n\n Error: MediaPlayer-RemovePLItemsCmd Erreur : Audio MediaPlayer-InfoWin Audio +Move into trash error MediaPlayer-RemovePLItemsCmd Erreur en déplaçant dans la corbeille Internal error (malformed message). Saving the playlist failed. MediaPlayer-PlaylistWindow Erreur interne (message incorrect). La liste de lecture n'a pas pu être sauvegardée. Skip to the previous track. MediaPlayer-Main Passer à la piste précédente. %app% encountered an internal error. The file could not be opened. MediaPlayer-Main %app% a rencontré une erreur interne. Le fichier n'a pas pu être ouvert. diff --git a/data/catalogs/apps/webpositive/fr.catkeys b/data/catalogs/apps/webpositive/fr.catkeys index 9bce8756f4..4450442117 100644 --- a/data/catalogs/apps/webpositive/fr.catkeys +++ b/data/catalogs/apps/webpositive/fr.catkeys @@ -1,4 +1,4 @@ -1 french x-vnd.Haiku-WebPositive 2104753528 +1 french x-vnd.Haiku-WebPositive 732657731 Show home button Settings Window Afficher le bouton de la page d'accueil Username: Authentication Panel Utilisateur : Copy URL to clipboard Download Window Copier l'URL dans le presse-papiers @@ -6,6 +6,7 @@ Cancel Settings Window Annuler Close window WebPositive Window Fermer la fenêtre Quit WebPositive Quitter The download could not be opened. Download Window Impossible d'ouvrir l'objet téléchargé. +The downloads folder could not be opened.\n\nError: %error Download Window Don't translate variable %error Le dossier de téléchargement n'a pas pu être ouvert.\n\nErreur : %error Open location WebPositive Window Ouvrir l'emplacement Clear history WebPositive Window Nettoyer l'historique WebPositive System name WebPositive @@ -54,10 +55,13 @@ Revert Settings Window Restaurer Fixed font: Settings Window Police à chasse fixe : Cut WebPositive Window Couper Bookmark this page WebPositive Window Poser un signet sur cette page +Open downloads folder Download Window Ouvrir le dossier des téléchargements +Number of days to keep links in History menu: Settings Window Nombre de jours de conservation de l'historique : Hide Download Window Cacher Reset size WebPositive Window Réinitialiser la taille Find: WebPositive Window Rechercher : Increase size WebPositive Window Augmenter la taille +There was an error retrieving the bookmark folder.\n\nError: %error WebPositive Window Don't translate the variable %error Une erreur est survenue en récupérant le dossier des signets.\n\nErreur : %error Over 1 day left Download Window Plus d'un jour restant Downloads WebPositive Window Téléchargements Requesting %url WebPositive Window Requête de %url @@ -70,6 +74,7 @@ Finish: Download Window Finishing time Fin : Fonts Settings Window Polices Close WebPositive Window Fermer OK Download Window OK +Page source error WebPositive Window Erreur dans la page source Open blank page Settings Window Ouvrir une page blanche New tabs: Settings Window Nouvel onglet : Cancel WebPositive Window Annuler @@ -111,8 +116,12 @@ Style: Font Selection view Style : General Settings Window Général View WebPositive Window Affichage Previous WebPositive Window Précédent +There was an error creating the bookmark file.\n\nError: %error WebPositive Window Don't translate variable %error Une erreur est survenue en créant le fichier de signet.\n\nErreur : %error Bookmark error WebPositive Window Erreur de signet +Do you really want to clear the browsing history? WebPositive Window Voulez-vous vraiment effacer l'historique de navigation ? Copy WebPositive Window Copier +Open bookmarks confirmation WebPositive Window Confirmation de l'ouverture des signets +Clone current page Settings Window Cloner la page actuelle OK Authentication Panel OK Copy URL Bar Copier OK WebPositive Window OK diff --git a/data/catalogs/apps/workspaces/fr.catkeys b/data/catalogs/apps/workspaces/fr.catkeys index 984d4ff80c..d3b8ff84f2 100644 --- a/data/catalogs/apps/workspaces/fr.catkeys +++ b/data/catalogs/apps/workspaces/fr.catkeys @@ -1,12 +1,15 @@ -1 french x-vnd.Be-WORK 932379173 +1 french x-vnd.Be-WORK 2548258861 Invalid argument: %s\n Workspaces Argument invalide : %s\n Quit Workspaces Quitter Workspaces System name Bureaux Change workspace count… Workspaces Changer le nombre de bureaux virtuels… +Remove replicant Workspaces Retirer les réplicants About Workspaces… Workspaces À propos de Bureaux… Workspaces\nwritten by %1, and %2.\n\nCopyright %3, Haiku.\n\nSend windows behind using the Option key. Move windows to front using the Control key.\n Workspaces Bureaux\nécrit par %1 et %2.\n\nCopyright %3, Haiku.\n\nEnvoyez les fenêtre à l'arrière-plan avec la touche Option. Envoyez les fenêtres au premier plan avec la touche Contrôle.\n Show window border Workspaces Montrer la bordure de fenêtre Auto-raise Workspaces Auto-montée OK Workspaces OK Always on top Workspaces Toujours au dessus +Live in the Deskbar Workspaces Loger dans la Deskbar Show window tab Workspaces Afficher l'onglet de la fenêtre +Usage: %s [options] [workspace]\nwhere \"options\" are:\n --notitle\t\ttitle bar removed, border and resize kept\n --noborder\t\ttitle, border, and resize removed\n --avoidfocus\t\tprevents the window from being the target of keyboard events\n --alwaysontop\t\tkeeps window on top\n --notmovable\t\twindow can't be moved around\n --autoraise\t\tauto-raise the workspace window when it's at the screen edge\n --help\t\tdisplay this help and exit\nand \"workspace\" is the number of the Workspace to which to switch (0-31)\n Workspaces Utilisation : %s [options] [bureaux]\noù les \"options\" peuvent être :\n --notitle\t\tla barre de titre est retirée, les bordures et le redimensionnement sont conservés\n --noborder\t\tla barre de titre, les bordures et le redimensionnement sont retirés\n --avoidfocus\t\tempêche que la fenêtre soit la cible des événements claviers\n --alwaysontop\t\tgarde la fenêtre au dessus\n --notmovable\t\tla fenêtre ne peut pas être déplacée\n --autoraise\t\tmonte la fenêtre des bureaux quand elle est au coin de l'écran\n --help\t\taffiche cette aide et sort\net \"bureaux\" est le nombre de bureaux virtuels parmi lesquels basculer (0-31)\n diff --git a/data/catalogs/kits/tracker/be.catkeys b/data/catalogs/kits/tracker/be.catkeys index 5a69f37dc0..cfaffa87a9 100644 --- a/data/catalogs/kits/tracker/be.catkeys +++ b/data/catalogs/kits/tracker/be.catkeys @@ -1,4 +1,4 @@ -1 belarusian x-vnd.Haiku-libtracker 1301055003 +1 belarusian x-vnd.Haiku-libtracker 2606149823 common B_COMMON_DIRECTORY агульны OK WidgetAttributeText ОК Icon view VolumeWindow Від іконак @@ -164,6 +164,7 @@ no supporting apps OpenWithWindow няма падыходзячых прагр That name is already taken. Please type another one. InfoWindow Імя ўжо занятае. Калі ласка, выберыце іншае. Sorry, you can't create links in the Trash. PoseView Прабачце, вы не можаце свараце спасылкі ў Сметніцы. An item named \"%name\" already exists in this folder, and may contain\nitems with the same names. Would you like to replace them with those contained in the folder you are %verb? FSUtils Элемент \"%name\" ужо ёсць у каталозе, і можа мясціць\nэлементы з такімі ж імёнамі. Жадаеце замяніць іх файламі з каталога, які вы %verb? +Tracker preferences… ContainerWindow Наладкі Трэкера… Link \"%name\" to: InfoWindow File dialog title for new sym link Спасылка \"%name\" на Mount settings… VolumeWindow Наладкі мантавання... Select… VolumeWindow Выбраць... @@ -378,7 +379,6 @@ Modified FindPanel Зменены Error moving \"%name\" to Trash. (%error) FSUtils Памылка пры адпраўцы \"%name\" да Сметніцы. (%error) You can't replace a folder with one of its sub-folders. FSUtils Вы не можаце замяніць каталог адным з яго падкаталогаў. FavoritesMenu <Няма нядаўніх элементаў> -Preferences… ContainerWindow Наладкі... Move PoseView Перамясціць Open and make preferred OpenWithWindow Адкрыць і зрабіць пажаданай Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Вы ўпэўненыя, что жадаеце беззваротна выдаліць выбраны(я) элемент(ы)? diff --git a/data/catalogs/kits/tracker/de.catkeys b/data/catalogs/kits/tracker/de.catkeys index cd99a1e0de..5ddf4fa7d0 100644 --- a/data/catalogs/kits/tracker/de.catkeys +++ b/data/catalogs/kits/tracker/de.catkeys @@ -1,4 +1,4 @@ -1 german x-vnd.Haiku-libtracker 1301055003 +1 german x-vnd.Haiku-libtracker 2606149823 common B_COMMON_DIRECTORY Allgemein OK WidgetAttributeText OK Icon view VolumeWindow Icon-Ansicht @@ -164,6 +164,7 @@ no supporting apps OpenWithWindow keine unterstützenden Anwendungen That name is already taken. Please type another one. InfoWindow Dieser Name wird bereits verwendet. Bitte einen anderen wählen. Sorry, you can't create links in the Trash. PoseView Im Papierkorb können leider keine Verknüpfungen erstellt werden. An item named \"%name\" already exists in this folder, and may contain\nitems with the same names. Would you like to replace them with those contained in the folder you are %verb? FSUtils Ein Objekt mit dem Namen \"%name\" existiert bereits in diesem Ordner und könnte\nObjekte mit gleichen Namen enthalten. Sollen sie mit denen des Ordners ersetzt werden, der %verb werden soll? +Tracker preferences… ContainerWindow Tracker-Einstellungen… Link \"%name\" to: InfoWindow File dialog title for new sym link Verknüpfe \"%name\" mit: Mount settings… VolumeWindow Einhänge-Einstellungen… Select… VolumeWindow Auswählen… @@ -378,7 +379,6 @@ Modified FindPanel Geändert Error moving \"%name\" to Trash. (%error) FSUtils Fehler beim Verschieben von \"%name\" in den Papierkorb. (%error) You can't replace a folder with one of its sub-folders. FSUtils Ordner können nicht mit einem seiner Unterordner ersetzt werden. FavoritesMenu -Preferences… ContainerWindow Einstellungen… Move PoseView Verschieben Open and make preferred OpenWithWindow Öffnen und zur Bevorzugten machen Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Sollen die ausgewählten Objekte wirklich gelöscht werden? Diese Aktion kann nicht rückgängig gemacht werden. diff --git a/data/catalogs/kits/tracker/el.catkeys b/data/catalogs/kits/tracker/el.catkeys index 2814be303f..3dce1bfa11 100644 --- a/data/catalogs/kits/tracker/el.catkeys +++ b/data/catalogs/kits/tracker/el.catkeys @@ -1,4 +1,4 @@ -1 greek, modern (1453-) x-vnd.Haiku-libtracker 250739144 +1 greek, modern (1453-) x-vnd.Haiku-libtracker 3595866216 common B_COMMON_DIRECTORY κοινό OK WidgetAttributeText Εντάξει Icon view VolumeWindow Προβολή εικονιδίου @@ -357,7 +357,6 @@ Modified FindPanel Τροποποιήθηκε Error moving \"%name\" to Trash. (%error) FSUtils Σφάλμα κατά τη μετακίνηση του \"%name\" στα Απορρίματα.(%error) You can't replace a folder with one of its sub-folders. FSUtils Δεν μπορείτε να αντικαταστήσετε ένα φάκελο με ένα από τους υποφακέλους του. FavoritesMenu <Κανένα πρόσφατο στοιχείο> -Preferences… ContainerWindow Προτιμήσεις... Move PoseView Μετακίνηση Open and make preferred OpenWithWindow 'Ανοιγμα και ορισμός προεπιλεγμένου Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Είστε σίγουρος οτι θέλετε να διαγράψετε τα επιλεγμένα αρχεία; Αυτή η λειτουργία δε μπορεί να αναστραφεί. diff --git a/data/catalogs/kits/tracker/fi.catkeys b/data/catalogs/kits/tracker/fi.catkeys index 0355bcedc7..2965c25ae6 100644 --- a/data/catalogs/kits/tracker/fi.catkeys +++ b/data/catalogs/kits/tracker/fi.catkeys @@ -1,4 +1,4 @@ -1 finnish x-vnd.Haiku-libtracker 1301055003 +1 finnish x-vnd.Haiku-libtracker 351214779 common B_COMMON_DIRECTORY yhteinen OK WidgetAttributeText Valmis Icon view VolumeWindow Kuvakenäkymä @@ -378,7 +378,6 @@ Modified FindPanel Muokattu Error moving \"%name\" to Trash. (%error) FSUtils Virhe siirrettäessä kohdetta ”%name” roskakoriin. (%error) You can't replace a folder with one of its sub-folders. FSUtils Et voi korvata kansiota yhdellä sen alikansioista. FavoritesMenu -Preferences… ContainerWindow Asetukset... Move PoseView Siirrä Open and make preferred OpenWithWindow Avaa ja tee ensisijaiseksi Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Oletko varma, että haluat poistaa valitut kohteet? Tätä toimintoa ei voi palauttaa. diff --git a/data/catalogs/kits/tracker/fr.catkeys b/data/catalogs/kits/tracker/fr.catkeys index 45a8c9fb4d..84b138c71b 100644 --- a/data/catalogs/kits/tracker/fr.catkeys +++ b/data/catalogs/kits/tracker/fr.catkeys @@ -1,4 +1,4 @@ -1 french x-vnd.Haiku-libtracker 1301055003 +1 french x-vnd.Haiku-libtracker 2606149823 common B_COMMON_DIRECTORY commun OK WidgetAttributeText OK Icon view VolumeWindow Vue en icônes @@ -164,6 +164,7 @@ no supporting apps OpenWithWindow aucune application apte That name is already taken. Please type another one. InfoWindow Ce nom est déjà utilisé. Veuillez en saisir un autre. Sorry, you can't create links in the Trash. PoseView Désolé, vous ne pouvez pas créer des liens dans la Corbeille. An item named \"%name\" already exists in this folder, and may contain\nitems with the same names. Would you like to replace them with those contained in the folder you are %verb? FSUtils Un élément nommé « %name » existe déjà dans ce dossier, et peut contenir\ndes éléments de même noms. Voulez vous les remplacer par ceux contenu dans le dossier que vous êtes en train de %verb ? +Tracker preferences… ContainerWindow Préférences du Tracker… Link \"%name\" to: InfoWindow File dialog title for new sym link Lier « %name » à : Mount settings… VolumeWindow Réglages du montage… Select… VolumeWindow Sélectionner… @@ -378,7 +379,6 @@ Modified FindPanel Modifié Error moving \"%name\" to Trash. (%error) FSUtils Erreur en envoyant « %name » à la Corbeille. (%error) You can't replace a folder with one of its sub-folders. FSUtils Vous ne pouvez pas remplacer un dossier par l'un de ses sous-dossiers. FavoritesMenu -Preferences… ContainerWindow Préférences… Move PoseView Déplacer Open and make preferred OpenWithWindow Ouvrir et en faire la préférence Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Êtes vous sûr de vouloir supprimer l(es) élément(s) sélectionné(s) ? Cette opération est irrémédiable. diff --git a/data/catalogs/kits/tracker/hi.catkeys b/data/catalogs/kits/tracker/hi.catkeys index d988106840..4d2d230103 100644 --- a/data/catalogs/kits/tracker/hi.catkeys +++ b/data/catalogs/kits/tracker/hi.catkeys @@ -1,4 +1,4 @@ -1 hindi x-vnd.Haiku-libtracker 2988504432 +1 hindi x-vnd.Haiku-libtracker 2038664208 common B_COMMON_DIRECTORY सामान्य OK WidgetAttributeText ठीक है Icon view VolumeWindow चिह्न दृश्य @@ -360,7 +360,6 @@ Modified FindPanel संशोधित किया गया Error moving \"%name\" to Trash. (%error) FSUtils जाने में त्रुटि \"%name\" रद्दी में. (%error) You can't replace a folder with one of its sub-folders. FSUtils आप इस फ़ोल्डर की जगह इस के उप फ़ोल्डर नहीं डाल सकते. FavoritesMenu <कोई हाल के आइटम नहीं> -Preferences… ContainerWindow वरीयताएँ... Move PoseView जाए Open and make preferred OpenWithWindow खोलें और फिर पसंद करें Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils आप सुनिश्चित हैं कि आप चयनित मद (s) को मिटाना चाहते हैं? इस आपरेशन को लौटाया नहीं जा सकता diff --git a/data/catalogs/kits/tracker/ja.catkeys b/data/catalogs/kits/tracker/ja.catkeys index 0009beeeda..11f9b32079 100644 --- a/data/catalogs/kits/tracker/ja.catkeys +++ b/data/catalogs/kits/tracker/ja.catkeys @@ -1,4 +1,4 @@ -1 japanese x-vnd.Haiku-libtracker 1680698556 +1 japanese x-vnd.Haiku-libtracker 730858332 OK WidgetAttributeText OK Icon view VolumeWindow アイコン表示 Add-ons FilePanelPriv アドオン @@ -373,7 +373,6 @@ Modified FindPanel 更新日時 Error moving \"%name\" to Trash. (%error) FSUtils \"%name\" をごみ箱に捨てようとしたら、エラーが発生しました。(%error) You can't replace a folder with one of its sub-folders. FSUtils サブフォルダーを同名のフォルダーと置き換えられません。 FavoritesMenu <最近使った項目はありません> -Preferences… ContainerWindow 設定… Move PoseView 移動 Open and make preferred OpenWithWindow 関連づけて開く Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils 選択した項目を削除してもよろしいですか?削除した項目は復元できませんので、ご注意ください。 diff --git a/data/catalogs/kits/tracker/lt.catkeys b/data/catalogs/kits/tracker/lt.catkeys index 9451bae812..ca856c8c26 100644 --- a/data/catalogs/kits/tracker/lt.catkeys +++ b/data/catalogs/kits/tracker/lt.catkeys @@ -1,4 +1,4 @@ -1 lithuanian x-vnd.Haiku-libtracker 1868621245 +1 lithuanian x-vnd.Haiku-libtracker 918781021 common B_COMMON_DIRECTORY Bendra OK WidgetAttributeText Gerai Icon view VolumeWindow Rodyti piktogramas @@ -367,7 +367,6 @@ Modified FindPanel Modifikavimo data Error moving \"%name\" to Trash. (%error) FSUtils Klaida perkeliant „%name“ į Šiukšlinę (%error) You can't replace a folder with one of its sub-folders. FSUtils Aplanko pakeisti vienu jo poaplankių negalima. FavoritesMenu -Preferences… ContainerWindow Nuostatos… Move PoseView Perkelti Open and make preferred OpenWithWindow Atverti ir laikyti numatytąja Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Ar tikrai norite pašalinti pažymėtus objektus? Neužmirškite, jog šis veiksmas negrįžtamas. diff --git a/data/catalogs/kits/tracker/nb.catkeys b/data/catalogs/kits/tracker/nb.catkeys index 6e99a2015b..fae93afeb1 100644 --- a/data/catalogs/kits/tracker/nb.catkeys +++ b/data/catalogs/kits/tracker/nb.catkeys @@ -1,4 +1,4 @@ -1 bokmål, norwegian; norwegian bokmål x-vnd.Haiku-libtracker 1776686592 +1 bokmål, norwegian; norwegian bokmål x-vnd.Haiku-libtracker 826846368 common B_COMMON_DIRECTORY felles OK WidgetAttributeText OK Icon view VolumeWindow Ikonvisning @@ -362,7 +362,6 @@ Modified FindPanel Endret Error moving \"%name\" to Trash. (%error) FSUtils Feil ved flytting av \"%name\" til søppelkurv. (%error) You can't replace a folder with one of its sub-folders. FSUtils Du kan ikke erstatte en mappe med en av sine undermapper. FavoritesMenu -Preferences… ContainerWindow Innstillinger... Move PoseView Flytt Open and make preferred OpenWithWindow Åpne og gjør til standard Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Er du sikker på at du vil slette valgte element(er)? Du kan ikke angre på denne handlingen. diff --git a/data/catalogs/kits/tracker/nl.catkeys b/data/catalogs/kits/tracker/nl.catkeys index f23c9932b2..9b413830be 100644 --- a/data/catalogs/kits/tracker/nl.catkeys +++ b/data/catalogs/kits/tracker/nl.catkeys @@ -1,4 +1,4 @@ -1 dutch; flemish x-vnd.Haiku-libtracker 1294519032 +1 dutch; flemish x-vnd.Haiku-libtracker 344678808 common B_COMMON_DIRECTORY algemeen OK WidgetAttributeText OK Icon view VolumeWindow Icoonweergave @@ -363,7 +363,6 @@ Modified FindPanel Gewijzigd Error moving \"%name\" to Trash. (%error) FSUtils Fout bij het verplaatsen van \"%name\" naar de prullenbak. (%error) You can't replace a folder with one of its sub-folders. FSUtils U kunt een map niet vervangen door een van zijn submappen. FavoritesMenu -Preferences… ContainerWindow Voorkeuren... Move PoseView Verplaatsen Open and make preferred OpenWithWindow Openen en bevoorkeuren Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Bent u zeker dat u het/de geselecteerde item(s) wilt verwijderen? Deze actie kan niet ongedaan gemaakt worden. diff --git a/data/catalogs/kits/tracker/pl.catkeys b/data/catalogs/kits/tracker/pl.catkeys index 44cced418b..3481e974cb 100644 --- a/data/catalogs/kits/tracker/pl.catkeys +++ b/data/catalogs/kits/tracker/pl.catkeys @@ -1,4 +1,4 @@ -1 polish x-vnd.Haiku-libtracker 1868621245 +1 polish x-vnd.Haiku-libtracker 918781021 common B_COMMON_DIRECTORY common OK WidgetAttributeText OK Icon view VolumeWindow Widok ikon @@ -367,7 +367,6 @@ Modified FindPanel Zmodyfikowano Error moving \"%name\" to Trash. (%error) FSUtils Błąd przy przenoszeniu \"%name\" do Kosza. (%error) You can't replace a folder with one of its sub-folders. FSUtils Nie możesz podmienić folderu jednym z jego podfolderów. FavoritesMenu -Preferences… ContainerWindow Ustawienia… Move PoseView Przenieś Open and make preferred OpenWithWindow Otwórz i zaznacz jako preferowane Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Jesteś pewien, że chcesz usunąć zaznaczone obiekty? Ta operacja nie może być cofnięta. diff --git a/data/catalogs/kits/tracker/ro.catkeys b/data/catalogs/kits/tracker/ro.catkeys index 4bb000af66..436628348b 100644 --- a/data/catalogs/kits/tracker/ro.catkeys +++ b/data/catalogs/kits/tracker/ro.catkeys @@ -1,4 +1,4 @@ -1 romanian x-vnd.Haiku-libtracker 65899779 +1 romanian x-vnd.Haiku-libtracker 3411026851 OK WidgetAttributeText OK Icon view VolumeWindow Vizualizare pictogramă Add-ons FilePanelPriv Module @@ -298,7 +298,6 @@ Name QueryPoseView Nume Delete FSUtils Șterge Modified FindPanel Modificat You can't replace a folder with one of its sub-folders. FSUtils Nu puteți înlocui un dosar cu unul din subdosarele acestuia. -Preferences… ContainerWindow Preferințe... Move PoseView Mută Open and make preferred OpenWithWindow Deschide sau fixează ca preferat Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Sigur doriți să ștergeți elementul(ele) selectat(e)? Această operație nu poate fi inversată. diff --git a/data/catalogs/kits/tracker/ru.catkeys b/data/catalogs/kits/tracker/ru.catkeys index 8687c011ee..eb50b9da58 100644 --- a/data/catalogs/kits/tracker/ru.catkeys +++ b/data/catalogs/kits/tracker/ru.catkeys @@ -1,4 +1,4 @@ -1 russian x-vnd.Haiku-libtracker 853863347 +1 russian x-vnd.Haiku-libtracker 2158958167 common B_COMMON_DIRECTORY Общие OK WidgetAttributeText ОК Icon view VolumeWindow Большие значки @@ -161,6 +161,7 @@ no supporting apps OpenWithWindow нет поддерживающих прог That name is already taken. Please type another one. InfoWindow Это имя уже занято. Пожалуйста, введите другое. Sorry, you can't create links in the Trash. PoseView Извините, но вы не можете создавать ссылки в корзине. An item named \"%name\" already exists in this folder, and may contain\nitems with the same names. Would you like to replace them with those contained in the folder you are %verb? FSUtils Папка \"%name\" уже существует.\nЗаменить существующие файлы при совпадении имён? +Tracker preferences… ContainerWindow Настройки Tracker… Link \"%name\" to: InfoWindow File dialog title for new sym link Ссылка \"%name\" на: Mount settings… VolumeWindow Настройка подключения дисков… Select… VolumeWindow Выделить… @@ -374,7 +375,6 @@ Modified FindPanel Изменён Error moving \"%name\" to Trash. (%error) FSUtils Ошибка при перемещении \"%name\" в корзину. (%error) You can't replace a folder with one of its sub-folders. FSUtils Невозможно заменить папку её же собственной подпапкой. FavoritesMenu <Нет недавних объектов> -Preferences… ContainerWindow Настройки… Move PoseView Переместить Open and make preferred OpenWithWindow Открыть и сделать предпочтительным Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Вы уверены, что хотите удалить выделенные объекты? Эту операцию будет невозможно отменить. diff --git a/data/catalogs/kits/tracker/sk.catkeys b/data/catalogs/kits/tracker/sk.catkeys index dfa5c9bd17..ba15d0f0a8 100644 --- a/data/catalogs/kits/tracker/sk.catkeys +++ b/data/catalogs/kits/tracker/sk.catkeys @@ -1,4 +1,4 @@ -1 slovak x-vnd.Haiku-libtracker 1574172506 +1 slovak x-vnd.Haiku-libtracker 624332282 common B_COMMON_DIRECTORY spoločné OK WidgetAttributeText OK Icon view VolumeWindow Zobrazenie ikon @@ -377,7 +377,6 @@ Modified FindPanel Zmenené Error moving \"%name\" to Trash. (%error) FSUtils Chyba pri presúvaní „%name“ do Koša. (%error) You can't replace a folder with one of its sub-folders. FSUtils Nemôžete nahradiť priečinok jedným z jeho podpriečinkov. FavoritesMenu <Žiadne nedávne položky> -Preferences… ContainerWindow Predvoľby… Move PoseView Presunúť Open and make preferred OpenWithWindow Otvoriť a nastaviť ako preferovanú Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Ste si istí, že chcete zmazať vybrané položky? Túto operáciu nemožno vrátiť. diff --git a/data/catalogs/kits/tracker/sv.catkeys b/data/catalogs/kits/tracker/sv.catkeys index 98890cc347..41840e7b97 100644 --- a/data/catalogs/kits/tracker/sv.catkeys +++ b/data/catalogs/kits/tracker/sv.catkeys @@ -1,4 +1,4 @@ -1 swedish x-vnd.Haiku-libtracker 2663284831 +1 swedish x-vnd.Haiku-libtracker 1713444607 common B_COMMON_DIRECTORY gemensam OK WidgetAttributeText OK Icon view VolumeWindow Ikonvy @@ -372,7 +372,6 @@ Modified FindPanel Modifierad Error moving \"%name\" to Trash. (%error) FSUtils Fel vid flytt av "%name" till Papperskorgen. (%error) You can't replace a folder with one of its sub-folders. FSUtils Du kan inte ersätta en katalog med en av dess underkataloger. FavoritesMenu -Preferences… ContainerWindow Inställningar… Move PoseView Flytta Open and make preferred OpenWithWindow Öppna och gör till förval Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Är du säker på att du vill radera de valda objekten? Denna operation kan inte ångras. diff --git a/data/catalogs/kits/tracker/uk.catkeys b/data/catalogs/kits/tracker/uk.catkeys index db39b00d00..c78b042977 100644 --- a/data/catalogs/kits/tracker/uk.catkeys +++ b/data/catalogs/kits/tracker/uk.catkeys @@ -1,4 +1,4 @@ -1 ukrainian x-vnd.Haiku-libtracker 335362992 +1 ukrainian x-vnd.Haiku-libtracker 3680490064 common B_COMMON_DIRECTORY common OK WidgetAttributeText Гаразд Icon view VolumeWindow У вигляді іконок @@ -362,7 +362,6 @@ Modified FindPanel Змінений Error moving \"%name\" to Trash. (%error) FSUtils Помилка переміщення \"%name\" до Кошика. (%error) You can't replace a folder with one of its sub-folders. FSUtils Ви не можете замінити папку однією з вкладених папок. FavoritesMenu <Немає недавніх елементів> -Preferences… ContainerWindow Настройки… Move PoseView Перемістити Open and make preferred OpenWithWindow Відкрити і зробити бажаним Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Ви впевнені що хочете видалити вибрані елементи? Ця операція необоротна diff --git a/data/catalogs/kits/tracker/zh-Hans.catkeys b/data/catalogs/kits/tracker/zh-Hans.catkeys index 778fbe9f5b..179a3c5c7f 100644 --- a/data/catalogs/kits/tracker/zh-Hans.catkeys +++ b/data/catalogs/kits/tracker/zh-Hans.catkeys @@ -1,4 +1,4 @@ -1 english x-vnd.Haiku-libtracker 4242202911 +1 english x-vnd.Haiku-libtracker 3292362687 common B_COMMON_DIRECTORY 常用 OK WidgetAttributeText 确定 Icon view VolumeWindow 图标视图 @@ -363,7 +363,6 @@ Modified FindPanel 修改 Error moving \"%name\" to Trash. (%error) FSUtils 移动 \"%name\" 到垃圾箱出错。(%error) You can't replace a folder with one of its sub-folders. FSUtils 您无法替换目录为其子目录。 FavoritesMenu <无最近项目> -Preferences… ContainerWindow 首选项... Move PoseView 移动 Open and make preferred OpenWithWindow 打开并创建首选 Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils 您确定要删除选中项目?该操作将无法恢复。 diff --git a/data/catalogs/preferences/mail/fr.catkeys b/data/catalogs/preferences/mail/fr.catkeys index afd656d3a4..f9d175b53c 100644 --- a/data/catalogs/preferences/mail/fr.catkeys +++ b/data/catalogs/preferences/mail/fr.catkeys @@ -1,4 +1,4 @@ -1 french x-vnd.Haiku-Mail 3624866527 +1 french x-vnd.Haiku-Mail 2592587573 Mail checking Config Window Levée du courrier Settings Config Window Réglages Never Config Window show status window Jamais @@ -14,6 +14,7 @@ Account name: E-Mail Nom du compte : Account name: Config Views Nom du compte : Create new account AutoConfigWindow Créé un nouveau compte OK Config Views OK +The filter could not be moved. Deleting filter. Config Views Le filtre n'a pas pu être déplacé. Suppression du filtre. Revert Config Window Rétablir Login name: E-Mail Nom de connexion : Incoming E-Mail En arrivée diff --git a/data/catalogs/servers/mail/be.catkeys b/data/catalogs/servers/mail/be.catkeys index d3be2dee8c..1143825f1a 100644 --- a/data/catalogs/servers/mail/be.catkeys +++ b/data/catalogs/servers/mail/be.catkeys @@ -1,4 +1,4 @@ -1 belarusian x-vnd.Be-POST 2300302075 +1 belarusian x-vnd.Be-POST 1091177030 Fetching mail for %name Notifier Атрымліваю пошту для %name Check for mails only DeskbarView Толькі праверыць пошту Send pending mails DeskbarView Даслаць паведамленні што чакаюць @@ -9,7 +9,6 @@ Mail status MailDaemon Статус Пошты Shutdown mail services DeskbarView Спыніць паштовыя службы %num new message DeskbarView %num новае паведамленне Sending mail for %name Notifier Дасылаю пошту для %name -Preferences… DeskbarView Наладкі… %num new messages. MailDaemon %num новых паведамленняў. %num new message. MailDaemon %num новае паведамленне. Create new message… DeskbarView Стварыць новае паведамленне… @@ -19,5 +18,6 @@ Check for mail now DeskbarView Праверыць пошту No new messages DeskbarView Няма новых паведамленняў %num new messages for %name\n MailDaemon %num новых паведамленняў для %name\n Mail daemon status log MailDaemon Пратакол паштовай службы +Settings… DeskbarView Наладкі… No new messages. MailDaemon Няма новых паведамленняў. Mail status Notifier Статус пошты diff --git a/data/catalogs/servers/mail/de.catkeys b/data/catalogs/servers/mail/de.catkeys index d408bb8ef0..6811df87ee 100644 --- a/data/catalogs/servers/mail/de.catkeys +++ b/data/catalogs/servers/mail/de.catkeys @@ -1,4 +1,4 @@ -1 german x-vnd.Be-POST 2300302075 +1 german x-vnd.Be-POST 1091177030 Fetching mail for %name Notifier E-Mails für %name abrufen Check for mails only DeskbarView E-Mails nur abrufen für Send pending mails DeskbarView E-Mails senden @@ -9,7 +9,6 @@ Mail status MailDaemon E-Mail-Status Shutdown mail services DeskbarView E-Mail-Dienst ausschalten %num new message DeskbarView %num neue Nachricht Sending mail for %name Notifier E-Mails von %name senden -Preferences… DeskbarView Einstellungen… %num new messages. MailDaemon %num neue Nachrichten. %num new message. MailDaemon %num neue Nachricht. Create new message… DeskbarView Nachricht verfassen… @@ -19,5 +18,6 @@ Check for mail now DeskbarView E-Mails jetzt abrufen No new messages DeskbarView Keine neuen Nachrichten %num new messages for %name\n MailDaemon %num neue Nachrichten für %name\n Mail daemon status log MailDaemon E-Mail-Dienst Statusmeldungen +Settings… DeskbarView Einstellungen… No new messages. MailDaemon Keine neuen Nachrichten. Mail status Notifier Email-Status diff --git a/data/catalogs/servers/mail/el.catkeys b/data/catalogs/servers/mail/el.catkeys index c89b9bc030..efb5ebbb3e 100644 --- a/data/catalogs/servers/mail/el.catkeys +++ b/data/catalogs/servers/mail/el.catkeys @@ -1,4 +1,4 @@ -1 greek, modern (1453-) x-vnd.Be-POST 2300302075 +1 greek, modern (1453-) x-vnd.Be-POST 2566871483 Fetching mail for %name Notifier Κατέβασμα μηνυμάτων από %name Check for mails only DeskbarView Ελεγχος για νέα μηνύματα μόνο Send pending mails DeskbarView Αποστολή αλληλογραφίας στην ουρά @@ -9,7 +9,6 @@ Mail status MailDaemon Κατάσταση αλληλογραφίας Shutdown mail services DeskbarView Κλείσιμο υπηρεσιών αλληλογραφίας %num new message DeskbarView %num νέο μήνυμα Sending mail for %name Notifier Αποστολή μηνύματος από %name -Preferences… DeskbarView Επιλογές... %num new messages. MailDaemon %num καινούργια μηνύματα. %num new message. MailDaemon %num καινούργια μηνύματα. Create new message… DeskbarView Δημιουργία μηνύματος... diff --git a/data/catalogs/servers/mail/fi.catkeys b/data/catalogs/servers/mail/fi.catkeys index fce0108e63..470ed46510 100644 --- a/data/catalogs/servers/mail/fi.catkeys +++ b/data/catalogs/servers/mail/fi.catkeys @@ -1,4 +1,4 @@ -1 finnish x-vnd.Be-POST 2300302075 +1 finnish x-vnd.Be-POST 2566871483 Fetching mail for %name Notifier Noudetaan sähköpostia vastaanottajalle %name Check for mails only DeskbarView Tarkista vain sähköpostit Send pending mails DeskbarView Lähetä odottamassa olevat sähköpostit @@ -9,7 +9,6 @@ Mail status MailDaemon Sähköpostitila Shutdown mail services DeskbarView Sulje sähköpostipalvelut %num new message DeskbarView %num uusi viesti Sending mail for %name Notifier Lähetetään sähköpostia vastaanottajalle %name -Preferences… DeskbarView Asetukset... %num new messages. MailDaemon %num uutta viestiä. %num new message. MailDaemon %num uusi viesti. Create new message… DeskbarView Luo uusi viesti... diff --git a/data/catalogs/servers/mail/fr.catkeys b/data/catalogs/servers/mail/fr.catkeys index 12cd45ca76..e97b17b9ed 100644 --- a/data/catalogs/servers/mail/fr.catkeys +++ b/data/catalogs/servers/mail/fr.catkeys @@ -1,4 +1,4 @@ -1 french x-vnd.Be-POST 677638342 +1 french x-vnd.Be-POST 1091177030 Fetching mail for %name Notifier Récupération des mails de %name Check for mails only DeskbarView Vérifier seulement les courriels Send pending mails DeskbarView Envoyer les courriels en attente @@ -9,7 +9,6 @@ Mail status MailDaemon État du courrier Shutdown mail services DeskbarView Arrêter les services de messagerie %num new message DeskbarView %num nouveau message Sending mail for %name Notifier Envoi des mails de %name -Preferences… DeskbarView Préférences… %num new messages. MailDaemon %num nouveaux messages. %num new message. MailDaemon %num nouveau message. Create new message… DeskbarView Créer un nouveau message… @@ -18,4 +17,7 @@ No new messages MailDaemon Aucun nouveau message Check for mail now DeskbarView Vérifier les courriels maintenant No new messages DeskbarView Aucun nouveau message %num new messages for %name\n MailDaemon %num nouveaux messages pour %name\n +Mail daemon status log MailDaemon Journal d'état du démon de courrier +Settings… DeskbarView Réglages… No new messages. MailDaemon Aucun nouveau message. +Mail status Notifier État du courrier diff --git a/data/catalogs/servers/mail/hi.catkeys b/data/catalogs/servers/mail/hi.catkeys index 35fee32976..842a3c49ce 100644 --- a/data/catalogs/servers/mail/hi.catkeys +++ b/data/catalogs/servers/mail/hi.catkeys @@ -1,4 +1,4 @@ -1 hindi x-vnd.Be-POST 2300302075 +1 hindi x-vnd.Be-POST 2566871483 Fetching mail for %name Notifier मेल खोज रहें है %name Check for mails only DeskbarView केवल मेंल के लिए चेक करें Send pending mails DeskbarView बची हुई मेल को भेजें @@ -9,7 +9,6 @@ Mail status MailDaemon मेल की स्थति Shutdown mail services DeskbarView मिल सर्विसेस बंद कर दीजिए %num new message DeskbarView %num नया सन्देश Sending mail for %name Notifier मेल भेज रहें है %name -Preferences… DeskbarView वरीयताएँ... %num new messages. MailDaemon %num नया सन्देश. %num new message. MailDaemon %num नया सन्देश. Create new message… DeskbarView नया सन्देश बनाने के लिए diff --git a/data/catalogs/servers/mail/ja.catkeys b/data/catalogs/servers/mail/ja.catkeys index 2c0f7740b0..726f03e81a 100644 --- a/data/catalogs/servers/mail/ja.catkeys +++ b/data/catalogs/servers/mail/ja.catkeys @@ -1,4 +1,4 @@ -1 japanese x-vnd.Be-POST 2300302075 +1 japanese x-vnd.Be-POST 1091177030 Fetching mail for %name Notifier %name からのメールを受信中 Check for mails only DeskbarView メール受信のみ Send pending mails DeskbarView 保留メールを送信 @@ -9,7 +9,6 @@ Mail status MailDaemon メールの状況 Shutdown mail services DeskbarView 終了 %num new message DeskbarView %num 通の新着メッセージがあります Sending mail for %name Notifier %name へのメールを送信中 -Preferences… DeskbarView メールの設定 %num new messages. MailDaemon %num 通の新着メッセージがあります。 %num new message. MailDaemon %num 通の新着メッセージがあります。 Create new message… DeskbarView 新規メッセージ作成 @@ -19,5 +18,6 @@ Check for mail now DeskbarView 今すぐメールをチェック No new messages DeskbarView 新着メッセージはありません %num new messages for %name\n MailDaemon %name より %num 通のメッセージが届きました\n Mail daemon status log MailDaemon メールデーモン状況ログ +Settings… DeskbarView 設定… No new messages. MailDaemon 新着メッセージはありません。 Mail status Notifier メールの状況 diff --git a/data/catalogs/servers/mail/lt.catkeys b/data/catalogs/servers/mail/lt.catkeys index 453adca4a4..a9935d1f5e 100644 --- a/data/catalogs/servers/mail/lt.catkeys +++ b/data/catalogs/servers/mail/lt.catkeys @@ -1,4 +1,4 @@ -1 lithuanian x-vnd.Be-POST 2300302075 +1 lithuanian x-vnd.Be-POST 2566871483 Fetching mail for %name Notifier Gaunami %name laiškai Check for mails only DeskbarView Tik patikrinti laiškus Send pending mails DeskbarView Išsiųsti eilėje esančius laiškus @@ -9,7 +9,6 @@ Mail status MailDaemon Pašto būsena Shutdown mail services DeskbarView Išjungti el. pašto tarnybą %num new message DeskbarView Naujų laiškų: %num Sending mail for %name Notifier Siunčiami %name laiškai -Preferences… DeskbarView Nuostatos… %num new messages. MailDaemon Naujų laiškų: %num. %num new message. MailDaemon Naujų laiškų: %num. Create new message… DeskbarView Rašyti laišką… diff --git a/data/catalogs/servers/mail/nl.catkeys b/data/catalogs/servers/mail/nl.catkeys index 11bebbba5c..135d3db8c6 100644 --- a/data/catalogs/servers/mail/nl.catkeys +++ b/data/catalogs/servers/mail/nl.catkeys @@ -1,4 +1,4 @@ -1 dutch; flemish x-vnd.Be-POST 2300302075 +1 dutch; flemish x-vnd.Be-POST 2566871483 Fetching mail for %name Notifier Mail ophalen voor %name Check for mails only DeskbarView Alleen mails controleren Send pending mails DeskbarView Mails in wachtrij verzenden @@ -9,7 +9,6 @@ Mail status MailDaemon Mailstatus Shutdown mail services DeskbarView Mailservices afsluiten %num new message DeskbarView %num nieuwe berichten Sending mail for %name Notifier Mail voor %name versturen -Preferences… DeskbarView Voorkeuren... %num new messages. MailDaemon %num nieuwe berichten. %num new message. MailDaemon %num nieuw bericht. Create new message… DeskbarView Een nieuw bericht opstellen... diff --git a/data/catalogs/servers/mail/pl.catkeys b/data/catalogs/servers/mail/pl.catkeys index e65bec89cd..dfde1f427f 100644 --- a/data/catalogs/servers/mail/pl.catkeys +++ b/data/catalogs/servers/mail/pl.catkeys @@ -1,4 +1,4 @@ -1 polish x-vnd.Be-POST 2300302075 +1 polish x-vnd.Be-POST 2566871483 Fetching mail for %name Notifier Pobieranie poczty dla %name Check for mails only DeskbarView Sprawdź tylko pocztę Send pending mails DeskbarView Wyślij oczekującą pocztę @@ -9,7 +9,6 @@ Mail status MailDaemon Status poczty Shutdown mail services DeskbarView Wyłącz usługi poczty %num new message DeskbarView %num nowa wiadomość Sending mail for %name Notifier Wysyłanie poczty dla %name -Preferences… DeskbarView Preferencje… %num new messages. MailDaemon %num nowych wiadomości. %num new message. MailDaemon %num nowa wiadomość. Create new message… DeskbarView Utwórz nową wiadomość… diff --git a/data/catalogs/servers/mail/ro.catkeys b/data/catalogs/servers/mail/ro.catkeys index b1f1da914a..26c83fd13e 100644 --- a/data/catalogs/servers/mail/ro.catkeys +++ b/data/catalogs/servers/mail/ro.catkeys @@ -1,4 +1,4 @@ -1 romanian x-vnd.Be-POST 2300302075 +1 romanian x-vnd.Be-POST 2566871483 Fetching mail for %name Notifier Se primește emailul pentru %name Check for mails only DeskbarView Verifică doar pentru emailuri Send pending mails DeskbarView Trimite emailurile în așteptare @@ -9,7 +9,6 @@ Mail status MailDaemon Stare email Shutdown mail services DeskbarView Oprește serviciile de email %num new message DeskbarView %num de mesaje noi Sending mail for %name Notifier Se trimite emailul pentru %name -Preferences… DeskbarView Preferințe... %num new messages. MailDaemon %num mesaje noi. %num new message. MailDaemon %num mesaj nou. Create new message… DeskbarView Creează mesaj nou... diff --git a/data/catalogs/servers/mail/ru.catkeys b/data/catalogs/servers/mail/ru.catkeys index 1c2c91179a..1b162e2c38 100644 --- a/data/catalogs/servers/mail/ru.catkeys +++ b/data/catalogs/servers/mail/ru.catkeys @@ -1,4 +1,4 @@ -1 russian x-vnd.Be-POST 734840027 +1 russian x-vnd.Be-POST 1091177030 Fetching mail for %name Notifier Получение почты для %name Check for mails only DeskbarView Только проверить почту Send pending mails DeskbarView Отправить почту в ожидании @@ -6,6 +6,7 @@ New Messages MailDaemon Новые сообщения DeskbarView <нет аккаунтов> %num new messages DeskbarView %num новых сообщений Mail status MailDaemon Статус почты +Shutdown mail services DeskbarView Выключить почтовые службы %num new message DeskbarView %num новое сообщение Sending mail for %name Notifier Отправка почты для %name %num new messages. MailDaemon %num новых сообщений. @@ -16,5 +17,7 @@ No new messages MailDaemon Нет новых сообщений Check for mail now DeskbarView Проверить почту No new messages DeskbarView Нет новых сообщений %num new messages for %name\n MailDaemon У вас есть %num новых сообщений для %name\n +Mail daemon status log MailDaemon Журнал почтового демона +Settings… DeskbarView Настройки… No new messages. MailDaemon Нет новых сообщений. Mail status Notifier Статус почты diff --git a/data/catalogs/servers/mail/sk.catkeys b/data/catalogs/servers/mail/sk.catkeys index 682f8b58fc..c21e517821 100644 --- a/data/catalogs/servers/mail/sk.catkeys +++ b/data/catalogs/servers/mail/sk.catkeys @@ -1,4 +1,4 @@ -1 slovak x-vnd.Be-POST 2300302075 +1 slovak x-vnd.Be-POST 2566871483 Fetching mail for %name Notifier Sťahuje sa pošta účtu %name Check for mails only DeskbarView Iba skontrolovať poštu Send pending mails DeskbarView Poslať čakajúcu poštu @@ -9,7 +9,6 @@ Mail status MailDaemon Stav pošty Shutdown mail services DeskbarView Vypnúť poštové služby %num new message DeskbarView %num nová správa Sending mail for %name Notifier Posiela sa pošta účtu %name -Preferences… DeskbarView Nastavenia… %num new messages. MailDaemon %num nových správ. %num new message. MailDaemon %num nová správa. Create new message… DeskbarView Vytvoriť novú správu… diff --git a/data/catalogs/servers/mail/sv.catkeys b/data/catalogs/servers/mail/sv.catkeys index e3d250508d..2453e58856 100644 --- a/data/catalogs/servers/mail/sv.catkeys +++ b/data/catalogs/servers/mail/sv.catkeys @@ -1,4 +1,4 @@ -1 swedish x-vnd.Be-POST 2300302075 +1 swedish x-vnd.Be-POST 2566871483 Fetching mail for %name Notifier Hämtar e-post för %name Check for mails only DeskbarView Kontrollera bara e-post Send pending mails DeskbarView Skicka väntande meddelanden @@ -9,7 +9,6 @@ Mail status MailDaemon E-post status Shutdown mail services DeskbarView Stäng av e-posttjänsterna %num new message DeskbarView %num nytt meddelande Sending mail for %name Notifier Skickar e-post för %name -Preferences… DeskbarView Inställningar... %num new messages. MailDaemon %num nya meddelanden. %num new message. MailDaemon %num nytt meddelande. Create new message… DeskbarView Skapa nytt meddelande... diff --git a/data/catalogs/servers/mail/uk.catkeys b/data/catalogs/servers/mail/uk.catkeys index 5e1378a668..ca86c2cdd3 100644 --- a/data/catalogs/servers/mail/uk.catkeys +++ b/data/catalogs/servers/mail/uk.catkeys @@ -1,4 +1,4 @@ -1 ukrainian x-vnd.Be-POST 2300302075 +1 ukrainian x-vnd.Be-POST 2566871483 Fetching mail for %name Notifier Отримання пошти для %name Check for mails only DeskbarView Перевірити тільки пошту Send pending mails DeskbarView Відправити чергову пошту @@ -9,7 +9,6 @@ Mail status MailDaemon Стан пошти Shutdown mail services DeskbarView Закрити поштові сервіси %num new message DeskbarView %num нов. повід. Sending mail for %name Notifier Відправка пошти для %name -Preferences… DeskbarView Настройки… %num new messages. MailDaemon %num нових повід. %num new message. MailDaemon %num нове повідомлення. Create new message… DeskbarView Створити нове повідомлення… diff --git a/data/etc/profile b/data/etc/profile index a6548080c1..e61bbc89fa 100644 --- a/data/etc/profile +++ b/data/etc/profile @@ -24,7 +24,7 @@ export LC_COLLATE=$LC_MESSAGES export LC_CTYPE=$LC_MESSAGES export LC_MONETARY=$LC_NUMERIC -alias ls="ls --color" +alias ls="ls --color=auto" alias ll="ls -lA" alias la="ls -A" alias m="more" diff --git a/data/etc/profile.d/colorgrep.sh b/data/etc/profile.d/colorgrep.sh new file mode 100644 index 0000000000..ada2d65092 --- /dev/null +++ b/data/etc/profile.d/colorgrep.sh @@ -0,0 +1,3 @@ +alias egrep='egrep --color=auto' +alias fgrep='fgrep --color=auto' +alias grep='grep --color=auto' diff --git a/data/etc/profile.d/colorls.sh b/data/etc/profile.d/colorls.sh new file mode 100644 index 0000000000..6d6784aff5 --- /dev/null +++ b/data/etc/profile.d/colorls.sh @@ -0,0 +1,17 @@ +# +# colorls.sh - set up the ls color preferences. +# +# The environment variable LS_COLORS maintains colon (:) seperated list of +# color preferences to be used by ls program. This script is placed in +# /etc/profile.d/ directory that would make sure the script is executed on +# before a terminal is started. The script sets LS_COLORS environment with +# suitable color setting for Haiku terminal. +# +# Copyright 2012 Haiku, Inc. All rights reserved. +# Distributed under the terms of the MIT License. +# +# Author: +# Prasad Joshi +# + +eval `dircolors -b` diff --git a/data/settings/kernel/drivers/kernel b/data/settings/kernel/drivers/kernel index 0c7fd48873..3b11402631 100644 --- a/data/settings/kernel/drivers/kernel +++ b/data/settings/kernel/drivers/kernel @@ -60,10 +60,6 @@ load_symbols true #acpi false # ACPI support, enabled by default -#acpi_avoid_full_init true - # Avoids running _INI and _STA methods and final object initialization, - # which may be used to for debugging ACPI issues, false by default - #disable_ioapic true # Disables IO-APIC support, enabled by default diff --git a/docs/develop/debugger/todo.txt b/docs/develop/debugger/todo.txt new file mode 100644 index 0000000000..f4b91850ad --- /dev/null +++ b/docs/develop/debugger/todo.txt @@ -0,0 +1,14 @@ +- Need the ability to save crash reports. +- CLI needs to be more fully implemented. +- General expression evaluation parser. Once implemented, should supplant the primitive one currently used for C/C++ typecasting support, as well as being exposed for user expression input. +- Conditional breakpoint/watchpoints. Contingent on above general expression parser. +- Remote debug interface support. +- Kernel debug support. +- Architecture needs to be able to report back the hardware debugging capabilities/limitations of the target platform. +- WatchpointManager needs to be able to use the aforementioned information from Architecture in order to more intelligently + manage/restrict watchpoint usage (especially once expression watchpoints come into play). +- More complete DWARF3/4 support. +- x86-64 support. +- Support for retrieving/displaying function return values (arch-specific). +- Syntax highlighting in source view. +- Detection of mouse hovering over a variable in SourceView and showing value in tooltip (probably requires expression parsing support). diff --git a/docs/develop/ports/arm/limitations.txt b/docs/develop/ports/arm/limitations.txt new file mode 100644 index 0000000000..7d080c831d --- /dev/null +++ b/docs/develop/ports/arm/limitations.txt @@ -0,0 +1,2 @@ +* Does not support < ARMv5 +* Requires support for high vectors diff --git a/docs/develop/ports/arm/todo.txt b/docs/develop/ports/arm/todo.txt new file mode 100644 index 0000000000..17cc54bf21 --- /dev/null +++ b/docs/develop/ports/arm/todo.txt @@ -0,0 +1,21 @@ +* Figure out how to get page flags (modified/accessed) and implement it ;) + use unmapped/read-only mappings to trigger soft faults + for tracking used/modified flags for ARMv5 and ARMv6 + +* Fix serial port mapping. Currently kernel uses the haiku_loader identity + mapping for it, but this lives in user virtual address space... + (Need to not use identity mapping in haiku_loader but just + map_physical_memory() there too so it can be handed over without issues). + +* Seperate ARM architecture/System-On-Chip IP code. Needed very early on + (Interrupt Controller, Timer IP block). Should use FDT for this too. + +* Use FDT to remove all the seperate board definitions in the build. Use a + "minimal ARM architecture version" as the compile flag for ARM support. + This to be able to optimize a kernel build for a specific SoC (or family). + +* Research stack unwinding to implement backtrace support for KDL & friends. + +* Add KDL hangman to the boot floppy image for more enjoyment during porting.... + +* Userland........... diff --git a/docs/develop/ports/arm/urls.txt b/docs/develop/ports/arm/urls.txt new file mode 100644 index 0000000000..68a41c21f6 --- /dev/null +++ b/docs/develop/ports/arm/urls.txt @@ -0,0 +1,11 @@ +* FDT +http://www.denx.de/wiki/U-Boot/UBootFdtInfo +http://wiki.freebsd.org/FlattenedDeviceTree#Supporting_library_.28libfdt.29 +http://elinux.org/images/4/4e/Glikely-powerpc-porting-guide.pdf +http://ols.fedoraproject.org/OLS/Reprints-2008/likely2-reprint.pdf +http://www.bsdcan.org/2010/schedule/events/171.en.html +http://www.devicetree.org/ (unofficial bindings) +http://www.devicetree.org/Device_Tree_Usage +http://elinux.org/Device_Trees +* OF +http://www.openfirmware.info/Bindings diff --git a/docs/develop/ports/m68k/TODO b/docs/develop/ports/m68k/TODO index a75d4dadbe..e67f5557e4 100644 --- a/docs/develop/ports/m68k/TODO +++ b/docs/develop/ports/m68k/TODO @@ -1,4 +1,3 @@ -- fix the VM stuff that broke after the Great VM Overhaul(tm). - optimization: remove M68KPagingStructures[*]::UpdateAllPageDirs() and just allocate all the kernel page root entries at boot and be done with it. It's not very big anyway. - possibly other optimizations in the VM code due to not supporting SMP? diff --git a/docs/develop/ports/m68k/amiga/urls.txt b/docs/develop/ports/m68k/amiga/urls.txt new file mode 100644 index 0000000000..b11018a6b6 --- /dev/null +++ b/docs/develop/ports/m68k/amiga/urls.txt @@ -0,0 +1 @@ +http://wandel.ca/homepage/execdis/ diff --git a/docs/develop/ports/m68k/atari/urls.txt b/docs/develop/ports/m68k/atari/urls.txt new file mode 100644 index 0000000000..2874b4b90c --- /dev/null +++ b/docs/develop/ports/m68k/atari/urls.txt @@ -0,0 +1,19 @@ +http://toshyp.atari.org/en/index.html + +http://www.lysator.liu.se/~celeborn/sync/atari/misc.html +http://www.lysator.liu.se/~celeborn/sync/atari/ATARI/F30.ZIP +http://www.lysator.liu.se/~celeborn/sync/atari/ATARI/FALCLIB6.ZIP +http://www.lysator.liu.se/~celeborn/sync/atari/ATARI/FALCREGS.ZIP + + +http://fxr.watson.org/fxr/source/include/asm-m68k/atarihw.h?v=linux-2.4.22 +http://lxr.linux.no/linux+v2.6.27/arch/m68k/atari/config.c#L664 + +http://www.atari-forum.com/wiki/index.php/MFP_MK68901 + +http://ftp.netbsd.org/pub/NetBSD/NetBSD-current/src/sys/arch/atari/stand/xxboot/ahdi-xxboot/xxboot.ahdi.S +AHDI args +http://ftp.netbsd.org/pub/NetBSD/NetBSD-current/src/sys/arch/atari/stand/xxboot/wdboot/wdboot.S +http://ftp.netbsd.org/pub/NetBSD/NetBSD-current/src/sys/arch/atari/stand/xxboot/sdboot/sdboot.S +http://ftp.netbsd.org/pub/NetBSD/NetBSD-current/src/sys/arch/atari/stand/xxboot/fdboot/fdboot.S + diff --git a/docs/userguide/ca/images/apps-images/activitymonitor.png b/docs/userguide/ca/images/apps-images/activitymonitor.png new file mode 100644 index 0000000000..94ee224e90 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/activitymonitor.png differ diff --git a/docs/userguide/ca/images/apps-images/bootmanager-1.png b/docs/userguide/ca/images/apps-images/bootmanager-1.png new file mode 100644 index 0000000000..254f731d81 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/bootmanager-1.png differ diff --git a/docs/userguide/ca/images/apps-images/bootmanager-2.png b/docs/userguide/ca/images/apps-images/bootmanager-2.png new file mode 100644 index 0000000000..a4e7367623 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/bootmanager-2.png differ diff --git a/docs/userguide/ca/images/apps-images/bootmanager-3.png b/docs/userguide/ca/images/apps-images/bootmanager-3.png new file mode 100644 index 0000000000..b92bb346c5 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/bootmanager-3.png differ diff --git a/docs/userguide/ca/images/apps-images/bootmanager-4.png b/docs/userguide/ca/images/apps-images/bootmanager-4.png new file mode 100644 index 0000000000..7148b2d4d5 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/bootmanager-4.png differ diff --git a/docs/userguide/ca/images/apps-images/bootmanager-5.png b/docs/userguide/ca/images/apps-images/bootmanager-5.png new file mode 100644 index 0000000000..3a17fce129 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/bootmanager-5.png differ diff --git a/docs/userguide/ca/images/apps-images/bootmanager-6.png b/docs/userguide/ca/images/apps-images/bootmanager-6.png new file mode 100644 index 0000000000..4d766dcf74 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/bootmanager-6.png differ diff --git a/docs/userguide/ca/images/apps-images/bootmanager-7.png b/docs/userguide/ca/images/apps-images/bootmanager-7.png new file mode 100644 index 0000000000..7fab263435 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/bootmanager-7.png differ diff --git a/docs/userguide/ca/images/apps-images/bootmanager-8.png b/docs/userguide/ca/images/apps-images/bootmanager-8.png new file mode 100644 index 0000000000..6ab9b43e85 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/bootmanager-8.png differ diff --git a/docs/userguide/ca/images/apps-images/bootmenu.png b/docs/userguide/ca/images/apps-images/bootmenu.png new file mode 100644 index 0000000000..1fe7ead138 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/bootmenu.png differ diff --git a/docs/userguide/ca/images/apps-images/cdplayer.png b/docs/userguide/ca/images/apps-images/cdplayer.png new file mode 100644 index 0000000000..07e941933d Binary files /dev/null and b/docs/userguide/ca/images/apps-images/cdplayer.png differ diff --git a/docs/userguide/ca/images/apps-images/charactermap.png b/docs/userguide/ca/images/apps-images/charactermap.png new file mode 100644 index 0000000000..a5542f3831 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/charactermap.png differ diff --git a/docs/userguide/ca/images/apps-images/cli-alert.png b/docs/userguide/ca/images/apps-images/cli-alert.png new file mode 100644 index 0000000000..a372778720 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/cli-alert.png differ diff --git a/docs/userguide/ca/images/apps-images/cli-desklink.png b/docs/userguide/ca/images/apps-images/cli-desklink.png new file mode 100644 index 0000000000..b56fd0c53f Binary files /dev/null and b/docs/userguide/ca/images/apps-images/cli-desklink.png differ diff --git a/docs/userguide/ca/images/apps-images/cli-filepanel.png b/docs/userguide/ca/images/apps-images/cli-filepanel.png new file mode 100644 index 0000000000..d9f7b81490 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/cli-filepanel.png differ diff --git a/docs/userguide/ca/images/apps-images/codycam.png b/docs/userguide/ca/images/apps-images/codycam.png new file mode 100644 index 0000000000..5679698b76 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/codycam.png differ diff --git a/docs/userguide/ca/images/apps-images/deskcalc.png b/docs/userguide/ca/images/apps-images/deskcalc.png new file mode 100644 index 0000000000..b4b14b991d Binary files /dev/null and b/docs/userguide/ca/images/apps-images/deskcalc.png differ diff --git a/docs/userguide/ca/images/apps-images/diskprobe-about-attr.png b/docs/userguide/ca/images/apps-images/diskprobe-about-attr.png new file mode 100644 index 0000000000..a7bee6b197 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/diskprobe-about-attr.png differ diff --git a/docs/userguide/ca/images/apps-images/diskprobe.png b/docs/userguide/ca/images/apps-images/diskprobe.png new file mode 100644 index 0000000000..8f4f2a1762 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/diskprobe.png differ diff --git a/docs/userguide/ca/images/apps-images/diskusage.png b/docs/userguide/ca/images/apps-images/diskusage.png new file mode 100644 index 0000000000..6b7f86709d Binary files /dev/null and b/docs/userguide/ca/images/apps-images/diskusage.png differ diff --git a/docs/userguide/ca/images/apps-images/drivesetup-create.png b/docs/userguide/ca/images/apps-images/drivesetup-create.png new file mode 100644 index 0000000000..d91486def3 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/drivesetup-create.png differ diff --git a/docs/userguide/ca/images/apps-images/drivesetup-initialize.png b/docs/userguide/ca/images/apps-images/drivesetup-initialize.png new file mode 100644 index 0000000000..8c02ea1b90 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/drivesetup-initialize.png differ diff --git a/docs/userguide/ca/images/apps-images/drivesetup.png b/docs/userguide/ca/images/apps-images/drivesetup.png new file mode 100644 index 0000000000..f14d571b05 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/drivesetup.png differ diff --git a/docs/userguide/ca/images/apps-images/expander-preferences.png b/docs/userguide/ca/images/apps-images/expander-preferences.png new file mode 100644 index 0000000000..3288945617 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/expander-preferences.png differ diff --git a/docs/userguide/ca/images/apps-images/expander.png b/docs/userguide/ca/images/apps-images/expander.png new file mode 100644 index 0000000000..07b37ea9cd Binary files /dev/null and b/docs/userguide/ca/images/apps-images/expander.png differ diff --git a/docs/userguide/ca/images/apps-images/i-o-m-gradients.png b/docs/userguide/ca/images/apps-images/i-o-m-gradients.png new file mode 100644 index 0000000000..db2823f143 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/i-o-m-gradients.png differ diff --git a/docs/userguide/ca/images/apps-images/i-o-m-overview.png b/docs/userguide/ca/images/apps-images/i-o-m-overview.png new file mode 100644 index 0000000000..6429bbb7eb Binary files /dev/null and b/docs/userguide/ca/images/apps-images/i-o-m-overview.png differ diff --git a/docs/userguide/ca/images/apps-images/installer.png b/docs/userguide/ca/images/apps-images/installer.png new file mode 100644 index 0000000000..0106866921 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/installer.png differ diff --git a/docs/userguide/ca/images/apps-images/magnify.png b/docs/userguide/ca/images/apps-images/magnify.png new file mode 100644 index 0000000000..6fea1ac224 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/magnify.png differ diff --git a/docs/userguide/ca/images/apps-images/mail-attachments.png b/docs/userguide/ca/images/apps-images/mail-attachments.png new file mode 100644 index 0000000000..12df2df096 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/mail-attachments.png differ diff --git a/docs/userguide/ca/images/apps-images/mail-preferences.png b/docs/userguide/ca/images/apps-images/mail-preferences.png new file mode 100644 index 0000000000..64c0b9d22a Binary files /dev/null and b/docs/userguide/ca/images/apps-images/mail-preferences.png differ diff --git a/docs/userguide/ca/images/apps-images/mail-read.png b/docs/userguide/ca/images/apps-images/mail-read.png new file mode 100644 index 0000000000..1e11ffa4a0 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/mail-read.png differ diff --git a/docs/userguide/ca/images/apps-images/mail-signature.png b/docs/userguide/ca/images/apps-images/mail-signature.png new file mode 100644 index 0000000000..432cc5b522 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/mail-signature.png differ diff --git a/docs/userguide/ca/images/apps-images/mail-spellcheck.png b/docs/userguide/ca/images/apps-images/mail-spellcheck.png new file mode 100644 index 0000000000..2511586647 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/mail-spellcheck.png differ diff --git a/docs/userguide/ca/images/apps-images/mail-write.png b/docs/userguide/ca/images/apps-images/mail-write.png new file mode 100644 index 0000000000..fe85df60a6 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/mail-write.png differ diff --git a/docs/userguide/ca/images/apps-images/mediaplayer-info.png b/docs/userguide/ca/images/apps-images/mediaplayer-info.png new file mode 100644 index 0000000000..5601ff94c4 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/mediaplayer-info.png differ diff --git a/docs/userguide/ca/images/apps-images/mediaplayer-playlist.png b/docs/userguide/ca/images/apps-images/mediaplayer-playlist.png new file mode 100644 index 0000000000..03f666ff76 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/mediaplayer-playlist.png differ diff --git a/docs/userguide/ca/images/apps-images/mediaplayer-settings.png b/docs/userguide/ca/images/apps-images/mediaplayer-settings.png new file mode 100644 index 0000000000..9d7ef19ea4 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/mediaplayer-settings.png differ diff --git a/docs/userguide/ca/images/apps-images/mediaplayer.png b/docs/userguide/ca/images/apps-images/mediaplayer.png new file mode 100644 index 0000000000..ad6cc192a6 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/mediaplayer.png differ diff --git a/docs/userguide/ca/images/apps-images/midiplayer.png b/docs/userguide/ca/images/apps-images/midiplayer.png new file mode 100644 index 0000000000..22b2081dd4 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/midiplayer.png differ diff --git a/docs/userguide/ca/images/apps-images/newactivitymonitor.png b/docs/userguide/ca/images/apps-images/newactivitymonitor.png new file mode 100644 index 0000000000..94ee224e90 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/newactivitymonitor.png differ diff --git a/docs/userguide/ca/images/apps-images/packageinstaller-installer.png b/docs/userguide/ca/images/apps-images/packageinstaller-installer.png new file mode 100644 index 0000000000..5ce144af22 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/packageinstaller-installer.png differ diff --git a/docs/userguide/ca/images/apps-images/packageinstaller.png b/docs/userguide/ca/images/apps-images/packageinstaller.png new file mode 100644 index 0000000000..cdab34eda3 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/packageinstaller.png differ diff --git a/docs/userguide/ca/images/apps-images/people-files.png b/docs/userguide/ca/images/apps-images/people-files.png new file mode 100644 index 0000000000..f82758f20c Binary files /dev/null and b/docs/userguide/ca/images/apps-images/people-files.png differ diff --git a/docs/userguide/ca/images/apps-images/people.png b/docs/userguide/ca/images/apps-images/people.png new file mode 100644 index 0000000000..6b7854f0dc Binary files /dev/null and b/docs/userguide/ca/images/apps-images/people.png differ diff --git a/docs/userguide/ca/images/apps-images/poorman.png b/docs/userguide/ca/images/apps-images/poorman.png new file mode 100644 index 0000000000..df094ffbd9 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/poorman.png differ diff --git a/docs/userguide/ca/images/apps-images/screenshot.png b/docs/userguide/ca/images/apps-images/screenshot.png new file mode 100644 index 0000000000..8e54baaea9 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/screenshot.png differ diff --git a/docs/userguide/ca/images/apps-images/showimage-browse.jpg b/docs/userguide/ca/images/apps-images/showimage-browse.jpg new file mode 100644 index 0000000000..2d4681c1dd Binary files /dev/null and b/docs/userguide/ca/images/apps-images/showimage-browse.jpg differ diff --git a/docs/userguide/ca/images/apps-images/showimage-dnd.jpg b/docs/userguide/ca/images/apps-images/showimage-dnd.jpg new file mode 100644 index 0000000000..e284a8d7c0 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/showimage-dnd.jpg differ diff --git a/docs/userguide/ca/images/apps-images/showimage-edit.jpg b/docs/userguide/ca/images/apps-images/showimage-edit.jpg new file mode 100644 index 0000000000..f2d69b4b74 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/showimage-edit.jpg differ diff --git a/docs/userguide/ca/images/apps-images/showimage-toolbar.png b/docs/userguide/ca/images/apps-images/showimage-toolbar.png new file mode 100644 index 0000000000..a51f23f576 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/showimage-toolbar.png differ diff --git a/docs/userguide/ca/images/apps-images/showimage-view.jpg b/docs/userguide/ca/images/apps-images/showimage-view.jpg new file mode 100644 index 0000000000..2130d0b3d6 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/showimage-view.jpg differ diff --git a/docs/userguide/ca/images/apps-images/stylededit.png b/docs/userguide/ca/images/apps-images/stylededit.png new file mode 100644 index 0000000000..4ebd7e2643 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/stylededit.png differ diff --git a/docs/userguide/ca/images/apps-images/terminal-settings.png b/docs/userguide/ca/images/apps-images/terminal-settings.png new file mode 100644 index 0000000000..331b505450 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/terminal-settings.png differ diff --git a/docs/userguide/ca/images/apps-images/terminal.png b/docs/userguide/ca/images/apps-images/terminal.png new file mode 100644 index 0000000000..079ff04eed Binary files /dev/null and b/docs/userguide/ca/images/apps-images/terminal.png differ diff --git a/docs/userguide/ca/images/apps-images/textsearch.png b/docs/userguide/ca/images/apps-images/textsearch.png new file mode 100644 index 0000000000..974ec4c06a Binary files /dev/null and b/docs/userguide/ca/images/apps-images/textsearch.png differ diff --git a/docs/userguide/ca/images/apps-images/web+bookmarks.png b/docs/userguide/ca/images/apps-images/web+bookmarks.png new file mode 100644 index 0000000000..7d8647aed8 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/web+bookmarks.png differ diff --git a/docs/userguide/ca/images/apps-images/web+download.png b/docs/userguide/ca/images/apps-images/web+download.png new file mode 100644 index 0000000000..621e022340 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/web+download.png differ diff --git a/docs/userguide/ca/images/apps-images/web+downloads-folder.png b/docs/userguide/ca/images/apps-images/web+downloads-folder.png new file mode 100644 index 0000000000..f01f9e3b9b Binary files /dev/null and b/docs/userguide/ca/images/apps-images/web+downloads-folder.png differ diff --git a/docs/userguide/ca/images/apps-images/web+downloads-window.png b/docs/userguide/ca/images/apps-images/web+downloads-window.png new file mode 100644 index 0000000000..402072a463 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/web+downloads-window.png differ diff --git a/docs/userguide/ca/images/apps-images/web+settings.png b/docs/userguide/ca/images/apps-images/web+settings.png new file mode 100644 index 0000000000..7b9a0945ad Binary files /dev/null and b/docs/userguide/ca/images/apps-images/web+settings.png differ diff --git a/docs/userguide/ca/images/apps-images/webpositive-bookmarks.png b/docs/userguide/ca/images/apps-images/webpositive-bookmarks.png new file mode 100644 index 0000000000..e7a04ba460 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/webpositive-bookmarks.png differ diff --git a/docs/userguide/ca/images/apps-images/webpositive-downloads.png b/docs/userguide/ca/images/apps-images/webpositive-downloads.png new file mode 100644 index 0000000000..88ceb0e825 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/webpositive-downloads.png differ diff --git a/docs/userguide/ca/images/apps-images/webpositive-locator.png b/docs/userguide/ca/images/apps-images/webpositive-locator.png new file mode 100644 index 0000000000..eeb3491e43 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/webpositive-locator.png differ diff --git a/docs/userguide/ca/images/apps-images/webpositive-settings.png b/docs/userguide/ca/images/apps-images/webpositive-settings.png new file mode 100644 index 0000000000..2a6123a735 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/webpositive-settings.png differ diff --git a/docs/userguide/ca/images/apps-images/webpositive-tabbar.png b/docs/userguide/ca/images/apps-images/webpositive-tabbar.png new file mode 100644 index 0000000000..5cf13f972e Binary files /dev/null and b/docs/userguide/ca/images/apps-images/webpositive-tabbar.png differ diff --git a/docs/userguide/ca/images/apps-images/webpositive.png b/docs/userguide/ca/images/apps-images/webpositive.png new file mode 100644 index 0000000000..17f776e5d8 Binary files /dev/null and b/docs/userguide/ca/images/apps-images/webpositive.png differ diff --git a/docs/userguide/ca/images/attributes-images/people.png b/docs/userguide/ca/images/attributes-images/people.png new file mode 100644 index 0000000000..df7892c6c5 Binary files /dev/null and b/docs/userguide/ca/images/attributes-images/people.png differ diff --git a/docs/userguide/ca/images/deskbar-images/calendar.png b/docs/userguide/ca/images/deskbar-images/calendar.png new file mode 100644 index 0000000000..b805afaee5 Binary files /dev/null and b/docs/userguide/ca/images/deskbar-images/calendar.png differ diff --git a/docs/userguide/ca/images/deskbar-images/configure.png b/docs/userguide/ca/images/deskbar-images/configure.png new file mode 100644 index 0000000000..3f53b2280d Binary files /dev/null and b/docs/userguide/ca/images/deskbar-images/configure.png differ diff --git a/docs/userguide/ca/images/deskbar-images/deskbar.png b/docs/userguide/ca/images/deskbar-images/deskbar.png new file mode 100644 index 0000000000..67d09d587b Binary files /dev/null and b/docs/userguide/ca/images/deskbar-images/deskbar.png differ diff --git a/docs/userguide/ca/images/deskbar-images/list-of-apps.png b/docs/userguide/ca/images/deskbar-images/list-of-apps.png new file mode 100644 index 0000000000..e9f9cd34f7 Binary files /dev/null and b/docs/userguide/ca/images/deskbar-images/list-of-apps.png differ diff --git a/docs/userguide/ca/images/deskbar-images/positions.png b/docs/userguide/ca/images/deskbar-images/positions.png new file mode 100644 index 0000000000..de38e8dee7 Binary files /dev/null and b/docs/userguide/ca/images/deskbar-images/positions.png differ diff --git a/docs/userguide/ca/images/desktop-applets-images/launchbox.png b/docs/userguide/ca/images/desktop-applets-images/launchbox.png new file mode 100644 index 0000000000..16d43d404b Binary files /dev/null and b/docs/userguide/ca/images/desktop-applets-images/launchbox.png differ diff --git a/docs/userguide/ca/images/filesystem-layout-images/achtung-system.png b/docs/userguide/ca/images/filesystem-layout-images/achtung-system.png new file mode 100644 index 0000000000..fbcebee00c Binary files /dev/null and b/docs/userguide/ca/images/filesystem-layout-images/achtung-system.png differ diff --git a/docs/userguide/ca/images/filesystem-layout-images/achtung-user.png b/docs/userguide/ca/images/filesystem-layout-images/achtung-user.png new file mode 100644 index 0000000000..fa6d1cfa24 Binary files /dev/null and b/docs/userguide/ca/images/filesystem-layout-images/achtung-user.png differ diff --git a/docs/userguide/ca/images/filetypes-images/filetype-addon-stylededit.png b/docs/userguide/ca/images/filetypes-images/filetype-addon-stylededit.png new file mode 100644 index 0000000000..928f02c631 Binary files /dev/null and b/docs/userguide/ca/images/filetypes-images/filetype-addon-stylededit.png differ diff --git a/docs/userguide/ca/images/filetypes-images/filetype-addon.png b/docs/userguide/ca/images/filetypes-images/filetype-addon.png new file mode 100644 index 0000000000..15180be2d6 Binary files /dev/null and b/docs/userguide/ca/images/filetypes-images/filetype-addon.png differ diff --git a/docs/userguide/ca/images/gui-images/favorites.png b/docs/userguide/ca/images/gui-images/favorites.png new file mode 100644 index 0000000000..cf9f5f3be5 Binary files /dev/null and b/docs/userguide/ca/images/gui-images/favorites.png differ diff --git a/docs/userguide/ca/images/gui-images/gui-s+t.gif b/docs/userguide/ca/images/gui-images/gui-s+t.gif new file mode 100644 index 0000000000..6cbab7f641 Binary files /dev/null and b/docs/userguide/ca/images/gui-images/gui-s+t.gif differ diff --git a/docs/userguide/ca/images/gui-images/gui-stacking.png b/docs/userguide/ca/images/gui-images/gui-stacking.png new file mode 100644 index 0000000000..fb2cce5572 Binary files /dev/null and b/docs/userguide/ca/images/gui-images/gui-stacking.png differ diff --git a/docs/userguide/ca/images/gui-images/gui-tiling.png b/docs/userguide/ca/images/gui-images/gui-tiling.png new file mode 100644 index 0000000000..7f18ae5cf5 Binary files /dev/null and b/docs/userguide/ca/images/gui-images/gui-tiling.png differ diff --git a/docs/userguide/ca/images/gui-images/gui.png b/docs/userguide/ca/images/gui-images/gui.png new file mode 100644 index 0000000000..0ee9666efc Binary files /dev/null and b/docs/userguide/ca/images/gui-images/gui.png differ diff --git a/docs/userguide/ca/images/gui-images/open-save.png b/docs/userguide/ca/images/gui-images/open-save.png new file mode 100644 index 0000000000..662bedc2ae Binary files /dev/null and b/docs/userguide/ca/images/gui-images/open-save.png differ diff --git a/docs/userguide/ca/images/gui-images/resizing.png b/docs/userguide/ca/images/gui-images/resizing.png new file mode 100644 index 0000000000..2a2ff48320 Binary files /dev/null and b/docs/userguide/ca/images/gui-images/resizing.png differ diff --git a/docs/userguide/ca/images/networkstatus-images/applet.png b/docs/userguide/ca/images/networkstatus-images/applet.png new file mode 100644 index 0000000000..81e42499af Binary files /dev/null and b/docs/userguide/ca/images/networkstatus-images/applet.png differ diff --git a/docs/userguide/ca/images/networkstatus-images/icon-connecting.png b/docs/userguide/ca/images/networkstatus-images/icon-connecting.png new file mode 100644 index 0000000000..84013cb9a6 Binary files /dev/null and b/docs/userguide/ca/images/networkstatus-images/icon-connecting.png differ diff --git a/docs/userguide/ca/images/networkstatus-images/icon-noconnection.png b/docs/userguide/ca/images/networkstatus-images/icon-noconnection.png new file mode 100644 index 0000000000..329d5a6c94 Binary files /dev/null and b/docs/userguide/ca/images/networkstatus-images/icon-noconnection.png differ diff --git a/docs/userguide/ca/images/networkstatus-images/icon-nodevices.png b/docs/userguide/ca/images/networkstatus-images/icon-nodevices.png new file mode 100644 index 0000000000..442f3b6c8a Binary files /dev/null and b/docs/userguide/ca/images/networkstatus-images/icon-nodevices.png differ diff --git a/docs/userguide/ca/images/networkstatus-images/icon-nosettings.png b/docs/userguide/ca/images/networkstatus-images/icon-nosettings.png new file mode 100644 index 0000000000..a0fa47e9b8 Binary files /dev/null and b/docs/userguide/ca/images/networkstatus-images/icon-nosettings.png differ diff --git a/docs/userguide/ca/images/networkstatus-images/icon-ready.png b/docs/userguide/ca/images/networkstatus-images/icon-ready.png new file mode 100644 index 0000000000..7d9ea72428 Binary files /dev/null and b/docs/userguide/ca/images/networkstatus-images/icon-ready.png differ diff --git a/docs/userguide/ca/images/powerstatus-images/applet.png b/docs/userguide/ca/images/powerstatus-images/applet.png new file mode 100644 index 0000000000..64c30d75f3 Binary files /dev/null and b/docs/userguide/ca/images/powerstatus-images/applet.png differ diff --git a/docs/userguide/ca/images/prefs-images/appearance-antialiasing.png b/docs/userguide/ca/images/prefs-images/appearance-antialiasing.png new file mode 100644 index 0000000000..cbb49dc808 Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/appearance-antialiasing.png differ diff --git a/docs/userguide/ca/images/prefs-images/appearance-colors.png b/docs/userguide/ca/images/prefs-images/appearance-colors.png new file mode 100644 index 0000000000..eeb3574015 Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/appearance-colors.png differ diff --git a/docs/userguide/ca/images/prefs-images/appearance-decorators.png b/docs/userguide/ca/images/prefs-images/appearance-decorators.png new file mode 100644 index 0000000000..99d9ade42b Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/appearance-decorators.png differ diff --git a/docs/userguide/ca/images/prefs-images/appearance-fonts.png b/docs/userguide/ca/images/prefs-images/appearance-fonts.png new file mode 100644 index 0000000000..c962c53232 Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/appearance-fonts.png differ diff --git a/docs/userguide/ca/images/prefs-images/appearance-glyph-off.png b/docs/userguide/ca/images/prefs-images/appearance-glyph-off.png new file mode 100644 index 0000000000..0fe9e2169c Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/appearance-glyph-off.png differ diff --git a/docs/userguide/ca/images/prefs-images/appearance-glyph-on-subpixel.png b/docs/userguide/ca/images/prefs-images/appearance-glyph-on-subpixel.png new file mode 100644 index 0000000000..e4d03a1643 Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/appearance-glyph-on-subpixel.png differ diff --git a/docs/userguide/ca/images/prefs-images/appearance-glyph-on.png b/docs/userguide/ca/images/prefs-images/appearance-glyph-on.png new file mode 100644 index 0000000000..28b80dfed8 Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/appearance-glyph-on.png differ diff --git a/docs/userguide/ca/images/prefs-images/appearance-subpixel.png b/docs/userguide/ca/images/prefs-images/appearance-subpixel.png new file mode 100644 index 0000000000..a42a3d006e Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/appearance-subpixel.png differ diff --git a/docs/userguide/ca/images/prefs-images/backgrounds.png b/docs/userguide/ca/images/prefs-images/backgrounds.png new file mode 100644 index 0000000000..ed757967dc Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/backgrounds.png differ diff --git a/docs/userguide/ca/images/prefs-images/datatranslations.png b/docs/userguide/ca/images/prefs-images/datatranslations.png new file mode 100644 index 0000000000..c7ea18a396 Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/datatranslations.png differ diff --git a/docs/userguide/ca/images/prefs-images/e-mail-accounts.png b/docs/userguide/ca/images/prefs-images/e-mail-accounts.png new file mode 100644 index 0000000000..17694e831e Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/e-mail-accounts.png differ diff --git a/docs/userguide/ca/images/prefs-images/e-mail-filter-header.png b/docs/userguide/ca/images/prefs-images/e-mail-filter-header.png new file mode 100644 index 0000000000..9e6839c9c5 Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/e-mail-filter-header.png differ diff --git a/docs/userguide/ca/images/prefs-images/e-mail-filter-notification.png b/docs/userguide/ca/images/prefs-images/e-mail-filter-notification.png new file mode 100644 index 0000000000..c1e5160bb6 Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/e-mail-filter-notification.png differ diff --git a/docs/userguide/ca/images/prefs-images/e-mail-filter-spam.png b/docs/userguide/ca/images/prefs-images/e-mail-filter-spam.png new file mode 100644 index 0000000000..2b88579c8f Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/e-mail-filter-spam.png differ diff --git a/docs/userguide/ca/images/prefs-images/e-mail-in.png b/docs/userguide/ca/images/prefs-images/e-mail-in.png new file mode 100644 index 0000000000..8d42bb21b5 Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/e-mail-in.png differ diff --git a/docs/userguide/ca/images/prefs-images/e-mail-mailbox.png b/docs/userguide/ca/images/prefs-images/e-mail-mailbox.png new file mode 100644 index 0000000000..8ea1d4811e Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/e-mail-mailbox.png differ diff --git a/docs/userguide/ca/images/prefs-images/e-mail-new-account-2.png b/docs/userguide/ca/images/prefs-images/e-mail-new-account-2.png new file mode 100644 index 0000000000..fd42a1cda9 Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/e-mail-new-account-2.png differ diff --git a/docs/userguide/ca/images/prefs-images/e-mail-new-account.png b/docs/userguide/ca/images/prefs-images/e-mail-new-account.png new file mode 100644 index 0000000000..8904978729 Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/e-mail-new-account.png differ diff --git a/docs/userguide/ca/images/prefs-images/e-mail-out.png b/docs/userguide/ca/images/prefs-images/e-mail-out.png new file mode 100644 index 0000000000..2ed6eecb6c Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/e-mail-out.png differ diff --git a/docs/userguide/ca/images/prefs-images/e-mail-settings.png b/docs/userguide/ca/images/prefs-images/e-mail-settings.png new file mode 100644 index 0000000000..00c0e34085 Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/e-mail-settings.png differ diff --git a/docs/userguide/ca/images/prefs-images/fonts.png b/docs/userguide/ca/images/prefs-images/fonts.png new file mode 100644 index 0000000000..fbf879455d Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/fonts.png differ diff --git a/docs/userguide/ca/images/prefs-images/keyboard.png b/docs/userguide/ca/images/prefs-images/keyboard.png new file mode 100644 index 0000000000..d7ead8e810 Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/keyboard.png differ diff --git a/docs/userguide/ca/images/prefs-images/keymap.png b/docs/userguide/ca/images/prefs-images/keymap.png new file mode 100644 index 0000000000..b502b82adc Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/keymap.png differ diff --git a/docs/userguide/ca/images/prefs-images/locale-formatting.png b/docs/userguide/ca/images/prefs-images/locale-formatting.png new file mode 100644 index 0000000000..1debec6faa Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/locale-formatting.png differ diff --git a/docs/userguide/ca/images/prefs-images/locale-language.png b/docs/userguide/ca/images/prefs-images/locale-language.png new file mode 100644 index 0000000000..d94efe28ac Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/locale-language.png differ diff --git a/docs/userguide/ca/images/prefs-images/mouse.png b/docs/userguide/ca/images/prefs-images/mouse.png new file mode 100644 index 0000000000..b735a68a7d Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/mouse.png differ diff --git a/docs/userguide/ca/images/prefs-images/network.png b/docs/userguide/ca/images/prefs-images/network.png new file mode 100644 index 0000000000..0cb30f816f Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/network.png differ diff --git a/docs/userguide/ca/images/prefs-images/screen.png b/docs/userguide/ca/images/prefs-images/screen.png new file mode 100644 index 0000000000..75cfe8bcb2 Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/screen.png differ diff --git a/docs/userguide/ca/images/prefs-images/screensaver-fade.png b/docs/userguide/ca/images/prefs-images/screensaver-fade.png new file mode 100644 index 0000000000..cdb2a2e5e3 Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/screensaver-fade.png differ diff --git a/docs/userguide/ca/images/prefs-images/screensaver-modules.png b/docs/userguide/ca/images/prefs-images/screensaver-modules.png new file mode 100644 index 0000000000..ebeac24d1e Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/screensaver-modules.png differ diff --git a/docs/userguide/ca/images/prefs-images/sounds.png b/docs/userguide/ca/images/prefs-images/sounds.png new file mode 100644 index 0000000000..e89cb8a52a Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/sounds.png differ diff --git a/docs/userguide/ca/images/prefs-images/time-time.png b/docs/userguide/ca/images/prefs-images/time-time.png new file mode 100644 index 0000000000..4b60a7136d Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/time-time.png differ diff --git a/docs/userguide/ca/images/prefs-images/time-timezone.png b/docs/userguide/ca/images/prefs-images/time-timezone.png new file mode 100644 index 0000000000..4ddf6df643 Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/time-timezone.png differ diff --git a/docs/userguide/ca/images/prefs-images/touchpad.png b/docs/userguide/ca/images/prefs-images/touchpad.png new file mode 100644 index 0000000000..b7f7365b9d Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/touchpad.png differ diff --git a/docs/userguide/ca/images/prefs-images/virtualmemory.png b/docs/userguide/ca/images/prefs-images/virtualmemory.png new file mode 100644 index 0000000000..19f66bcb1c Binary files /dev/null and b/docs/userguide/ca/images/prefs-images/virtualmemory.png differ diff --git a/docs/userguide/ca/images/processcontroller-images/applet.png b/docs/userguide/ca/images/processcontroller-images/applet.png new file mode 100644 index 0000000000..6bb61d3151 Binary files /dev/null and b/docs/userguide/ca/images/processcontroller-images/applet.png differ diff --git a/docs/userguide/ca/images/processcontroller-images/memory.png b/docs/userguide/ca/images/processcontroller-images/memory.png new file mode 100644 index 0000000000..e2b7e4f4de Binary files /dev/null and b/docs/userguide/ca/images/processcontroller-images/memory.png differ diff --git a/docs/userguide/ca/images/processcontroller-images/priority.png b/docs/userguide/ca/images/processcontroller-images/priority.png new file mode 100644 index 0000000000..c40c0b0678 Binary files /dev/null and b/docs/userguide/ca/images/processcontroller-images/priority.png differ diff --git a/docs/userguide/ca/images/processcontroller-images/quit.png b/docs/userguide/ca/images/processcontroller-images/quit.png new file mode 100644 index 0000000000..497b1801db Binary files /dev/null and b/docs/userguide/ca/images/processcontroller-images/quit.png differ diff --git a/docs/userguide/ca/images/queries-images/basic-query.png b/docs/userguide/ca/images/queries-images/basic-query.png new file mode 100644 index 0000000000..4fb4306de2 Binary files /dev/null and b/docs/userguide/ca/images/queries-images/basic-query.png differ diff --git a/docs/userguide/ca/images/queries-images/formula-query.png b/docs/userguide/ca/images/queries-images/formula-query.png new file mode 100644 index 0000000000..23f94c790d Binary files /dev/null and b/docs/userguide/ca/images/queries-images/formula-query.png differ diff --git a/docs/userguide/ca/images/queries-images/query-window-filled.png b/docs/userguide/ca/images/queries-images/query-window-filled.png new file mode 100644 index 0000000000..a11ac49515 Binary files /dev/null and b/docs/userguide/ca/images/queries-images/query-window-filled.png differ diff --git a/docs/userguide/ca/images/queries-images/query-window.png b/docs/userguide/ca/images/queries-images/query-window.png new file mode 100644 index 0000000000..6d38e807ee Binary files /dev/null and b/docs/userguide/ca/images/queries-images/query-window.png differ diff --git a/docs/userguide/ca/images/queries-images/result-window.png b/docs/userguide/ca/images/queries-images/result-window.png new file mode 100644 index 0000000000..a45f9a70fd Binary files /dev/null and b/docs/userguide/ca/images/queries-images/result-window.png differ diff --git a/docs/userguide/ca/images/teammonitor-images/teammonitor.png b/docs/userguide/ca/images/teammonitor-images/teammonitor.png new file mode 100644 index 0000000000..26fed82446 Binary files /dev/null and b/docs/userguide/ca/images/teammonitor-images/teammonitor.png differ diff --git a/docs/userguide/ca/images/tracker-images/drill-down.png b/docs/userguide/ca/images/tracker-images/drill-down.png new file mode 100644 index 0000000000..74d1e1caf6 Binary files /dev/null and b/docs/userguide/ca/images/tracker-images/drill-down.png differ diff --git a/docs/userguide/ca/images/tracker-images/get-info.png b/docs/userguide/ca/images/tracker-images/get-info.png new file mode 100644 index 0000000000..fc9e493c82 Binary files /dev/null and b/docs/userguide/ca/images/tracker-images/get-info.png differ diff --git a/docs/userguide/ca/images/tracker-images/mount-settings.png b/docs/userguide/ca/images/tracker-images/mount-settings.png new file mode 100644 index 0000000000..fbf85dd2b6 Binary files /dev/null and b/docs/userguide/ca/images/tracker-images/mount-settings.png differ diff --git a/docs/userguide/ca/images/tracker-images/new-menu.png b/docs/userguide/ca/images/tracker-images/new-menu.png new file mode 100644 index 0000000000..09189af74b Binary files /dev/null and b/docs/userguide/ca/images/tracker-images/new-menu.png differ diff --git a/docs/userguide/ca/images/tracker-images/open-with-preferred.png b/docs/userguide/ca/images/tracker-images/open-with-preferred.png new file mode 100644 index 0000000000..869ef8da90 Binary files /dev/null and b/docs/userguide/ca/images/tracker-images/open-with-preferred.png differ diff --git a/docs/userguide/ca/images/tracker-images/open-with.png b/docs/userguide/ca/images/tracker-images/open-with.png new file mode 100644 index 0000000000..42715557a1 Binary files /dev/null and b/docs/userguide/ca/images/tracker-images/open-with.png differ diff --git a/docs/userguide/ca/images/tracker-images/tracker-preferences-navigator.png b/docs/userguide/ca/images/tracker-images/tracker-preferences-navigator.png new file mode 100644 index 0000000000..68bf5a6cec Binary files /dev/null and b/docs/userguide/ca/images/tracker-images/tracker-preferences-navigator.png differ diff --git a/docs/userguide/ca/images/tracker-images/transaction-status.png b/docs/userguide/ca/images/tracker-images/transaction-status.png new file mode 100644 index 0000000000..8799bc6af7 Binary files /dev/null and b/docs/userguide/ca/images/tracker-images/transaction-status.png differ diff --git a/docs/userguide/ca/images/tracker-images/window-drill-down.png b/docs/userguide/ca/images/tracker-images/window-drill-down.png new file mode 100644 index 0000000000..fb0103d6db Binary files /dev/null and b/docs/userguide/ca/images/tracker-images/window-drill-down.png differ diff --git a/docs/userguide/ca/images/tracker-images/window-menu.png b/docs/userguide/ca/images/tracker-images/window-menu.png new file mode 100644 index 0000000000..cffa41cd33 Binary files /dev/null and b/docs/userguide/ca/images/tracker-images/window-menu.png differ diff --git a/docs/userguide/ca/images/tracker-images/window-type-ahead.png b/docs/userguide/ca/images/tracker-images/window-type-ahead.png new file mode 100644 index 0000000000..9197002fe0 Binary files /dev/null and b/docs/userguide/ca/images/tracker-images/window-type-ahead.png differ diff --git a/docs/userguide/ca/images/workshop-email-images/browsing.png b/docs/userguide/ca/images/workshop-email-images/browsing.png new file mode 100644 index 0000000000..9713e0fdfb Binary files /dev/null and b/docs/userguide/ca/images/workshop-email-images/browsing.png differ diff --git a/docs/userguide/ca/images/workshop-email-images/daemon-in-deskbar.png b/docs/userguide/ca/images/workshop-email-images/daemon-in-deskbar.png new file mode 100644 index 0000000000..853d6bd582 Binary files /dev/null and b/docs/userguide/ca/images/workshop-email-images/daemon-in-deskbar.png differ diff --git a/docs/userguide/ca/images/workshop-email-images/query-1.png b/docs/userguide/ca/images/workshop-email-images/query-1.png new file mode 100644 index 0000000000..e093383948 Binary files /dev/null and b/docs/userguide/ca/images/workshop-email-images/query-1.png differ diff --git a/docs/userguide/ca/images/workshop-email-images/query-2.png b/docs/userguide/ca/images/workshop-email-images/query-2.png new file mode 100644 index 0000000000..b1d2a5f85e Binary files /dev/null and b/docs/userguide/ca/images/workshop-email-images/query-2.png differ diff --git a/docs/userguide/ca/images/workshop-email-images/query-3.png b/docs/userguide/ca/images/workshop-email-images/query-3.png new file mode 100644 index 0000000000..39d4506715 Binary files /dev/null and b/docs/userguide/ca/images/workshop-email-images/query-3.png differ diff --git a/docs/userguide/ca/images/workshop-email-images/query-4.png b/docs/userguide/ca/images/workshop-email-images/query-4.png new file mode 100644 index 0000000000..8ecd8de316 Binary files /dev/null and b/docs/userguide/ca/images/workshop-email-images/query-4.png differ diff --git a/docs/userguide/ca/images/workshop-email-images/status.png b/docs/userguide/ca/images/workshop-email-images/status.png new file mode 100644 index 0000000000..e425361ba7 Binary files /dev/null and b/docs/userguide/ca/images/workshop-email-images/status.png differ diff --git a/docs/userguide/ca/images/workshop-filetypes+attributes-images/filetype-extra-attribute.png b/docs/userguide/ca/images/workshop-filetypes+attributes-images/filetype-extra-attribute.png new file mode 100644 index 0000000000..d957d697cf Binary files /dev/null and b/docs/userguide/ca/images/workshop-filetypes+attributes-images/filetype-extra-attribute.png differ diff --git a/docs/userguide/ca/images/workshop-filetypes+attributes-images/filetypes-dvddb-empty.png b/docs/userguide/ca/images/workshop-filetypes+attributes-images/filetypes-dvddb-empty.png new file mode 100644 index 0000000000..d9e5b8bcce Binary files /dev/null and b/docs/userguide/ca/images/workshop-filetypes+attributes-images/filetypes-dvddb-empty.png differ diff --git a/docs/userguide/ca/images/workshop-filetypes+attributes-images/filetypes-dvddb.png b/docs/userguide/ca/images/workshop-filetypes+attributes-images/filetypes-dvddb.png new file mode 100644 index 0000000000..5411fdfe99 Binary files /dev/null and b/docs/userguide/ca/images/workshop-filetypes+attributes-images/filetypes-dvddb.png differ diff --git a/docs/userguide/ca/images/workshop-filetypes+attributes-images/filetypes-new-file-type.png b/docs/userguide/ca/images/workshop-filetypes+attributes-images/filetypes-new-file-type.png new file mode 100644 index 0000000000..97e926f72b Binary files /dev/null and b/docs/userguide/ca/images/workshop-filetypes+attributes-images/filetypes-new-file-type.png differ diff --git a/docs/userguide/ca/images/workshop-filetypes+attributes-images/query-dvddb.png b/docs/userguide/ca/images/workshop-filetypes+attributes-images/query-dvddb.png new file mode 100644 index 0000000000..7897ca38df Binary files /dev/null and b/docs/userguide/ca/images/workshop-filetypes+attributes-images/query-dvddb.png differ diff --git a/docs/userguide/ca/images/workshop-wlan-images/join-network.png b/docs/userguide/ca/images/workshop-wlan-images/join-network.png new file mode 100644 index 0000000000..2fedecda91 Binary files /dev/null and b/docs/userguide/ca/images/workshop-wlan-images/join-network.png differ diff --git a/docs/userguide/ca/images/workshop-wlan-images/join-status.gif b/docs/userguide/ca/images/workshop-wlan-images/join-status.gif new file mode 100644 index 0000000000..dea116d418 Binary files /dev/null and b/docs/userguide/ca/images/workshop-wlan-images/join-status.gif differ diff --git a/docs/userguide/ca/images/workspaces-images/workspaces.png b/docs/userguide/ca/images/workspaces-images/workspaces.png new file mode 100644 index 0000000000..015f05aa31 Binary files /dev/null and b/docs/userguide/ca/images/workspaces-images/workspaces.png differ diff --git a/docs/userguide/de/applications.html b/docs/userguide/de/applications.html index 00a45c3fce..c5a633d2cb 100644 --- a/docs/userguide/de/applications.html +++ b/docs/userguide/de/applications.html @@ -43,6 +43,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/activitymonitor.html b/docs/userguide/de/applications/activitymonitor.html index f5036587d7..fc33c40436 100644 --- a/docs/userguide/de/applications/activitymonitor.html +++ b/docs/userguide/de/applications/activitymonitor.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/bepdf.html b/docs/userguide/de/applications/bepdf.html index 47c9d7d9ea..ba799719e0 100644 --- a/docs/userguide/de/applications/bepdf.html +++ b/docs/userguide/de/applications/bepdf.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/bootmanager.html b/docs/userguide/de/applications/bootmanager.html index 6544a16d49..299ab52c60 100644 --- a/docs/userguide/de/applications/bootmanager.html +++ b/docs/userguide/de/applications/bootmanager.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/cdplayer.html b/docs/userguide/de/applications/cdplayer.html index 039d1af753..a79f2f5708 100644 --- a/docs/userguide/de/applications/cdplayer.html +++ b/docs/userguide/de/applications/cdplayer.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/charactermap.html b/docs/userguide/de/applications/charactermap.html index aad632c2b7..a3925326c3 100644 --- a/docs/userguide/de/applications/charactermap.html +++ b/docs/userguide/de/applications/charactermap.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/cli-apps.html b/docs/userguide/de/applications/cli-apps.html index 5c3b4c25d2..3817fe5e4f 100644 --- a/docs/userguide/de/applications/cli-apps.html +++ b/docs/userguide/de/applications/cli-apps.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/codycam.html b/docs/userguide/de/applications/codycam.html index d45fb29e1d..7e9c3f9956 100644 --- a/docs/userguide/de/applications/codycam.html +++ b/docs/userguide/de/applications/codycam.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/deskcalc.html b/docs/userguide/de/applications/deskcalc.html index c1a8c5584f..746185b0f3 100644 --- a/docs/userguide/de/applications/deskcalc.html +++ b/docs/userguide/de/applications/deskcalc.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -62,7 +64,7 @@


    Rechner ist ein einfacher Rechner, der aber trotzdem einige nette Funktionen hat, die allerdings nicht sofort ersichtlich sind.

    -deskcalc.png +deskcalc.png
    • Rechner kann viel mehr, als seine wenigen Tasten versprechen.
      Neben den Operatoren +, -, *, /, %, ^ und den Konstanten pi und e werden noch die folgenden mathematischen Funktionen unterstützt:
      diff --git a/docs/userguide/de/applications/diskprobe.html b/docs/userguide/de/applications/diskprobe.html index 5389f6728e..8c52d3128e 100644 --- a/docs/userguide/de/applications/diskprobe.html +++ b/docs/userguide/de/applications/diskprobe.html @@ -42,6 +42,8 @@

    • Português
    • Suomi
    • Slovenčina
    • +
    • Magyar
    • +
    • Português (Brazil)
    • English
    diff --git a/docs/userguide/de/applications/diskusage.html b/docs/userguide/de/applications/diskusage.html index db3e0a983d..3b4489f2cc 100644 --- a/docs/userguide/de/applications/diskusage.html +++ b/docs/userguide/de/applications/diskusage.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/drivesetup.html b/docs/userguide/de/applications/drivesetup.html index ac535f20f8..e49a8609ca 100644 --- a/docs/userguide/de/applications/drivesetup.html +++ b/docs/userguide/de/applications/drivesetup.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/expander.html b/docs/userguide/de/applications/expander.html index 630962194a..53505217d0 100644 --- a/docs/userguide/de/applications/expander.html +++ b/docs/userguide/de/applications/expander.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -65,14 +67,14 @@ Ein Doppelklick auf ein Archiv öffnet den Entpacker:

    expander.png

    - +
    QuelleALT Söffnet einen Dialog zur Auswahl eines Archivs
    QuelleALT Oöffnet einen Dialog zur Auswahl eines Archivs
    ZielALT Döffnet einen Dialog, um zu bestimmen wohin entpackt werden soll
    EntpackenALT Estartet das Entpacken; kann mit ALT K abgebrochen werden

    Der Inhalt des Archivs lässt sich mit Inhalt anzeigen oder ALT L anzeigen und verbergen.

    Entpacker kann lediglich ganze Archive entpacken.
    Nur einzelne Dateien eines Archivs auspacken, beziehungsweise Dateien entfernen oder hinzufügen, ist nicht möglich.
    -

    Über Einstellungen | Einstellungen... oder ALT P gelangt man zu den Einstellungen von Entpacker.
    +

    Über Einstellungen | Einstellungen... oder ALT S gelangt man zu den Einstellungen von Entpacker.
    Die Optionen sind selbsterklärend:

    expander-preferences.png

    diff --git a/docs/userguide/de/applications/icon-o-matic.html b/docs/userguide/de/applications/icon-o-matic.html index 35059a5855..dadde4aa4c 100644 --- a/docs/userguide/de/applications/icon-o-matic.html +++ b/docs/userguide/de/applications/icon-o-matic.html @@ -24,7 +24,7 @@ @@ -347,7 +349,7 @@ Natürlich kann der Marker verschoben werden, um den Farbverlauf anzupassen. Zus diff --git a/docs/userguide/de/applications/installer.html b/docs/userguide/de/applications/installer.html index a9ca8a91b3..e441ca9011 100644 --- a/docs/userguide/de/applications/installer.html +++ b/docs/userguide/de/applications/installer.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/list-cli-apps.html b/docs/userguide/de/applications/list-cli-apps.html index 1ec22a356e..1b863d761e 100644 --- a/docs/userguide/de/applications/list-cli-apps.html +++ b/docs/userguide/de/applications/list-cli-apps.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/magnify.html b/docs/userguide/de/applications/magnify.html index 28acecc065..a17e3877ca 100644 --- a/docs/userguide/de/applications/magnify.html +++ b/docs/userguide/de/applications/magnify.html @@ -43,6 +43,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -71,7 +73,7 @@ Das jeweils aktivierte, durch ein X markierte der beiden kann mit OPT / / / verschoben werden.

    Das Auswahlmenü oben rechts enthält mehrere Einträge:

    - + diff --git a/docs/userguide/de/applications/mail.html b/docs/userguide/de/applications/mail.html index 9fb1250207..e7f1f3e580 100644 --- a/docs/userguide/de/applications/mail.html +++ b/docs/userguide/de/applications/mail.html @@ -24,7 +24,7 @@ @@ -192,8 +194,8 @@ Entscheidet man sich gegen den Versand von Dateiattributen, darf man nicht verge diff --git a/docs/userguide/de/applications/mediaplayer.html b/docs/userguide/de/applications/mediaplayer.html index 27304b7a68..d50678d499 100644 --- a/docs/userguide/de/applications/mediaplayer.html +++ b/docs/userguide/de/applications/mediaplayer.html @@ -43,6 +43,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/midiplayer.html b/docs/userguide/de/applications/midiplayer.html index 97aba194f9..6f56047908 100644 --- a/docs/userguide/de/applications/midiplayer.html +++ b/docs/userguide/de/applications/midiplayer.html @@ -43,6 +43,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/packageinstaller.html b/docs/userguide/de/applications/packageinstaller.html index f85abdce62..41725cd50b 100644 --- a/docs/userguide/de/applications/packageinstaller.html +++ b/docs/userguide/de/applications/packageinstaller.html @@ -12,6 +12,7 @@ * Translators: * Matthias * taos + * Humdinger * --> @@ -41,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -52,7 +55,6 @@
    -
    Solange die Übersetzung dieser Seite noch nicht ganz fertig ist, erscheint für die noch fehlenden Teile die englische Version.

    packageinstaller-icon_64.pngPackageInstaller

    Bild speichernALT S Die aktuelle Darstellung wird als "Resource"-Datei gespeichert.
    Bild speichernALT O Die aktuelle Darstellung wird als "Resource"-Datei gespeichert.
    Bild kopierenALT C Die aktuelle Darstellung wird in die Ablage kopiert.
    Infos aus-/einblendenALT T Die Informationen im Programmfenster oben und unten werden ein/ausgeblendet.
    Fadenkreuz hinzufügenALT H Fügt ein von maximal zwei blauen Fadenkreuzen hinzu.
    @@ -61,19 +63,19 @@
    Einstellungen:keine


    -
    This page is currently only a first draft. Please check back later for a refined version.
    -

    PackageInstaller is a software installer for BeOS packages in PKG format. It provides an easy-to-use GUI that helps in fast package installation in Haiku.

    -

    It is being executed automatically when you try to open files with .pkg extension.

    +
    Diese Seite ist nur ein erster Entwurf, sie wird bestimmt irgendwann mal verbessert...
    +

    Der PackageInstaller ist ein Programm für die Installation von BeOS Paketen im PKG Format. Es besitzt eine einfach zu benutzende Oberfläche, mit der sich Pakete schnell installieren lassen.

    +

    Es startet automatisch wenn man Dateien mit der Endung .pkg öffnen will.

    packageinstaller.png -

    The main window gives access to two configurations:

    +

    Über das Hauptfenster gelangt man zu zwei Konfigurationen:

      -
    • type of installation (depending on the developer there might be more than one (standard) installation option).
    • -
    • Installation location (only entire partitions/hard disks can be chosen, not custom paths)
    • +
    • Installationstyp (je nach Entwickler kann es mehr als die eine (Standard) Installationsoption geben)
    • +
    • Installationsort (es können nur ganze Partitionen oder Festplatten ausgewählt werden, keine eigenen Pfade)
    -

    After clicking Install the extraction and installation process will begin.

    +

    Ein Klick auf "Installieren" startet Auspacken und Installation.

    packageinstaller-installer.png -

    At this point warnings and errors can appear saying which libraries and dependencies are missing in order to run the program. It might be required to install these packages before attempting to install desired program.

    -

    When the installation is complete, package should appear in the Deskbar applications menu.

    +

    An dieser Stelle können Warnungen und Fehler auftauchen, die anzeigen welche Bibliotheken und Abhängigkeiten noch fehlen, bevor das Programm lauffähig ist. Möglicherweise müssen diese Pakete zuerst installiert werden, bevor das eigentliche Paket installiert werden kann.

    +

    Ist die Installation abgeschlossen, sollte die installierte Anwendung im Anwendungs-Menü der Deskbar erscheinen.

    diff --git a/docs/userguide/de/applications/pe.html b/docs/userguide/de/applications/pe.html index 61be174606..4f68042875 100644 --- a/docs/userguide/de/applications/pe.html +++ b/docs/userguide/de/applications/pe.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/people.html b/docs/userguide/de/applications/people.html index 63da5f95c5..e78ea3e535 100644 --- a/docs/userguide/de/applications/people.html +++ b/docs/userguide/de/applications/people.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/poorman.html b/docs/userguide/de/applications/poorman.html index 6632a9c1d7..7c0dc2e857 100644 --- a/docs/userguide/de/applications/poorman.html +++ b/docs/userguide/de/applications/poorman.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/screenshot.html b/docs/userguide/de/applications/screenshot.html index d543de3979..b5e747adf0 100644 --- a/docs/userguide/de/applications/screenshot.html +++ b/docs/userguide/de/applications/screenshot.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/showimage.html b/docs/userguide/de/applications/showimage.html index a249b6126f..fb3239f349 100644 --- a/docs/userguide/de/applications/showimage.html +++ b/docs/userguide/de/applications/showimage.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/soundrecorder.html b/docs/userguide/de/applications/soundrecorder.html index 0275b0724f..258217fe12 100644 --- a/docs/userguide/de/applications/soundrecorder.html +++ b/docs/userguide/de/applications/soundrecorder.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/stylededit.html b/docs/userguide/de/applications/stylededit.html index d5b7edf4a3..13f7e739f9 100644 --- a/docs/userguide/de/applications/stylededit.html +++ b/docs/userguide/de/applications/stylededit.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/terminal.html b/docs/userguide/de/applications/terminal.html index 705158f026..3cb22d0828 100644 --- a/docs/userguide/de/applications/terminal.html +++ b/docs/userguide/de/applications/terminal.html @@ -43,6 +43,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/textsearch.html b/docs/userguide/de/applications/textsearch.html index 7570da5268..d59130a482 100644 --- a/docs/userguide/de/applications/textsearch.html +++ b/docs/userguide/de/applications/textsearch.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/tv.html b/docs/userguide/de/applications/tv.html index 6dfddf450f..00efef057e 100644 --- a/docs/userguide/de/applications/tv.html +++ b/docs/userguide/de/applications/tv.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/vision.html b/docs/userguide/de/applications/vision.html index 99487c7475..e8ba3fc0af 100644 --- a/docs/userguide/de/applications/vision.html +++ b/docs/userguide/de/applications/vision.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/webpositive.html b/docs/userguide/de/applications/webpositive.html index 83de177ab6..066bcfcdfa 100644 --- a/docs/userguide/de/applications/webpositive.html +++ b/docs/userguide/de/applications/webpositive.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/applications/wonderbrush.html b/docs/userguide/de/applications/wonderbrush.html index 64f26b5de9..9c3f4479a8 100644 --- a/docs/userguide/de/applications/wonderbrush.html +++ b/docs/userguide/de/applications/wonderbrush.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/attributes.html b/docs/userguide/de/attributes.html index a6a939f56d..cb25ba777c 100644 --- a/docs/userguide/de/attributes.html +++ b/docs/userguide/de/attributes.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/bash-scripting.html b/docs/userguide/de/bash-scripting.html index 72d68247ec..91d78cac48 100644 --- a/docs/userguide/de/bash-scripting.html +++ b/docs/userguide/de/bash-scripting.html @@ -43,6 +43,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/bootloader.html b/docs/userguide/de/bootloader.html index 1d9bad4441..617e0479c3 100644 --- a/docs/userguide/de/bootloader.html +++ b/docs/userguide/de/bootloader.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/de/contents.html b/docs/userguide/de/contents.html index 70bc3c7203..1297e3a4b6 100644 --- a/docs/userguide/de/contents.html +++ b/docs/userguide/de/contents.html @@ -4,7 +4,7 @@ diff --git a/docs/userguide/de/preferences/fonts.html b/docs/userguide/de/preferences/fonts.html index 021c7ae51b..5d0b53fc73 100644 --- a/docs/userguide/de/preferences/fonts.html +++ b/docs/userguide/de/preferences/fonts.html @@ -42,17 +42,22 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  FileTypes  -::  Einstellungen  -::  Keyboard  » + « FileTypes +:: Einstellungen +:: Keyboard »
    +
    Solange die Übersetzung dieser Seite noch nicht ganz fertig ist, erscheint für die noch fehlenden Teile die englische Version.
    + +

    Since "Fonts" moved into the Appearance panel, this is an outdated page. Do not translate!

    fonts-icon_64.pngSchriftarten

    @@ -65,8 +70,8 @@ fonts.png

    Haiku verwendet systemweit drei verschiedene Schriftarten. Sie können hier unter "Normal", "Fett" und "Feste Breite" (Schrift mit fester Buchstabenbreite) festgelegt werden. Daneben kann auch noch die Schriftart für Menüs eingestellt werden.

    - - + +
    Standardwerte setzt alles auf Standardwerte zurück.
    Anfangswerte stellt den Zustand wieder her, der beim Start von "Fonts" aktiv war.
    Standardwerte setzt alles auf Standardwerte zurück.
    Anfangswerte stellt den Zustand wieder her, der beim Start von "Fonts" aktiv war.

    @@ -79,9 +84,9 @@ diff --git a/docs/userguide/de/preferences/keyboard.html b/docs/userguide/de/preferences/keyboard.html index efbdc425e9..98e8aea171 100644 --- a/docs/userguide/de/preferences/keyboard.html +++ b/docs/userguide/de/preferences/keyboard.html @@ -42,10 +42,12 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  Fonts  + «  FileTypes  ::  Einstellungen  ::  Keymap  »

    @@ -74,7 +76,7 @@ + + + + Workshop: Funknetzwerke nutzen + + + + + + + + +
    +
    + + + + + +
    Index
    + Unterstützte Hardware zum Laufen bringen
    + Mit einem Funknetzwerk verbinden
    + Vom Terminal aus verbinden
    + Tipps +
    + +

    Workshop: Funknetzwerke nutzen

    + +

    Bei der heutzutage üblichen Drang zur permanenten Internetverbindung ist es unerlässlich eine funktionierende Netzwerkumgebung zu haben. Weil es für ein so kleines Projekt wie Haiku unmöglich ist mit der laufend neuen Hardware und ihre Treiber Schritt zu halten, verlässt sich Haiku auf eine FreeBSD Kompatibilitätsschicht für seine Netzwerktreiber.
    +Dadurch erhält man eine große Anzahl an unterstützter Hardware, wenn auch wahrscheinlich nicht für alles was es so gibt. Online existiert eine Liste unterstützter Hardware und FreeBSD 9's Release Hardware Notes.

    +
    Zur Zeit werden nur PCI, PCI-X, PCI-Express, Mini PCI, und Mini PCI-Express Geräte unterstützt.
    +PCMCIA, CardBus, ExpressCard, USB und ISA Geräte funktionieren noch nicht.
    + +

    +index +Unterstützte Hardware zum Laufen bringen

    +

    Selbst wenn die erste Hürde von generell unterstützter Hardware genommen ist, benötigen einige Funknetzkarten noch Firmware Module um richtig zu funktionieren. Einige dieser proprietären Firmwaredateien dürfen aus lizenzrechtlichen Gründen nicht mit Haiku geliefert werden. Haiku bietet allerdings ein einfaches Skript, das alle benötigten Dateien herunterlädt und installiert. Wer drahtlos online gehen möchte, sollte das Skript ausführen um sicherzugehen, dass alle eventuell benötigten Firmwaredateien an Bord sind.

    +

    Dazu öffnet man ein Terminal und schreibt:

    +
    install-wifi-firmwares.sh
    +

    Nun werden die entsprechenden Lizenzen angezeigt, die akzeptiert werden müssen bevor die Firmwaredateien installiert werden.

    + +

    Besteht keine Internetverbindung, um die fehlenden Firmwaredateien unter Haiku herunterzuladen, gibt es auch eine Offline-Methode, siehe Tipps weiter unten.

    + +

    +index +Mit einem Funknetzwerk verbinden

    +

    Standardmäßig wird nach dem Booten automatisch mit dem ersten nicht-verschlüsselten Netzwerk verbunden. Mit der Desktop-App Networkstatus kann man mit einem spezifischen Netzwerk Kontakt aufnehmen.

    +

    Ein Rechtsklick auf dessen Icon in der Deskbar zeigt ein Kontextmenü, aus dem der öffentliche Name (die gesendete "SSID") des Netzwerks gewählt wird.

    +join-network.png +

    Es öffnet sich ein Fenster, in dem die Art der Authentifizierung gewählt (wahrscheinlich WPA/WPA2, WEP ist keine sichere Verschlüsselung mehr!) und das Passwort für dieses Funknetzwerk eingegeben werden kann. OK beginnt den Login-Prozess.
    +Je nach verwendeter Hardware und Konfiguration kann das eine Weile dauern. Über den Fortschritt wird durch Benachrichtigungen informiert:

    +join-network.gif +

    Sobald "Ready" angezeigt wird und das Netzwerkstatus-Icon in der Deskbar ein rundes grünes Licht anzeigt, ist die Verbindung aufgebaut. Enden die Benachrichtigungen mit "No link" und einem gelben Dreieck als Icon, ging etwas schief, wahrscheinlich ein falsches Passwort.

    + +

    +index +Vom Terminal aus verbinden

    +

    Wer die Konsole bevorzugt oder Skripte nutzen möchte oder das ~/Konfiguration/boot/UserBootscript, um sich nach dem Hochfahren automatisch mit einem bestimmten Funknetzwerk zu verbinden, für den gibt es den Befehl ifconfig.

    +

    Um nach verfügbaren Funknetzwerken zu suchen, öffnet man ein Terminal und gibt die erste Zeile ein:

    +
    ifconfig /dev/net/iprowifi3945/0 scan
    +name                             address              signal  auth
    +haiku-top                        01:d0:19:a6:88:42        30  WPA
    +ArcorInternet123                 00:20:12:a4:29:e1        15  WPA
    +

    Der Pfad zum eigenen Funknetzwerk-Adapter muss selbstverständlich entsprechend angepasst werden.
    +Die Ausgabe zeigt den öffenlichen Namen (SSID), die MAC Adresse, Signalstärke und Authentifizierungsmethode aller gefundenen Netzwerke.

    +

    Mit folgender Befehlszeile wird mit einem bestimmten Funknetzwerk Verbindung aufgenommen. Einzusetzen ist der entsprechende öffentliche Name (SSID) und das zugehörige Passwort.

    +
    ifconfig /dev/net/iprowifi3945/0 join {SSID} {Passwort}
    +

    Bevor man ifconfig Befehle absetzt, sollte man warten bis die erste Konfiguration des Funknetzwerk-Adapters nach dem Hochfahren abgeschlossen ist, da diese ansonsten eventuell ignoriert werden. Je nach verwendeter Hardware und Konfiguration kann das eine Weile dauern. Am besten man hat ein Auge auf die Benachrichtigungen...

    + +

    +index +Tipps

    + + +
    +
    + + + + + diff --git a/docs/userguide/de/workspaces.html b/docs/userguide/de/workspaces.html index b1899005e9..19cdef184c 100644 --- a/docs/userguide/de/workspaces.html +++ b/docs/userguide/de/workspaces.html @@ -44,6 +44,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/en/applications.html b/docs/userguide/en/applications.html index f38910de42..e451e09695 100644 --- a/docs/userguide/en/applications.html +++ b/docs/userguide/en/applications.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • « Workshop diff --git a/docs/userguide/en/applications/activitymonitor.html b/docs/userguide/en/applications/activitymonitor.html index cb8d5241f4..d56fe0435f 100644 --- a/docs/userguide/en/applications/activitymonitor.html +++ b/docs/userguide/en/applications/activitymonitor.html @@ -39,6 +39,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • Applications  diff --git a/docs/userguide/en/applications/bepdf.html b/docs/userguide/en/applications/bepdf.html index a154bd06a8..2fa0ca31d2 100644 --- a/docs/userguide/en/applications/bepdf.html +++ b/docs/userguide/en/applications/bepdf.html @@ -39,6 +39,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • diff --git a/docs/userguide/en/preferences/fonts.html b/docs/userguide/en/preferences/fonts.html index 024dcca00e..0b8ee95686 100644 --- a/docs/userguide/en/preferences/fonts.html +++ b/docs/userguide/en/preferences/fonts.html @@ -39,17 +39,21 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • - «  FileTypes  -::  Preferences  -::  Keyboard  » + « FileTypes +:: Preferences +:: Keyboard »
    +

    Since "Fonts" moved into the Appearance panel, this is an outdated page. Do not translate!

    +

    fonts-icon_64.pngFonts

    @@ -61,8 +65,8 @@ fonts.png

    Haiku defines three standard fonts for different purposes. You set plain, bold and fixed font types and sizes that will be used throughout the system. Besides these, there's also a separate setting for the font used in menus.

    Deskbar:Preferences
    - - + +
    Defaults resets everything to default values.
    Revert brings back the settings that were active when you started the Fonts preferences.
    Defaults resets everything to default values.
    Revert brings back the settings that were active when you started the Fonts preferences.

    @@ -75,9 +79,9 @@ diff --git a/docs/userguide/en/preferences/keyboard.html b/docs/userguide/en/preferences/keyboard.html index 55af9047a6..11d120d4b2 100644 --- a/docs/userguide/en/preferences/keyboard.html +++ b/docs/userguide/en/preferences/keyboard.html @@ -39,9 +39,11 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • - «  Fonts  + «  FileTypes  ::  Preferences  ::  Keymap  »

    @@ -70,7 +72,7 @@ + + + + Workshop: Wireless networking + + + + + + + + +
    +
    + + + + + +
    Index
    + Getting supported hardware to work
    + Joining a wireless network
    + Joining from the command line
    + Tips +
    + +

    Workshop: Wireless networking

    + +

    Getting the networking to run is essential in today's need for permanent internet connection. As keeping up to date with all the different and ever changing hardware and drivers is quite impossible for a small project, Haiku relies on a FreeBSD compatibility layer for its networking drivers.
    +This ensures a massive amount of supported hardware, though probably not 100% of what's out there. See this list online for a list of supported models or check FreeBSD 9's release hardware notes.

    +
    Currently only PCI, PCI-X, PCI-Express, Mini PCI, and Mini PCI-Express devices are expected to work.
    +PCMCIA, CardBus, ExpressCard, USB and ISA devices still need more work to become functional.
    + +

    +index +Getting supported hardware to work

    +

    Even if the first hurdle of generally supported hardware is taken, some wireless network cards require binary firmware modules to properly operate. Haiku cannot include some of these proprietary firmware files due to licensing issues. Haiku does however include a simple script which will retrieve and install all of the needed proprietary bits for you. Generally, if you are planning to use wireless networking, it is a good idea to run this script to ensure your system has all of these firmwares available when they are needed.

    +

    Open a Terminal and type:

    +
    install-wifi-firmwares.sh
    +

    Now review the licenses and accept them to install all of the available firmware files.

    + +

    If you don't have internet access to download those lacking firmwares under Haiku, there's an offline method, see under tips below.

    + +

    +index +Joining a wireless network

    +

    By default, Haiku will join the first unencrypted wireless network it finds after booting up. To connect to a specific network, you use the Desktop applet NetworkStatus.

    +

    Right-click on its icon in the Deskbar and choose the network's public name (which is the "SSID" it broadcasts) from the context menu.

    +join-network.png +

    A window opens where you enter the type of authentication (probably WPA/WPA2, WEP is not a secure encryption anymore!) and the password for that wireless network. Click OK to start the login process.
    Depending on your hardware and network configuration this may take a while. You'll be kept informed of the progress by notifications:

    +join-network.gif +

    Once it reads "Ready" and the NetworkStatus icon in the Deskbar shows a green round light, the connection is established. If the notifications end in "No link" and a yellow triangle, something went wrong, probably an incorrect password.

    + +

    +index +Joining from the command line

    +

    If you prefer to use the command line or would like to use scripting or the ~/config/boot/UserBootscript to automate things to join a specific network on bootup, there's the command ifconfig.

    +

    Start a Terminal and enter the first line to scan for available wireless networks:

    +
    ifconfig /dev/net/iprowifi3945/0 scan
    +name                             address              signal  auth
    +haiku-top                        01:d0:19:a6:88:42        30  WPA
    +ArcorInternet123                 00:20:12:a4:29:e1        15  WPA
    +

    The path to your wireless network adapter has to be adjusted, of course.
    +The output shows the public name (SSID), MAC address, signal strength and authentication method of all found networks.

    +

    To join a network, use this line and insert the respective public name (SSID) and password:

    +
    ifconfig /dev/net/iprowifi3945/0 join {SSID} {password}
    +

    Make sure the initial configuration of the wireless network adapter after booting up has finished, before issuing ifconfig commands or they might be ignored. Depending on your hardware and network configuration that may take a while. Watch those notifications...

    + +

    +index +Tips

    + + +
    +
    + + + + + diff --git a/docs/userguide/en/workspaces.html b/docs/userguide/en/workspaces.html index 9ee6221fb4..5d140b52b4 100644 --- a/docs/userguide/en/workspaces.html +++ b/docs/userguide/en/workspaces.html @@ -39,6 +39,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • « Haiku's GUI diff --git a/docs/userguide/es/applications.html b/docs/userguide/es/applications.html index b0169e739f..fe577d0ad1 100644 --- a/docs/userguide/es/applications.html +++ b/docs/userguide/es/applications.html @@ -45,6 +45,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/activitymonitor.html b/docs/userguide/es/applications/activitymonitor.html index 1ca249dcd0..0741110c26 100644 --- a/docs/userguide/es/applications/activitymonitor.html +++ b/docs/userguide/es/applications/activitymonitor.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/bepdf.html b/docs/userguide/es/applications/bepdf.html index 99f2ade8cf..ebafb80b0a 100644 --- a/docs/userguide/es/applications/bepdf.html +++ b/docs/userguide/es/applications/bepdf.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/bootmanager.html b/docs/userguide/es/applications/bootmanager.html index a19ad352b2..54c1c235fe 100644 --- a/docs/userguide/es/applications/bootmanager.html +++ b/docs/userguide/es/applications/bootmanager.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/cdplayer.html b/docs/userguide/es/applications/cdplayer.html index 50216ffaaf..6c3574bcdc 100644 --- a/docs/userguide/es/applications/cdplayer.html +++ b/docs/userguide/es/applications/cdplayer.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/charactermap.html b/docs/userguide/es/applications/charactermap.html index 7bc895784b..45fdea45d3 100644 --- a/docs/userguide/es/applications/charactermap.html +++ b/docs/userguide/es/applications/charactermap.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/cli-apps.html b/docs/userguide/es/applications/cli-apps.html index 3287b2b452..d6333c5cfe 100644 --- a/docs/userguide/es/applications/cli-apps.html +++ b/docs/userguide/es/applications/cli-apps.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/codycam.html b/docs/userguide/es/applications/codycam.html index f450fdbe30..11b91f37a3 100644 --- a/docs/userguide/es/applications/codycam.html +++ b/docs/userguide/es/applications/codycam.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/deskcalc.html b/docs/userguide/es/applications/deskcalc.html index 74871bfdc7..6ecd436b79 100644 --- a/docs/userguide/es/applications/deskcalc.html +++ b/docs/userguide/es/applications/deskcalc.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -61,7 +63,7 @@


    DeskCalc es una calculadora simple que sin embargo tiene algunas características agradables que no están aparentemente a primera vista.

    -deskcalc.png +deskcalc.png
    • DeskCalc entiende mucho más que lo que su simple teclado numérico sugiere.
      Además de los operadores +, -, *, /, %, ^ y las costantes pi y e se soportan las siguientes funciones matemáticas:
      diff --git a/docs/userguide/es/applications/diskprobe.html b/docs/userguide/es/applications/diskprobe.html index 4bb52a8200..c99f456b7a 100644 --- a/docs/userguide/es/applications/diskprobe.html +++ b/docs/userguide/es/applications/diskprobe.html @@ -42,6 +42,8 @@

    • Português
    • Suomi
    • Slovenčina
    • +
    • Magyar
    • +
    • Português (Brazil)
    • English
    diff --git a/docs/userguide/es/applications/diskusage.html b/docs/userguide/es/applications/diskusage.html index bfef6c36c4..8f42ad5182 100644 --- a/docs/userguide/es/applications/diskusage.html +++ b/docs/userguide/es/applications/diskusage.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/drivesetup.html b/docs/userguide/es/applications/drivesetup.html index 88c7965184..4ead3e14e8 100644 --- a/docs/userguide/es/applications/drivesetup.html +++ b/docs/userguide/es/applications/drivesetup.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/expander.html b/docs/userguide/es/applications/expander.html index b86b562a7b..af1ba62ae8 100644 --- a/docs/userguide/es/applications/expander.html +++ b/docs/userguide/es/applications/expander.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -51,6 +53,7 @@
    +
    La traducción de esta página no está completa aún. Hasta que esté, las partes sin terminar vienen en su inglés original.

    expander-icon_64.pngExpander

    @@ -63,15 +66,15 @@ Sólo clique dos veces sobre un archivo comprimido para ver esta simple interfaz:

    expander.png

    - +
    FuenteALT Sabre un cuadro de diálogo para localizar un fichero comprimido a desempaquetar.
    FuenteALT Oabre un cuadro de diálogo para localizar un fichero comprimido a desempaquetar.
    DestinoALT Dabre un cuadro de diálogo para escoger el destino.
    ExpandirALT Eempieza la descompresión. Puede cancelarse con ALT K.

    Es posible cambiar la lista de visualización del archivo marcando o no la opción Mostrar Contenido, o presionando ALT L.

    Expander sólamente puede descomprimir archivos completos.
    No es posible seleccionar archivos individuales para descomprimir o añadir/eliminar archivos al fichero comprimido.
    -

    Editar | Preferenceias... or ALT P abre un panel de preferencias que ofrece algunas configuraciones útiles para regular el comportamiento de Expander.
    -Las opciones se autoexplican:

    +

    Settings | Settings... or ALT S opens a preference panel that offers some useful settings to adjust Expander's behavior.
    +The options are all self-explanatory:

    expander-preferences.png

    diff --git a/docs/userguide/es/applications/icon-o-matic.html b/docs/userguide/es/applications/icon-o-matic.html index 8ee3805b13..0b16737a8f 100644 --- a/docs/userguide/es/applications/icon-o-matic.html +++ b/docs/userguide/es/applications/icon-o-matic.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/installer.html b/docs/userguide/es/applications/installer.html index 55316397be..a90fd3831b 100644 --- a/docs/userguide/es/applications/installer.html +++ b/docs/userguide/es/applications/installer.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/list-cli-apps.html b/docs/userguide/es/applications/list-cli-apps.html index 70c1f210fa..b2a077620c 100644 --- a/docs/userguide/es/applications/list-cli-apps.html +++ b/docs/userguide/es/applications/list-cli-apps.html @@ -39,6 +39,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -277,7 +279,7 @@ Here's a list of all commandline applications that are shipped with Haiku. Each stty Shows/sets terminal characteristics. su Changes the effective user id and group. sum Prints checksum and block counts for each file. -sync Forces changed blocks to disk, updates the super block. +sync Forces changed blocks to disk, updates the superblock. sysinfo Shows system info.

    indexT

    tac Concatenates and prints files, last line first. diff --git a/docs/userguide/es/applications/magnify.html b/docs/userguide/es/applications/magnify.html index ac48bd7909..c85aa65baf 100644 --- a/docs/userguide/es/applications/magnify.html +++ b/docs/userguide/es/applications/magnify.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/mail.html b/docs/userguide/es/applications/mail.html index b63828f9d8..2d084da53f 100644 --- a/docs/userguide/es/applications/mail.html +++ b/docs/userguide/es/applications/mail.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/mediaplayer.html b/docs/userguide/es/applications/mediaplayer.html index ae900d91a6..4417326984 100644 --- a/docs/userguide/es/applications/mediaplayer.html +++ b/docs/userguide/es/applications/mediaplayer.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/midiplayer.html b/docs/userguide/es/applications/midiplayer.html index cffab508c4..6ddc85db1f 100644 --- a/docs/userguide/es/applications/midiplayer.html +++ b/docs/userguide/es/applications/midiplayer.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/packageinstaller.html b/docs/userguide/es/applications/packageinstaller.html index 0385f2e7a7..17de1a64d3 100644 --- a/docs/userguide/es/applications/packageinstaller.html +++ b/docs/userguide/es/applications/packageinstaller.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -66,7 +68,7 @@ packageinstaller.png

    The main window gives access to two configurations:

      -
    • type of installation (depending on the developer there might be more than one (standard) installation option).
    • +
    • installation type (depending on the developer there might be more than one (standard) installation option)
    • Installation location (only entire partitions/hard disks can be chosen, not custom paths)

    After clicking Install the extraction and installation process will begin.

    diff --git a/docs/userguide/es/applications/pe.html b/docs/userguide/es/applications/pe.html index 63ebd8cf20..9efe837ca0 100644 --- a/docs/userguide/es/applications/pe.html +++ b/docs/userguide/es/applications/pe.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/people.html b/docs/userguide/es/applications/people.html index 2280bdf43c..91d2e65237 100644 --- a/docs/userguide/es/applications/people.html +++ b/docs/userguide/es/applications/people.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/poorman.html b/docs/userguide/es/applications/poorman.html index bc5d5fb22f..be01126b59 100644 --- a/docs/userguide/es/applications/poorman.html +++ b/docs/userguide/es/applications/poorman.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/screenshot.html b/docs/userguide/es/applications/screenshot.html index e9619d27da..ffbfb85a4f 100644 --- a/docs/userguide/es/applications/screenshot.html +++ b/docs/userguide/es/applications/screenshot.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/showimage.html b/docs/userguide/es/applications/showimage.html index f1c7dee5dd..da606c73db 100644 --- a/docs/userguide/es/applications/showimage.html +++ b/docs/userguide/es/applications/showimage.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -67,7 +69,7 @@ ShowImage provides minimal editing features to crop, rotate and flip images and

    The View menu offers to start a Slide show of all images in a folder (or query result window) and set a Slide delay from 2 to 20 seconds.

    Other commands apply to the currently displayed image (without changing the size of the window):
    Original size shows the image with a 100% zoom factor.
    -Fit to window shrinks the image back into the window fame, e.g. after having zoomed into it or after resizing the window.
    +Fit to window shrinks the image back into the window frame, e.g. after having zoomed into it or after resizing the window.
    Zoom in and Zoom out move into and out of the image in 10% steps. Zooming is also done with the mouse wheel; to pan an image bigger than the window, simply left-click and drag your mouse around.

    Two settings don't just apply to the currently displayed image and are remembered when browsing from one image to the next:
    High quality zooming applies a very fast filter when zooming to reduce jagged lines and produce a smoother result.
    diff --git a/docs/userguide/es/applications/soundrecorder.html b/docs/userguide/es/applications/soundrecorder.html index 4af3366dd9..db438a1d94 100644 --- a/docs/userguide/es/applications/soundrecorder.html +++ b/docs/userguide/es/applications/soundrecorder.html @@ -40,6 +40,8 @@

  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/stylededit.html b/docs/userguide/es/applications/stylededit.html index 2adffef42c..02a7e4f1ff 100644 --- a/docs/userguide/es/applications/stylededit.html +++ b/docs/userguide/es/applications/stylededit.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/terminal.html b/docs/userguide/es/applications/terminal.html index c33030326d..cc5f124e20 100644 --- a/docs/userguide/es/applications/terminal.html +++ b/docs/userguide/es/applications/terminal.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/textsearch.html b/docs/userguide/es/applications/textsearch.html index 24073af961..7aab3f9b9d 100644 --- a/docs/userguide/es/applications/textsearch.html +++ b/docs/userguide/es/applications/textsearch.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/tv.html b/docs/userguide/es/applications/tv.html index 556e4c21e7..cd07ce9e90 100644 --- a/docs/userguide/es/applications/tv.html +++ b/docs/userguide/es/applications/tv.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/vision.html b/docs/userguide/es/applications/vision.html index b2f7b052f5..951acda0bf 100644 --- a/docs/userguide/es/applications/vision.html +++ b/docs/userguide/es/applications/vision.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/webpositive.html b/docs/userguide/es/applications/webpositive.html index 06d0aa07f0..f9c0c1e11e 100644 --- a/docs/userguide/es/applications/webpositive.html +++ b/docs/userguide/es/applications/webpositive.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/applications/wonderbrush.html b/docs/userguide/es/applications/wonderbrush.html index 36d6b0338a..614d2d0fd6 100644 --- a/docs/userguide/es/applications/wonderbrush.html +++ b/docs/userguide/es/applications/wonderbrush.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/attributes.html b/docs/userguide/es/attributes.html index ac3681dcec..3711c995cc 100644 --- a/docs/userguide/es/attributes.html +++ b/docs/userguide/es/attributes.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/bash-scripting.html b/docs/userguide/es/bash-scripting.html index 09baeea64b..1001f67390 100644 --- a/docs/userguide/es/bash-scripting.html +++ b/docs/userguide/es/bash-scripting.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/bootloader.html b/docs/userguide/es/bootloader.html index b671b75ced..f2d23f75c6 100644 --- a/docs/userguide/es/bootloader.html +++ b/docs/userguide/es/bootloader.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/es/contents.html b/docs/userguide/es/contents.html index 94aa2289b6..114519a681 100644 --- a/docs/userguide/es/contents.html +++ b/docs/userguide/es/contents.html @@ -4,7 +4,7 @@ diff --git a/docs/userguide/es/preferences/fonts.html b/docs/userguide/es/preferences/fonts.html index c49794d904..cd123859ef 100644 --- a/docs/userguide/es/preferences/fonts.html +++ b/docs/userguide/es/preferences/fonts.html @@ -41,12 +41,14 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  Tipos de archivo  -::  Preferencias  -::  Teclado  » + « Tipos de archivo +:: Preferencias +:: Teclado »
    @@ -54,6 +56,8 @@
    La traducción de esta página no está completa aún. Hasta que esté, las partes sin terminar vienen en su inglés original.
    +

    Since "Fonts" moved into the Appearance panel, this is an outdated page. Do not translate!

    +

    fonts-icon_64.pngFonts

    @@ -65,8 +69,8 @@ fonts.png

    Haiku define tres tipos de letra estándar para diferentes propósitos. Aquí se pueden especificar los tipos de letra para la tipografía normal, negrita y monoespaciada que se utiliza en las diferentes partes del sistema. Además de estos, hay también una configuración separada para el tipo de letra usada en los menús.

    Deskbar:Preferencias
    - - + +
    Defaults (predeterminado) regresa todo a los valores predeterminados.
    Revert regresa a las selecciones que estaban activas cuando se abrió el cuadro de diálogo Fonts.
    Defaults (predeterminado) regresa todo a los valores predeterminados.
    Revert regresa a las selecciones que estaban activas cuando se abrió el cuadro de diálogo Fonts.

    @@ -79,9 +83,9 @@ diff --git a/docs/userguide/es/preferences/keyboard.html b/docs/userguide/es/preferences/keyboard.html index bbb3a5c04e..d8f539ea53 100644 --- a/docs/userguide/es/preferences/keyboard.html +++ b/docs/userguide/es/preferences/keyboard.html @@ -40,10 +40,12 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  Tipografías  + «  Tipos de archivo  ::  Preferencias  ::  Distribución de teclado  »

    @@ -72,7 +74,7 @@ + + + + Workshop: Wireless networking + + + + + + + + +
    +
    +
    La traducción de esta página no está completa aún. Hasta que esté, las partes sin terminar vienen en su inglés original.
    + + + + + +
    Index
    + Getting supported hardware to work
    + Joining a wireless network
    + Joining from the command line
    + Tips +
    + +

    Workshop: Wireless networking

    + +

    Getting the networking to run is essential in today's need for permanent internet connection. As keeping up to date with all the different and ever changing hardware and drivers is quite impossible for a small project, Haiku relies on a FreeBSD compatibility layer for its networking drivers.
    +This ensures a massive amount of supported hardware, though probably not 100% of what's out there. See this list online for a list of supported models or check FreeBSD 9's release hardware notes.

    +
    Currently only PCI, PCI-X, PCI-Express, Mini PCI, and Mini PCI-Express devices are expected to work.
    +PCMCIA, CardBus, ExpressCard, USB and ISA devices still need more work to become functional.
    + +

    +index +Getting supported hardware to work

    +

    Even if the first hurdle of generally supported hardware is taken, some wireless network cards require binary firmware modules to properly operate. Haiku cannot include some of these proprietary firmware files due to licensing issues. Haiku does however include a simple script which will retrieve and install all of the needed proprietary bits for you. Generally, if you are planning to use wireless networking, it is a good idea to run this script to ensure your system has all of these firmwares available when they are needed.

    +

    Open a Terminal and type:

    +
    install-wifi-firmwares.sh
    +

    Now review the licenses and accept them to install all of the available firmware files.

    + +

    If you don't have internet access to download those lacking firmwares under Haiku, there's an offline method, see under tips below.

    + +

    +index +Joining a wireless network

    +

    By default, Haiku will join the first unencrypted wireless network it finds after booting up. To connect to a specific network, you use the Desktop applet NetworkStatus.

    +

    Right-click on its icon in the Deskbar and choose the network's public name (which is the "SSID" it broadcasts) from the context menu.

    +join-network.png +

    A window opens where you enter the type of authentication (probably WPA/WPA2, WEP is not a secure encryption anymore!) and the password for that wireless network. Click OK to start the login process.
    Depending on your hardware and network configuration this may take a while. You'll be kept informed of the progress by notifications:

    +join-network.gif +

    Once it reads "Ready" and the NetworkStatus icon in the Deskbar shows a green round light, the connection is established. If the notifications end in "No link" and a yellow triangle, something went wrong, probably an incorrect password.

    + +

    +index +Joining from the command line

    +

    If you prefer to use the command line or would like to use scripting or the ~/config/boot/UserBootscript to automate things to join a specific network on bootup, there's the command ifconfig.

    +

    Start a Terminal and enter the first line to scan for available wireless networks:

    +
    ifconfig /dev/net/iprowifi3945/0 scan
    +name                             address              signal  auth
    +haiku-top                        01:d0:19:a6:88:42        30  WPA
    +ArcorInternet123                 00:20:12:a4:29:e1        15  WPA
    +

    The path to your wireless network adapter has to be adjusted, of course.
    +The output shows the public name (SSID), MAC address, signal strength and authentication method of all found networks.

    +

    To join a network, use this line and insert the respective public name (SSID) and password:

    +
    ifconfig /dev/net/iprowifi3945/0 join {SSID} {password}
    +

    Make sure the initial configuration of the wireless network adapter after booting up has finished, before issuing ifconfig commands or they might be ignored. Depending on your hardware and network configuration that may take a while. Watch those notifications...

    + +

    +index +Tips

    + + +
    +
    + + + + + diff --git a/docs/userguide/es/workspaces.html b/docs/userguide/es/workspaces.html index 3fca957d67..71a4697172 100644 --- a/docs/userguide/es/workspaces.html +++ b/docs/userguide/es/workspaces.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fi/applications.html b/docs/userguide/fi/applications.html index 174f04d297..20adde5a0c 100644 --- a/docs/userguide/fi/applications.html +++ b/docs/userguide/fi/applications.html @@ -9,19 +9,21 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Applications + Sovellukset
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    Applications

    +

    Sovellukset

    -

    Before diving into all the applications that come with Haiku, let's have a more detailed look at how to install and uninstall programs you downloaded somewhere, for example from a site mentioned on the Welcome page.

    -
    You should only unpack/install archives within Haiku. If you extract a package under Linux or Windows, for example, and just copy the folder over to Haiku later, all the vital attributes are stripped, because those operating systems don't normally handle meta data.
    +

    Ennen kuin sukelletaan Haikun mukana tuleviin sovelluksiin, vilkaistaan yksityiskohtaisemmin kuinka asennetaan ja poistetaan sovelluksia, jotka lataat jostain muualta, esimerkiksi +Tervetuloa-sivustolla mainituilta sivuilta.

    +
    Arkistot pitäisi purkaa ja asentaa vain Haikun alaisena. Jos purat pakkauksen esimerkiksi Linux- tai Windows-ympäristössä, ja myöhemmin vain kopioit kansion Haikuun, kaikki elintärkeät attribuutit riisutaan pois, koska nuo käyttöjärjestelmät eivät normaalisti käsittele metatietoja.

    index -Installing applications

    -

    Haiku software always comes as an archive. Most of the time it's a ZIP, some old BeOS packages come in Software Valet's PKG format. Software Valet was able to automatically execute installation scripts, so after double-clicking you just select a destination folder and everything's taken care of.
    -If it's a ZIP archive, double-clicking opens Expander where you also set the destination and unpack it. As explained in the topic Filesystem layout, that destination is either

    +Sovellusten asentaminen +

    Haiku-ohjelmisto tulee aina arkistona. Useimmiten se on ZIP-tiedosto, mutta jotkut vanhat BeOS-pakkaukset tulevat Valet PKG-muodossa. Valet-ohjelmisto kykenee automaattisesti suorittamaan asennusskriptit, joten kaksoisnapsautuksen jälkeen valitset vain kohdekansion ja kaikesta huolehditaan.
    Jos kyseessä on ZIP-arkisto, kaksoisnapsautus avaa Laajentaja-sovelluksen, jossa asennat myös kohteen ja purat pakkauksen. Kuten aiheessa Tiedostojärjestelmäsijoittelu selitetään, kohde on joko

    - - + +
    /boot/common/apps/ for applications available to every user
    /boot/home/apps/ for applications only available to yourself
    /boot/common/apps/ kaikkien käyttäjien käyttämät sovellukset
    /boot/home/apps/ sovellukset vain sinulle itsellesi
    -

    This distinction will only become relevant once Haiku gets multi-user support, of course.

    -

    Once the archive is unpacked, you should have a look into the newly created folder. Often you find ReadMe files or other documentation of interest.

    -

    Some programs need further configurations. For example, Tracker Add-Ons, Translators or other system enhancing components have to be put into the right folders. Either you'll find a little script file (often with the suffix .sh) like install that you simply double click to have all taken care of.
    -Sometimes you'll find folders that link to the correct destination named "drag [filename] here...". So, you simply follow that instruction and you're done.

    -

    Most of the time, however, nothing of the sort is necessary and you're done after unpacking.
    -Topics Deskbar or LaunchBox describe how to add shortcuts to your newly installed application.

    +

    Tämä erottelu tulee olennaiseksi tietysti vasta sitten, kun Haiku saa monikäyttäjätuen.

    +

    Kun arkisto on purettu, näkyviin pitäisi tulla vasta luotu kansio. Kansiosta löytyy usein ReadMe-tiedostot tai muita kiinnostavia dokumentteja.

    +

    Jotkut ohjelmat tarvitsevat lisäasetuksia. Esimerkiksi Seuraajalisäosat, Muuntimet tai järjestelmää laajentavat komponentit on sijoitettava oikeisiin kansioihin. Löydät joko pienen skriptitiedoston (usein tiedostotarkentimella .sh) kuten install, joka huolehtii kaikesta.
    Joskus löydät kansioita, jotka linkittyvät oikeisiin kohdekansioihin nimeltään "drag [filename] here...". Joten seuraat vain ohjeita (eli raahaat tiedostonimen osoitettuun paikkaan) ja kaikki on valmista.

    +

    Useimmiten mitään sen kaltaista ei tarvita ja kaikki on valmista pakkauksen purkamisen jälkeen.
    Aiheet Työpöytäpalkki tai Käynnistyslaatikko kuvaavat, kuinka pikakuvake lisätään vasta asennettuun sovellukseen.

    index -Uninstalling applications

    -

    If the installation was done with an install script, chances are, there's an uninstall script as well. In that case, double-click it and you're done.
    -Otherwise, uninstalling is simply done by deleting the application's folder.

    -

    This, of course, leaves back possible configuration files in your ~/config/settings folder. This may be on purpose, if you want to keep those settings in case you'll install the program again in the future. Also, when the installation involved those "drag [filename] here..." folders, those files are also left behind.

    -

    One method to quickly get to all the app's files is to do a quick query for a significant part of the application's name. This will reveal the app's binary, its installation folder and its settings as well as possible links in the Deskbar etc. Simply select all relevant files and delete them.

    +Sovellusten poistaminen +

    Jos ohjelma asennettiin asennusskriptillä, on mahdollista, että kansiosta löytyy myös asennuksen purkamisskripti. Siinä tapauksessa kaksoisnapsauta sitä ja sovellus on poistettu.
    Muussa tapauksessa sovellus poistetaan yksinkertaisesti poistamalla sovelluksen kansio.

    +

    Tämä tietysti jättää taakseen mahdollisia asetustiedostoja ~/config/settings-kansioon. Tämä saattaa olla tarkoitus, jos haluat säilyttää nuo asetukset sitä varten, että asennat ohjelman uudelleen tulevaisuudessa. Myös "drag [filename] here..."-tyylisissä asennuksissa nuo tiedostot jäävät jäljelle.

    +

    Eräs menetelmä saada nopeasti kaikki sovelluksen tiedostot on tehdä pikahaku sovelluksen nimen merkittävällä osalla. Tämä paljastaa sovelluksen binaaritiedoston, sen asennuskansion ja sen asetukset sekä myös mahdollisest linkit Työpöytäpalkissa jne. Valitse yksinkertaisesti kaikki olennaiset tiedostot ja poista ne.

    index -Haiku's applications

    -

    Haiku comes with a set of mostly small but essential applications. You'll find all of them at /boot/system/apps/ or /boot/common/apps/. Applications that are not usually launched by a double-click on a data file (e.g. ShowImage for image files) can be found in the Applications menu of the Deskbar.

    +Haikun sovellukset +

    Haikun mukana tulee pieni, mutta olennainen joukko sovelluksia. Löydät ne kaikki kansiosta /boot/system/apps/ tai kansiosta /boot/common/apps/. Sovellukset, joita ei normaalisti käynnistetä kaksoisnapsauttamalla data-tiedostoa (esimerkiksi ShowImage kuvatiedostoille) voidaan löytää Työpöytäpalkin valikosta Sovellukset.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - +
    iconActivityMonitor A tool to track system resources like CPU and memory usage.
    iconBootManager A tool to install a boot menu in the Master Boot Record (MBR) of a drive.
    iconCDPlayer A player for audio CDs.
    iconCharacterMap An application that shows the Unicode character map.
    iconCodyCam A tool to regularly upload images from a webcam to a server.
    iconDeskCalc A calculator.
    iconDiskProbe A HEX editor for files and devices.
    iconDiskUsage A tool to visualize a disk's memory usage.
    iconDriveSetup A harddisk partitioning tool.
    iconExpander A tool to unpack common archives.
    iconIcon-O-Matic An app to create Haiku's vector icons.
    iconInstaller The tool to install Haiku to a partition.
    iconMagnify A magnified view of the area around your mouse pointer.
    iconMail An email client.
    iconMediaPlayer A player for all supported audio/video files.
    iconMidiPlayer A player for MIDI files.
    iconPackageInstaller Installer for BeOS packages in PKG format.
    iconPeople A contact manager.
    iconPoorMan A simple web server.
    iconScreenshot A tool to take screenshots.
    iconShowImage A simple image viewer.
    iconSoundRecorder A tool to record audio from line-in or a microphone. [still missing]
    iconStyledEdit A simple text editor.
    iconTerminal Access to the bash.
    iconTextSearch A search tool for text files.
    iconAktiviteettivalvonta Työkalu järjestelmäresurssien kuten prosessori- ja muistikäytön jäljittämiseksi.
    iconAlkulataushallinta Työkalu, joka asentaa alkulatausvalikon levyaseman Master Boot Record (MBR) -tietueeseen.
    iconCD-soitin Audio-CD-levyjen soitin.
    iconMerkkikuvaus Sovellus, joka näyttää Unicode-merkkikuvauksen.
    iconCody-kamera Työkalu, joka säännöllisesti kopioi kuvatiedostoja webbikamerasta palvelimelle.
    iconTyöpöytälaskin Laskin.
    iconLevyasemakoestin Heksadesimaalieditori tiedostoille ja laitteille.
    iconLevyasemakäyttö Työkalu, joka visualisoi levymuistin käytön.
    iconLevyasema-asetukset Levyaseman osiointityökalu.
    iconLaajentaja Työkalu, joka purkaa tavalliset arkistot.
    iconKuvakemaatti Sovellus Haikun vektorikuvakkeiden luomiseksi.
    iconAsennusohjelma Työkalu Haikun asentamiseksi osiolle.
    iconSuurennuslasi Suurennettu alue hiiren kohdistimen alla.
    iconSähköposti Sähköpostiasiakasohjelma.
    iconMediasoitin Soitin kaikille tuetuille audio- ja videotiedostoille.
    iconMIDI-soitin Soitin MIDI-tiedostoille.
    iconPakkausasentaja Asennusohjelma PKG-muotoisille BeOS-pakkauksille.
    iconIhmiset Yhteystietojen hallinta.
    iconKöyhis Yksinkertainen webbipalvelin.
    iconNäytönkaappaus Työkalu näyttökaappausten ottamiseksi.
    iconKuvakatselin Yksinkertainen kuvakatselin.
    iconÄäninauhuri Työkalu audiotiedostojen äänittämiseksi kanavalta tai mikrofonista. [puuttuu yhä]
    iconTyylitetty editori Yksinkertainen tekstieditori.
    iconPääteikkuna Pääsy bash-komentotulkkiin.
    iconTekstihaku Hakutyökalu tekstitiedostoille.
    iconTV A viewer for analog TV. [still missing]
    Katselin analogia-TV:lle. [puuttuu yhä]
    iconWebPositive A native web browser
    Kotoperäinen webbiselain

    index -Haiku's commandline applications

    -

    Besides the normal commandline tools coming with the bash shell or are necessary to be POSIX compliant, there are a few Haiku-specific commandline applications worth mentioning. These commands are often useful for scripting purposes, see also topic Bash and Scripting.

    +Haikun komentorivisovellukset +

    Paitsi normaalit komentorivityökalut, jotka tulevat bash-komentotulkin kera tai ovat välttämättömiä POSIX-yhteensopivuuden vuoksi, Haikun mukana tulee muutamia mainitsemisen arvoisia Haiku-kohtaisia komentorivisovelluksia. Nämä komennot ovat usein hyödyllisiä skriptaustarkoituksessa, katso myös aihe Bash ja skriptaus.

    - - + +
    iconList of all commandline applications
    iconHaiku-specific commandline applications
    iconKaikkien komentorivisovellusten luettelo
    iconHaiku-kohtaiset komentorivisovellukset

    index -Bundled applications

    -

    Besides the above listed programs, which are all maintained by the Haiku project, there are a few essential applications bundled in a standard Haiku system. Bugs and feature requests for those have to be filed with the particular maintainer.

    +Sovelluspaketit +

    Paitsi yllä luetellut sovellukset, joita Haiku-hanke ylläpitää, vakiossa Haiku-järjestelmässä on muutamia olennaisia sovelluspaketteja. Viat ja ominaisuustoivomukset niille on lähetettävä kyseisten sovellusten ylläpitäjille.

    - + - + - + - +
    iconBePDF A PDF viewer.
    PDF-selain.
    iconPe An advanced texteditor with syntax coloring and much more.
    Kehittynyt tekstieditori syntaksivärityksellä ja paljolla muulla.
    iconVision An IRC client.
    IRC-asiakassovellus.
    iconWonderBrush YellowBite's graphics programm.
    YellowBite-yrityksen grafiikkaohjelma.
    @@ -175,9 +175,9 @@ Otherwise, uninstalling is simply done by deleting the application's folder.

    diff --git a/docs/userguide/fi/applications/activitymonitor.html b/docs/userguide/fi/applications/activitymonitor.html index 2aec17edb7..c52e84b709 100644 --- a/docs/userguide/fi/applications/activitymonitor.html +++ b/docs/userguide/fi/applications/activitymonitor.html @@ -22,7 +22,7 @@
    @@ -58,22 +60,22 @@ Asetukset~/config/settings/ActivityMonitor settings


    -

    Voit jäljittää järjestelmäresursseja käynnistämällä Aktiviteetivalvonnan ja aktivoimalla eri kiinnostuksen kohteita.

    +

    Voit jäljittää järjestelmäresursseja käynnistämällä Aktiviteettivalvonnan ja aktivoimalla eri kiinnostuksen kohteita.

    activitymonitor.png -

    Napsauttamalla ikkunassa hiiren oikeaa painiketta voit vaihdella erilaisten resurssien näyttöä:
    -Käytetty/välimuisti, näennäismuistitila, prosessorikäyttö, verkon vastaanotto/lähetys, sivuviat, semaforit, portit, säikeet, ryhmät, suoritettavat sovellukset, raaka-/tekstileikepöytäkoko, mediasolmut.

    -

    Grafiikan alla on selite (asiayhteysvalikosta piilotettava). Voit vaihtaa värejä ja grafiikan taustaa vetämällä ja raahaamalla minkä tahansa väripoimijan, esim.: ohjelmasta Icon-O-Matic.

    -

    Voit lisätä lisää näkymiä valikosta Tiedosto, jos se tulee liian täyteen.

    +

    Napsauttamalla ikkunassa hiiren kakkospainiketta voit vaihdella erilaisten resurssien näyttöä:
    +Käytetty muisti, välimuistitettu muisti, näennäismuistitila, suoritinkäyttö, verkkovastaanotto, verkkolähetys, sivuvirheet, opastimet, portit, säikeet, ryhmät, suoritetaan sovelluksia, raakadataleikepöytä, mediasolmut.

    +

    Grafiikan alla on selite (asiayhteysvalikosta piilotettava). Voit vaihtaa värejä ja grafiikan taustaa vetämällä ja raahaamalla minkä tahansa väripoimijan, esim.: sovelluksesta Kuvakemaatti.

    +

    Voit lisätä lisää näkymiä Tiedosto-valikosta, jos se tulee liian täyteen.

    Valikko Asetukset avaa paneelin päivitysvälin asettamista varten.

    -

    Jokaisella näkymällä on oma Replikantti-käsittelijä ja se voidaan siten järjestää esimerkiksi työpöydälle.

    +

    Jokaisella näkymällä on oma Kopio-käsittelijä ja se voidaan siten järjestää esimerkiksi työpöydälle.

    diff --git a/docs/userguide/fi/applications/bepdf.html b/docs/userguide/fi/applications/bepdf.html index 052cf3e6bd..cf12b63891 100644 --- a/docs/userguide/fi/applications/bepdf.html +++ b/docs/userguide/fi/applications/bepdf.html @@ -9,6 +9,8 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> @@ -20,7 +22,7 @@
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.

    bepdf-icon_64.pngBePDF

    - +
    TyöpöytäpalkkiSovellukset
    Sijainti/boot/apps/BePDF/BePDF
    Documentation:/boot/apps/BePDF/docs/*
    Dokumentaatio:/boot/apps/BePDF/docs/*
    Asetukset/boot/common/settings/BePDF


    -

    BePDF is a fast launching PDF viewer. Besides viewing, it supports annotating and user-defined bookmarking for unencrypted PDFs. It's fully localized for 20 languages at the moment with additional languages being easily added via text files.

    -

    Documentation is available as HTML or PDF. The latter will also open from the menu Help | Show Help....

    +

    BePDF on nopeasti käynnistettävä PDF-selain. Paitsi selausta, se tukee kommenttien lisäystä ja käyttäjän lisäämiä kirjainmerkkejä salaamattomissa PDF-tiedostoissa. Se on kokonaan kotoistettu tällä hetkellä 20 kielelle ja lisäkieliä voidaan lisätä helposti tekstitiedostojen avulla.

    +

    Dokumentaatio on saatavilla HTML- tai PDF-muodossa. Jälkimmäinen avautuu myös valikosta Opaste | Näytä opaste....

    @@ -70,7 +73,7 @@ diff --git a/docs/userguide/fi/applications/bootmanager.html b/docs/userguide/fi/applications/bootmanager.html index eb3b2853f5..e88dec8b25 100644 --- a/docs/userguide/fi/applications/bootmanager.html +++ b/docs/userguide/fi/applications/bootmanager.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - BootManager + Alkulataushallinta
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    bootmanager-icon_64.pngBootManager

    +

    bootmanager-icon_64.pngAlkulataushallinta

    - + - +
    TyöpöytäpalkkiNo entry, normally started from Installer's Tools menu
    TyöpöytäpalkkiEi valikkoriviä, käynnistetään normaalisti Asennusohjelman Työkalut-valikosta
    Sijainti/boot/system/apps/BootManager
    Asetuksetnone
    MBR backups are saved by default in ~/config/settings/bootman/
    Asetuksetei ole
    MBR-varmuuskopiot tallennetaan oletuksena hakemistoon ~/config/settings/bootman/


    -

    If you don't add the Haiku partition to an existing boot manager like GRUB, BootManager can install a small boot menu in the Master Boot Record (MBR) that looks something like this:

    +

    Jos et lisää Haiku-osiota olemassa olevaan alkulataushallintaan kuten GRUB, Alkulataushallinta voi asentaa Master Boot Record (MBR) -tietueeseen pienen alkulatausvalikon, joka näyttää likimain tällaiselta:

    bootmenu.png -
    Boot Manager isn't yet tested very well and still has a few restrictions that it will complain about if they aren't met: the menu can only be installed on your first harddisk and there has to be a 2KiB space after the Master Boot Record (MBR).
    -

    BootManager guides you through the installation process of the boot menu.

    +
    Alkulataushallintaa ei ole vielä testattu kovin hyvin ja siinä on vielä joitakin rajoituksia, joista se valittaa, jos ne kohdataan: valikko voidaan asentaa vain ensimmäiselle kiintolevylle ja siinä on oltava 2 kibitavua tilaa Master Boot Record (MBR) -tietueen jälkeen.
    +

    Alkulataushallinta ohjaa sinut alkulatausvalikon asennusprosessin lävitse.

    index -Choosing the destination drive

    +Kohdelevyaseman valitsiminen bootmanager-1.png -

    The BootManager starts off with a list of all available drives from which you choose the destination. If there's already a boot menu on that drive, the Uninstall button becomes active, leading you through the simple procedure to restore a formerly backed-up MBR, thereby removing the boot menu again.
    -Otherwise, choose Install to continue.

    +

    Alkulataushallinta lähtee kaikkien käytettävissä olevien levyasemien luettelosta, josta valitset kohteen. Jos kohdelevyasemalla on jo olemassa alkulatausvalikko, painike Poista asennus tulee aktiiviseksi johdatellen sinut yksinkertaisen proseduurin lävitse aiemmin varmuuskopioidun MBR:n palauttamiseksi, mikä poistaa taas alkulatausvalikon.
    Muussa tapauksessa jatka valitsemalla Asenna.

    index -Backing up the Master Boot Record (MBR)

    -

    In case anything goes wrong or you want to remove the boot menu again, the Master Boot Record (MBR) is now saved. This is obviously a very important step, make sure you don't accidentally overwrite some other MBR-backup maybe from some earlier experimentation, for example!

    +Master Boot Record (MBR) -tietueen varmuuskopiointi +

    Master Boot Record (MBR) tallennetaan nyt siltä varalta, että jokin menee vikaan ja haluat taas poistaa alkulatausvalikon. Tämä on selvästi hyvin tärkeä askel. Varmista, että et vahingossa korvaa jotain toista MBR-varmuuskopiota esimerkiksi ehkä jostain aikaisemmasta kokeilusta!

    bootmanager-2.png bootmanager-3.png -

    Just select a destination for the backup file "MBR" or leave the default path. After clicking Next you'll get a confirmation if the backup was successful.

    +

    Valitse vain varmuuskopiotiedoston "MBR" kohde tai jätä oletuspolku. Seuraava-painikkeen napsauttamisen jälkeen saat vahvistuksen siitä, että varmuuskopiointi onnistui.

    index -Configuring the boot menu

    +Alkulatausvalikon asettaminen bootmanager-4.png bootmanager-5.png -

    Next you're presented with a list of all partitions on the destination drive. By setting checkmarks you decide what entries will appear in the boot menu, the text boxes allow you to rename an entry.

    -

    After that, you pick from the pop-up menu which partition will be booted from by default and set a timeout with the slider below. Here, "Immediately" will skip the boot menu entirely, "Never" will just stop at the boot menu. You can override the timeout setting by holding ALT while booting.

    +

    Seuraavaksi sinulle esitellään kohdelevyaseman kaikkien osioiden luettelo. Asettamalla pukki-merkin päätät siitä, että mitkä osiot ilmaantuvat alkulatausvalikkoon. Tekstilaatikot sallivat sinun nimetä osiot uudelleen.

    +

    Sen jälkeen valitset ponnahdusvalikosta, että miltä osiolta alkuladataan oletuksena ja aseta aikavalvonta alla olevasta liukukytkimestä. Tässä "Heti" ohittaa alkulatausvalikon kokonaan. "Ei koskaan" tarkoittaa, että alkulataus pysähtyy alkulatausvalikkoon. Voit ohittaa aikavalvonnan pitämällä ALT-näppäintä alhaalla alkulatauksen aikana.

    index -Writing the boot menu

    +Alkulatausvalikon kirjoittaminen bootmanager-6.png bootmanager-7.png -

    Before the boot menu is written to the MBR, you'll get a summary of your configuration and then one last chance to abort the operation. Don't worry though, as long as you keep the MBR backup safe, you can easily revert the changes. Should things get thoroughly messed up, you can always boot from a Haiku install CD or USB stick and write back the MBR backup with BootManager.

    +

    Ennen kuin alkulatausvalikko kirjoitetaan MBR-tietueeseen, saat asetuksesi yhteenvedon ja siten viimeisen mahdollisuuden keskeyttää toiminnon. Älä silti murehdi, niin kauan kuin pidät MBR-varmuuskopion tallessa, voit helposti perua muutokset. Jos asiat menevät kunnolla sekaisin, voit aina alkuladata Haikun asennus-CD-levyltä tai USB-tikulta ja kirjoittaa MBR-varmuuskopion takaisin kiintolevylle Alkulataushallinnan avulla.

    @@ -95,8 +97,8 @@ Otherwise, choose Install to continue.

    diff --git a/docs/userguide/fi/applications/cdplayer.html b/docs/userguide/fi/applications/cdplayer.html index 25d3393d94..7f67d69ed0 100644 --- a/docs/userguide/fi/applications/cdplayer.html +++ b/docs/userguide/fi/applications/cdplayer.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - CDPlayer + CD-soitin
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    cdplayer-icon_64.pngCDPlayer

    +

    cdplayer-icon_64.pngCD-soitin

    - +
    TyöpöytäpalkkiSovellukset
    Sijainti/boot/system/apps/CDPlayer
    Asetukset~/cd/* - Stores details to all identified CDs
    Asetukset~/cd/* - Tallentaa yksityiskohdat kaikista tunnistetuista CD-levyistä



    cdplayer.png -

    Usage is pretty much what you'd expect from looking at the control buttons.
    -Activate the Repeat button to the left of Shuffle to loop the complete CD.

    -

    If you need more control like playlists, try MediaPlayer instead.

    +

    Käyttö on hyvin paljon sitä, mitä voi otaksua, kun katsoo ohjainpainikkeita.
    Aktivoi Toisto-painike Shuffle-satunnaisjärjestyspainikkeen vasemmalla puolella, jolloin CD-soi jatkuvana silmukkana.

    +

    Jos tarvitset enemmän ohjaustoimintoja, kuten soittolistoja, kokeile sen sijaan Mediasoitinta.

    diff --git a/docs/userguide/fi/applications/charactermap.html b/docs/userguide/fi/applications/charactermap.html index e64b4638e8..eb2f1a5feb 100644 --- a/docs/userguide/fi/applications/charactermap.html +++ b/docs/userguide/fi/applications/charactermap.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - CharacterMap + Merkkikuvaus
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    charactermap-icon_64.pngCharacterMap

    +

    charactermap-icon_64.pngMerkkikuvaus

    TyöpöytäpalkkiSovellukset
    Sijainti/boot/system/apps/CharacterMap
    Asetukset~/config/settings/CharacterMap settings


    -

    CharacterMap will show you the UTF-8 code of every character a font supports.

    +

    Merkkikuvaus näyttää sinulle UTF-8-koodin jokaisesta kirjaimesta, jota kirjasin tukee.

    charactermap.png -

    To the left you have the standardized blocks, together with a handy filter function. Optionally, you can choose to also Show private blocks from the View menu. The right shows the actual characters in these blocks, using the font specified in the Font menu. Below that you can change the font size. And below that, the values of the character currently under the mouse pointer is displayed in hex, decimal and UTF-8 notation.

    -

    You can drag&drop a character directly from the character map into a text editor, or right-click on one to either Copy character (ALT C) or Copy as escaped byte string (SHIFT ALT C). Resulting in, e.g. either or \xe2\x82\xac.

    +

    Vasemmalla on vakiolohkot yhdessä kätevien suodatintoimintojen kanssa. Valinnaisesti voit valita myös Näkymä-valikosta Näytä yksityiset lohkot. Oikealla näytetään todelliset merkit näissä lohkoissa, käyttäen kirjasinta, joka on määritelty Kirjasin-valikossa. Alla voit muuttaa kirjasimen kokoa. Ja sen alla näytetään hiiren kohdistimen kohdalla olevan kirjainmerkin heksadesimaali-, desimaali ja UTF-8 -arvo.

    +

    Voit raahata ja pudottaa merkin suoraan merkkikuvauksesta tekstieditoriin, tai valita hiiren oikealla painikkeella yhden seuraavista vaihtoehdoista: +Kopioi merkki (ALT C) tai Kopioi koodinvaihtomerkkijonona (SHIFT ALT C). Tuloksena on esimerkiksi joko tai \xe2\x82\xac.

    @@ -69,9 +73,9 @@ diff --git a/docs/userguide/fi/applications/cli-apps.html b/docs/userguide/fi/applications/cli-apps.html index 5fc8532f53..01eee370aa 100644 --- a/docs/userguide/fi/applications/cli-apps.html +++ b/docs/userguide/fi/applications/cli-apps.html @@ -22,7 +22,7 @@
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    codycam-icon_64.pngCodyCam

    +

    codycam-icon_64.pngCody-kamera

    TyöpöytäpalkkiSovellukset
    Sijainti/boot/system/apps/CodyCam
    Asetukset~/config/settings/codycam


    -

    With CodyCam you take pictures at a specified interval from a connected webcam or any other video-in device and save it via FTP.

    +

    Cody-kameralla otat kuvia määritellyin aikavälein liitetystä webbikamerasta tai mistä tahansa muusta video-in-laitteesta ja tallennat ne FTP-yhteyskäytännöllä.

    My very temporarily installed cam in Dartmoor National Park. -

    To the left under the preview, you set the filename that'll be suffixed with an increasing number for every picture taken. Beneath that you decide on the file format and the rate the pictures are taken.

    -

    To the right you choose either FTP or sFTP (if SSH is available) and enter the needed data to save the images on a server.

    +

    Esikatselun alapuolelle vasemmalle asetat tietostonimen, johon liitettään aina uusi kuva jokaisen kuvan ottamisen yhteydessä. Sen alla päätät tiedostomuodosta ja kuvaustaajuudesta.

    +

    Oikealla puolella valitset joko FTP-yhteyskäytännön tai sFTP-yhteyskäytännön (jos SSH on käytettävissä) ja kirjoitat tarvittavat tiedot kuvien tallentamiseksi palvelimelle.

    diff --git a/docs/userguide/fi/applications/deskcalc.html b/docs/userguide/fi/applications/deskcalc.html index c37fccbaa8..4930db24ea 100644 --- a/docs/userguide/fi/applications/deskcalc.html +++ b/docs/userguide/fi/applications/deskcalc.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - DeskCalc + Työpöytälaskin
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    deskcalc-icon_64.pngDeskCalc

    +

    deskcalc-icon_64.pngTyöpöytälaskin

    TyöpöytäpalkkiSovellukset
    Sijainti/boot/system/apps/DeskCalc
    Asetukset~/config/settings/DeskCalc_settings


    -

    DeskCalc is a simple calculator that nevertheless has some nice features that aren't apparent on first sight.

    -deskcalc.png +

    Työpöytälaskin on yksinkertainen laskin, jossa on siitä huolimatta näppäriä ominaisuuksia, joita ei huomaa ensisilmäyksellä.

    +deskcalc.png
      -
    • DeskCalc understands much more than its simple keypad suggests.
      -Besides the operators +, -, *, /, %, ^ and the constants pi and e the following math functions are supported:
      -acos, asin, atan, atan2, ceil, cos, cosh, exp, floor, log, log10, pow, sin, sinh, sqrt, tan, tanh.

    • -
    • When it comes to user input, DeskCalc is quite tolerant:
      -/, :, \ are all interpreted as division operators,
      -*, x are valid symbols for multiplication.
      -Also, be aware that . and , are both considered floating points, which means you mustn't use them as 1000 separators.

    • -
    • Right-clicking offers these options:

      +
    • Työpöytälaskin ymmärtää paljon enemmän kuin sen yksinkertainen näppäimistö antaa ymmärtää.
      Operaattorien +, -, *, /, %, ^ sekä vakioiden pi ja e lisäksi tuettuja ovat seuraavat matemaattiset funktiot:
      acos, asin, atan, atan2, ceil, cos, cosh, exp, floor, log, log10, pow, sin, sinh, sqrt, tan, tanh.

    • +
    • Mitä tulee käyttäjäsyöttöön, Työpöytälaskin on melko suvaitsevainen:
      +/, :, \ tulkitaan kaikki jako-operaattoriksi,
      +*, x ovat kelvollisia kertolaskun merkkejä.
      +Ole myös tietoinen, että . ja , ovat molemmat desimaalipilkkuja, joten et saa käyttää niitä 1000-lukujen erottajina.

    • +
    • Hiiren oikeanpuoleinen painike tarjoaa nämä valitsimet:

      - - + +
      Enable Num Lock on start upautomatically activates the number block when launching DeskCalc
      Show keypadhides the keypad when deactivated
      Ota käyttöön Num Lock käynnistyksen yhteydessäaktivoi automaattisesti näppäimiston numerolohkon Työpöytälaskinta käynnistettäessä
      Näytä numeronäppäimistöpiilottaa numeronäppäimistön, kun aktivointi poistetaan
    • -
    • You can resize the calculator until it fits your needs and then put it as Replicant onto the Desktop via drag&drop of the symbol in the bottom right corner. Make sure Show replicants is activated in the Deskbar.

    • -
    • The keypad can be colored with a drag&drop from any color well, e.g. from Icon-O-Matic.

    • -
    • You can move up and down in a history of past calculations with and .

    • -
    • You can select DeskCalc's contents and drag&drop it into any application. Or you drop it into a Tracker window or onto the Desktop and a text file with that clipping is created there.

      -

      Even better, the reverse is also possible:
      -Create clippings as described at various stages of your calculation and go back to them by drag & dropping them back into DeskCalc.
      -Or you drag&drop a calculation directly out of an email onto DeskCalc.

    • -
    • DeskCalc can be used in Terminal. Just put the expression in double quotes, like this:

      +
    • Voit muuttaa laskimen kokoa kunnes se sopii tarkoituksiisi ja laittaa se Replikanttina työpöydälle raahaamalla ja pudottamalla se oikean alakulman symbolista. Varmista, että Näytä replikantit on aktivoitu työpöytäpalkissa.

    • +
    • Näppäimistö voidaan värittää raahaa ja pudota -toiminnolla mistä värilähteestä tahansa, esimerkiksi Kuvakemaatista.

    • +
    • Voit siirtyä ylös ja alas entisten laskutoimitusten historiassa näppäimillä ja .

    • +
    • Voit valita Työpöytälaskimen sisällön ja raahata ja pudottaa sen mihin tahansa sovellukseen. Tai pudotat sen Seuraaja-ikkunaan tai työpöydälle ja tekstitiedosto laskimen sisällöllä luodaan siihen.

      +

      Vielä parempaa, myös käänteinen toiminto on mahdollinen:
      Luo katkelmia kuten on kuvattu laskelmiesi eri vaiheissa ja siirry takaisin niihin raahaamalla ja pudottamalla ne takaisin Työpöytälaskimeen.
      Tai voit raahata ja pudottaa laskelman suoraan sähköpostista Työpöytälaskimeen.

    • +
    • Työpöytälaskinta voidaan käyttää Pääteikkunassa. Laita vain lauseke kaksimerkkisten sulkumerkkien sisään, kuten tässä esimerkissä:

      ~> DeskCalc "sin(45)*(cos(12)+3.45)"
       3.6536554673202546181795194727005826674359494735820338441084848
    @@ -90,8 +89,8 @@ Or you drag&drop a calculation directly out of an email onto DeskCalc.

    diff --git a/docs/userguide/fi/applications/diskprobe.html b/docs/userguide/fi/applications/diskprobe.html index 8f78d69f76..9ec10cfbde 100644 --- a/docs/userguide/fi/applications/diskprobe.html +++ b/docs/userguide/fi/applications/diskprobe.html @@ -22,7 +22,7 @@
    @@ -75,9 +77,9 @@ Tämä on kätevä ominaisuus katsottaessa tiedostojärjestelmiä, koska ne usei diff --git a/docs/userguide/fi/applications/diskusage.html b/docs/userguide/fi/applications/diskusage.html index 46b155370c..786231a1ae 100644 --- a/docs/userguide/fi/applications/diskusage.html +++ b/docs/userguide/fi/applications/diskusage.html @@ -22,7 +22,7 @@ @@ -81,7 +83,7 @@ Napsauttamalla hiiren vasemmalla painikkeella keskiympyrää siirtyy yhden tason diff --git a/docs/userguide/fi/applications/drivesetup.html b/docs/userguide/fi/applications/drivesetup.html index 48b6df8804..c723ffe154 100644 --- a/docs/userguide/fi/applications/drivesetup.html +++ b/docs/userguide/fi/applications/drivesetup.html @@ -22,7 +22,7 @@ @@ -89,8 +91,8 @@ Alustaminen tuhoaa kaiken tiedon tuolla osiolla!

    diff --git a/docs/userguide/fi/applications/expander.html b/docs/userguide/fi/applications/expander.html index 5700fe060d..40a27241b9 100644 --- a/docs/userguide/fi/applications/expander.html +++ b/docs/userguide/fi/applications/expander.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Expander + Laajentaja
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    expander-icon_64.pngExpander

    +

    expander-icon_64.pngLaajentaja

    - +
    TyöpöytäpalkkiNo entry, normally launched via double-clicking a supported file.
    TyöpöytäpalkkiEi valikkoriviä, käynnistetään normaalisti kaksoisnapsauttamalla tuettua tiedostoa.
    Sijainti/boot/system/apps/Expander
    Asetukset~/config/settings/Expander_Settings


    -

    Expander is a small tool to quickly unpack the most common archives, among them zip, gzip, bzip2, rar and tar.gz.
    -Just double-click an archive to see this simple interface:

    +

    Laajentaja on pieni työkalu purkamaan nopeasti useimmat tavalliset arkistot, niiden joukossa zip, gzip, bzip2, rar ja tar.gz
    Kaksoisnapsauta vain arkistoa nähdäksesi tämän yksinkertaisen käyttöliittymän:

    expander.png

    - - - + + +
    SourceALT Swill open a file dialog to find an archive to unpack.
    DestinationALT Dwill open a file dialog to set the destination.
    ExpandALT Ewill start the unpacking. It can be aborted with ALT K.
    LähdeALT Oavaa tiedostokyselyikkunan purettavan arkiston löytämiseksi.
    KohdeALT Davaa tiedostokyselyikkunan kohteen asettamiseksi.
    LaajennnaALT Ealoittaa pakkauksen purkamisen. Se voidaan keskeyttää näppäimillä ALT K.
    -

    You can toggle the display of the file listing by un/checking Show contents or pressing ALT L.

    -
    Expander can only unpack whole archives.
    -You can't select individual files to expand or add/remove files from the archive.
    -

    Edit | Preferences... or ALT P opens a preference panel that offers some useful settings to adjust Expander's behavior.
    -The options are all self-explanatory:

    +

    Voit vaihtaa tiedostoluettelon näytön päälle ja pois päältä Näytä sisällöt-rastilla tai painamalla näppäimiä ALT L.

    +
    Laajentaja voi purkaa vain kokonaisia arkistoja.
    Et voi valita yksittäisiä tiedostoja laajennettaviksi tai lisätä/poistaa tiedostoja arkistosta.
    +

    Asetukset | Asetukset... tai ALT S avaa asetuspaneelin, joka tarjoaa joitakin hyödyllisiä asetuksia Laajentajan käyttäytymisen säätämiseksi.
    Valitsimet ovat itsensäselittäviä:

    expander-preferences.png

    @@ -79,8 +79,8 @@ The options are all self-explanatory:

    diff --git a/docs/userguide/fi/applications/icon-o-matic.html b/docs/userguide/fi/applications/icon-o-matic.html index 114439f9e7..696e1fd365 100644 --- a/docs/userguide/fi/applications/icon-o-matic.html +++ b/docs/userguide/fi/applications/icon-o-matic.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Icon-O-Matic + Kuvakemaatti
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    - +
    Hakemisto
    BeOS bitmap vs. Haiku vector icons
    - Icons are attributes
    - Creating icons with Icon-O-Matic
    - Path
    - Shape
    - Style
    - Transformer
    - Saving an icon
    - Tips & Tricks
    BeOS-bittikartta vs. Haiku-vektorikuvakkeet
    + Kuvakkeet ovat attribuutteja
    + Kuvakkeiden luominen Kuvakemaatilla
    + Polku
    + Hahmo
    + Tyyli
    + Tiedostomuuntimet
    + Kuvakkeen tallentaminen
    + Vihjeet ja niksit
    -

    icon-o-matic-icon_64.pngIcon-O-Matic

    +

    icon-o-matic-icon_64.pngKuvakemaatti

    @@ -74,28 +77,28 @@


    -

    Before we come to the actual creating of icons in Icon-O-Matic, a few words on Haiku's icons in general.

    +

    Ennen kuin todella aloitamme kuvakkeiden luomisen Kuvakemaatissa, muutama sana Haikun kuvakkeista yleensä.

    index -BeOS bitmap vs. Haiku vector icons

    -

    Contrary to the BeOS, Haiku uses vector icons instead of bitmap icons. A special Haiku Vector Icon Format (HVIF) was developed that is highly optimized for small file sizes and fast rendering. That's why our icons are for the most part much smaller than either a bitmap or the widely used SVG format. Also, unlike BeOS' bitmap icons, Haiku isn't limited to an 8bit palette (256 colors).
    -Take this icon of the Terminal, for example:

    +BeOS-bittikartta vs. Haikun-vektorikuvakkeet +

    Päinvastoin kuin BeOS, Haiku käyttää vektorikuvakkeita bittikarttakuvakkeiden sijasta. Kehitettiin erityinen Haiku-vektorikuvakemuoto (HVIF), joka on hyvin optimoitu pieneen tiedostokokoon ja nopeaan renderointiin. Tästä syystä kuvakkeemme ovat enimmäkseen paljon pienempiä kuin bittikartat tai laajalti käytetty SVG-muoto. Myös toisin kuin BeOS:n bittikarttakuvakkeissa, Haiku ei ole rajoittunut 8-bittiseen palettiin (256 väriä).
    +Ota esimerkiksi tämä Pääteikkunakuvake:

    TyöpöytäpalkkiSovellukset
    - + - +
    BitmapSVGHVIF
    BittikarttaSVGHVIF
    i-o-m-terminal-bitmap32 i-o-m-terminal-bitmap16terminal-icon_32terminal-icon_32
    1,024 byte
    + 256 byte
    7,192 byte 768 byte
    1,024 tavua
    + 256 tavua
    7,192 tavua 768 tavua
    -

    Note that the BeOS used two versions of an icon, one 16x16 and one 32x32, to achieve good visuals in List and Icon View mode.

    -

    This trick isn't needed with vector icons. Besides only taking up a few hundred bytes in a file, vector icons also scale much better than bitmaps. (Note: BeOS offered only a 16x16 and 32x32 display.)

    +

    Huomaa, että BeOS käytti kahta kuvakeversiota, yksi 16x16 ja toinen 32x32 saavuttaakseen hyvän visuaalisen asun luetteloissa ja kuvakenäkymätilassa.

    +

    Tätä temppua ei tarvita vektorikuvakkeissa. Paitsi että koko on vain muutamia satoja tavuja, vektorikuvakkeet skaalautuvat myös paljon paremmin kuin bittikarttatiedostot. (Huomaa: BeOS tarjosi ainoastaan 16x16 ja 32x32 näytöt.)

    - + - + @@ -105,40 +108,36 @@ Take this icon of the Terminal, for example:

    index -Icons are attributes

    -

    Icons are stored as an attribute with their file. However, that doesn't mean that every file has to have this attribute to appear with an icon in a Tracker window: data files inherit their icon from their filetype. To globally change the filetype's icon you use the FileTypes preferences. If you only want to add a special icon to an individual file, you use the FileType add-on on it instead. See topic Filetypes for more information.

    -
    Being an attribute, it follows that only filesystems supporting metadata can retain a file's individual icon. So, if you move files off your BFS volume, consider zipping them up so you don't lose icons or other attributes.
    +Kuvakkeet ovat attribuutteja +

    Kuvakkeet tallennetaan tiedoston attribuuttina. Se ei kuitenkaan tarkoita, että jokaisella tiedostolla on tämä attribuutti, joka näkyy Seuraajan ikkunassa: datatiedostot perivät kuvakkeensa tiedostotyypistään. Yleisesti käytettyä tiedostotyypin kuvaketta voi muuttaa Tiedostotyypit-asetuksista. Jos haluat vain lisätä tietyn kuvakkeen yksittäiseen tiedostoon, käytä siihen sen sijaan Tiedostotyyppilisäosaa. Katso lisätietoja aiheesta Tiedostotyypit.

    +
    Kun kyse on attribuutista, siitä seuraa, että vain metatietoja tukeva tiedostojärjestelmä voi säilyttää tiedoston yksilöllisen kuvakkeen. Joten jos siirrät tiedostoja pois BFS-taltiolta, harkitse niiden tiivistämistä arkistoksi niin että et kadota kuvakkeita tai muita attribuutteja.

    index -Creating icons with Icon-O-Matic

    -

    Icon-O-Matic is Haiku's icon editor that can save your work as HVIF, SVG or PNG. The icon can also be directly attached as attribute to an existing file or exported as a resource or source file used by developers. Since the application was tailored to the optimized HVIF format, its usage reflects the inner workings of this format.

    -

    Other than your normal vector graphics software, you don't deal with separate objects that each include all their specific properties like path, stroke width, stroke and fill color etc. Rather, you assemble your objects ("shapes") from shared paths and colors ("styles") and set certain properties. This re-using of elements is one secret of HVIF's efficiency. Although that imposes some constraints on the icon designer, there are a few advantages, too.
    -For example, by re-using a path, several objects can be modified together by manipulating this one path. Think of an object and its shadow. Modifying their shared path will change the object itself and automatically its (maybe slightly distorted/translated) shadow.

    +Kuvakkeiden luominen Kuvakemaatilla +

    Kuvakemaatti on Haikun kuvake-editori, joka voi tallentaa työsi HVIF-, SVG- tai PNG-tiedostona. Kuvake voidaan myös suoraan liittää olemassa olevan tiedoston attribuutiksi tai viedä kehittäjien käyttämäksi resurssiksi tai lähdetiedostoksi. Koska sovellus räätälöitiin optimoituun HVIF-muotoon, sen käyttö heijastaa tämän muodon sisäistä toimintaa.

    +

    Toisin kun tavalliset vektorigrafiikkaohjelmistot, et jaa erillisiä objekteja, joista jokainen sisällyttää kaikki tietyt ominaisuutensa, kuten polku, viivaleveys, viiva ja täyttöväri, jne. Pikemminkin asennat objekti("hahmosi") jaetuista poluista ja väreistä ("tyylit") ja asetat tiettyjä ominaisuuksia. Tämä elementtien uudelleenkäyttö on yksi HVIF-muodon tehokkuuden salaisuuksista. Vaikka se määrää joitakin rajoituksia kuvakesuunnittelijalle, siitä on myös muutamia etuja.
    Esimerkiksi polkua uudelleenkäytettäessä useita objekteja voidaan muokata yhdessä manipuloimalla tätä yhtä polkua. Ajattele objektia ja sen varjoa. Niiden jaetun polkun muokkaaminen muuttaa itse objektia ja automaattisesti sen (ehkä hiukan vääristynyttä/kääntynyttä) varjoa.

    -

    Here's a quick overview of Icon-O-Matic's window:

    +

    Tässä on Kuvakemaatti-ikkunan pikayleiskuva:

    i-o-m-overview.png -

    To create any visible object on the canvas, you need a shape with a path and a style. Conveniently, you can create one, two or all three of those together from the Shape menu. Every kind of object (Paths, Shapes, Transformers, and Styles) has a menu above its list of elements, offering various commands. Every element has certain options that are set in the Properties view.

    +

    Tarvitset kaikkien näkyvien objektien luominen kankaalle hahmoa polulla ja tyylillä. Kätevästi voit luoda yhden, kaksi tai kaikki kolme yhdessä Hahmo-valikosta. Jokaisella objektityyppillä (polut, hahmot, tiedostomuuntimet, ja tyylit) on valikko sen elementtiluettelon yläpuolella tarjoten eri komentoja. Jokaisella elementillä on tiettyjä valitsimia, jotka asetetaan Ominaisuudet-näkymässä.

    index -Path

    -

    A path consists of several points which are connected with lines or Bezier curves. To add or change points, make sure the path is selected in the path list.

    +Polku +

    Polku koostuu useista pisteistä, jotka yhdistetään viivoilla tai Bezier-kaarilla. Pisteiden lisäämiseksi tai muuttamiseksi varmista, että polku on valittu polkuluettelossa.

    -

    Simply clicking in the canvas will set the first point. While setting a point, you decide if the resulting line will be straight or curved: a simple click and release produces a straight line, holding down the mouse button and moving the mouse will drag out the handles for a Bezier curve. Of course, you can also change it all later on.

    +

    Kankaan napsauttaminen asettaa yksinkertaisesti ensimmäisen pisteen. Pisteitä asetettaessa päätät, jos tuloksena oleva viiva on suora tai kaareva: yksinkertainen napsautus ja vapautus tuottaa suoran viivan, hiiren painikkeen pitäminen alhaalla ja hiiren siirtäminen raahaa Bezier-kaaren kahvan. Tietysti voit myös muuttaa sen kaiken myöhemmin.

    i-o-m-path-ab -

    To get from "A" to "B", you have to transform some points from corner-points to curve-points. That's done by holding ALT while clicking on a point and dragging out the handles. This results in a symmetrical Bezier: the second handle follows the movement of the other. If you need to move the handles independently, again click&drag on a Bezier handle while holding ALT.
    -Vice versa, to go from Bezier to a corner-point, hold ALT and click on a point.

    +

    Päästäksesi pisteestä "A" pisteeseen "B", sinun on muunnettava joitakin pisteitä kulmapisteistä kaaripisteiksi. Se tehdään pitämällä ALT-näppäin alhaalla samalla kun napsautetaan pistettä ja raahataan sitä kahvoista. Tästä on seurauksena symmetrinen Bezier-kaari: toinen kahva seuraa ensimmäisen liikettä. Jos sinulla on tarve siirtää kahvoja toisistaan riippumatta, napsauta ja rahaa taas Bezier-kahvasta samalla kun pidät alhaalla ALT-näppäintä.
    Päinvastaisessa tapauksessa, mentäessä Bezier-kaaresta kulmapisteeseen, pidä alhaalla ALT-näppäintä ja napsauta pistettä.

    -

    To move a point, simply click&drag it. To select more than one point, hold down SHIFT and draw a selection rectangle. Selected points are marked with a red border instead of the usual black.
    -To insert a point into a path you click on the connecting line between two points.
    -Selected points are deleted by pressing DEL or by clicking on any point while holding CTRL.

    +

    Pisteen siirtämiseksi yksinkertaisesti napsauta ja raahaa sitä. Useamman kuin yhden pisteen valitsemiseksi pidä alhaalla VAIHTO-näppäin ja piirrä valintanelikulmio. Valitut pisteet merkitään punaisella reunalla eikä tavallisella mustalla.
    Pisteen lisäämiseksi polkuun napsauta yhdysviivaa kahden pisteen välillä.
    Valitut pisteet poistetaan painamalla DEL-näppäintä tai napsauttamalla mitä tahansa pistettä samalla kun pidetään alhaalla CTRL-näppäintä.

    -

    The mouse pointer indicates the current mode:

    +

    Hiiren osoitin osoittaa nykyisen tilan:

    16x1632x3264x64128x128
    Bitmap
    Bittikartta i-o-m-bitmap16 i-o-m-bitmap32 i-o-m-bitmap64 i-o-m-bitmap128
    Vector
    Vektori i-o-m-vector16 i-o-m-vector32 i-o-m-vector64
    @@ -149,46 +148,46 @@ Selected points are deleted by pressing DEL or by click - - - - - - + + + + + +
    i-o-m-pointer-move-pathi-o-m-pointer-select
    Move point(s)Insert pointAdd pointDelete point
    CTRL
    Corner↔Bezier
    ALT
    Select points
    SHIFT
    Siirrä pisteetLisäpisteLisää pistePoista piste
    CTRL
    Kulma↔Bezier
    ALT
    Valitse pisteet
    VAIHTO
    -

    You can invoke a context menu by right-clicking a point or a selection of points:

    +

    Voit kutsua asiayhteysvalikkoa napsauttamalla pistettä tai pisteiden valintaa hiiren kakkospainikkeella:

    - - - - - + + + + +
    Select allALT ASelects all points of the current path.
    TransformTPuts all selected points in a transformation box, so you can move, resize and rotate them together. It works just like with shapes, described a bit further down.
    SplitSplits selected points into two, one sitting on top of the other.
    FlipRotates selected points by 180°. Only has an effect on Bezier points.
    RemoveDELDeletes selected points.
    Valitse kaikkiALT AValitsee nykyisen polun kaikki pisteet.
    MuunnaTLaittaa kaikki valitut pisteet muunnosikkunaan, joten voit siirtää, muuttaa niiden kokoa ja pyörittää niitä ympäri yhdessä. Se toimii aivan samoin kuin muodoilla, kuten kuvataan myöhemmin tässä asikirjassa.
    Jaa kahtiaJakka valitut pisteet kahtia, toinen sijaiten toisen päällä.
    Käännä ylösalaisinPyörittää valittuja pisteitä 180°. Tällä on vaikutusta vain Bezier-pisteisiin.
    PoistaDELPoistaa valitut pisteet.
    -

    Path Menu

    -

    The Path menu offers a few obvious entries to Add rectangle and Add circle or to Duplicate or Remove a path. Here are some that may need a bit more explaining:

    +

    Polkuvalikko

    +

    Valikko Polku tarjoaa muutamia ilmeisiä rivejä Lisää nelikulmio and Lisää ympyrä tai polulle Tee kaksoiskappale tai Poista. Tässä on muutamia, jotka vaatinevat lisäselitystä:

    - - - - + + + +
    ReverseIf your path isn't "closed" (see Path Properties below), a click into the canvas always creates a new point, connecting it with the last one. "Reverse" will reverse this order and your new point will connect to original start point instead.
    Clean upMost useful with imported SVGs, this function will remove redundant points.
    Rotate indices rightALT RPractically, this rotates the opening of a path. It's best seen when using a not-closed path with a style and a shape with a stroke transformer. Now, if your path looks like a ⊂ it will rotate like this: ⊂ ∩ ⊃ ∪.
    Rotate indices leftALT SHIFT RDoes the same in the other direction.
    Käännä päinvastaiseksiJos polkusi ei ole "suljettu" (katso Polkuominaisuuksia alla), napsautus canvas-komponenttiin luo aina uuden pisteen, joka yhdistyy edelliseen. "Käännä päinvastaiseksi" muuttaa tämän järjestyksen ja uusi piste yhdistetään sen sijaan alkuperäiseen aloituspisteeseen.
    SiivoaKaikkein hyödyllisin tuoduille SVG-tiedostoille, tämä toiminto poistaa kaksoiskappalepisteet.
    Pyöritä indeksejä oikealleALT RKäytännössä tämä pyörittää polun avausta. Se nähdään parhaiten, kun käytetään ei-suljettua tyylillä varustettua polkua ja hahmoa viivamuuntimella. Nyt, jos polku näyttää kuten ⊂ se pyörii kuin tämä: ⊂ ∩ ⊃ ∪.
    Pyöritä indeksejä vasemmalleALT VAIHTO RTekee saman toiseen suuntaan.
    -

    Path Properties

    -

    Properties at the bottom left of the window offers all available settings of the currently selected object. A path only has two: a Name and if it's Closed or not.

    +

    Polkuominaisuudet

    +

    Ominaisuudet ikkunan vasemmassa alakulmassa tarjoaa kaikki käytettävissä olevat nykyisin valitun objektin asetukset. Polulla on vain kaksi: a Nimi ja onko se Suljettu vai ei.

    index -Shape

    -

    A shape groups together one or more paths with a style. Practically, it's the object that you'll actually see on the canvas. The grouping is done with the checkboxes in front of the paths and styles: Just select your shape and tick off the desired path(s) and a style.

    -

    A shape defines how a path and style is applied, e.g. if the object is filled or only stroked (which is done by using Transformers on the shape, we'll get to that later). Also, a shape can be moved, rotated or resized without touching the used path. That way, you can re-use a single path and get different, but related, shapes.

    +Hahmo +

    Hahmo ryhmittää yhteen yhden tai useampia polkuja, joilla on tyyli. Käytännössä se on objekti, jonka todellisuudessa näkee canvas-komponentissa. Ryhmitys tehdään valintaruuduilla polkujen ja tyylien edessä: valitse vain hahmosi ja rasti halutut polut ja tyyli.

    +

    Hahmo määrittää, kuinka polku ja tyyli toteutetaan, esimerkiksi sen, että onko objekti täytetty vai vain raidoitettu (mikä tehdään käyttämällä muunninta hahmossa, tulemme siihen myöhemmin). Myös hahmoa voidaan siirtää, pyörittää ja sen kokoa voidaan muuttaa koskettamatta käytettyä polkua. Tällä tavalla voit käyttää uudelleen yksittäistä polkua ja saada erilaisen, mutta sukua olevat muodot.

    i-o-m-shape -

    When a shape is selected from the list, a rectangle is drawn around it. Depending on where exactly you grab it, the shape is moved, resized or rotated around a point in its center, which itself can be moved. Holding SHIFT will lock direction when moving, limit rotating to 45° angles and restrict the aspect ratio while resizing. The mouse pointer again indicates the current mode:

    +

    Kun hahmo valitaan luettelosta, sen ympärille piirretään nelikulmio. Riippuen siitä, mistä tartut siihen, hahmoa siirretään, sen kokoa muutetaan tai sitä pyöritetään keskipisteen ympäri, mitä itseäkin voidaan siirtää. Pitämällä VAIHTO-näppäimen alhaalla lukitaan siirtosuunta, rajoitetaan pyörittäminen 45°:een ja rajoitetaan kuvasuhdetta kokoa muutettaessa. Hiiren osoitin kertoo taas nykyisen tilan:

    @@ -197,32 +196,32 @@ Selected points are deleted by pressing DEL or by click - - - - + + + +
    i-o-m- move-shapei-o-m-pointer-move-rotation
    MoveResizeRotateMove
    rotation point
    SiirräMuuta kokoaPyöritäSiirrä
    pyörityspistettä
    -

    Shapes lie on top of each other, each is on its own layer, if you will. To reorder them you drag&drop their entry to a different position in the list.

    +

    Hahmot sijaitsevat toistensa päällä, jokainen omassa kerroksessaan, jos niin halutaan. Ne voi järjestää uudelleen rahaamalla ja pudottamalla komponenttirivin eri kohtaan luettelossa.

    -

    Shape Menu

    -

    The Shape menu offers the before mentioned possibility to Add empty, with path/style/path & style and to Duplicate or Remove a shape. Then, there is:

    +

    Hahmovalikko

    +

    Hahmo-valikko tarjoaa aiemmin mainitut mahdollisuudet Lisää tyhjä, path/style/path-polku ja tyyli ja hahmolle Tee kaksoiskappale tai Poista. Sitten on myös:

    - - + +
    Reset transformationReverts all the move, resize and rotate transformations you have applied to the shape.
    Freeze transformationWhen you transform a shape, its assigned path(s) stay in their original position. This may be intended; maybe more than one shape is using that path, maybe you intentionally used Options | Snap to grid to set the points at precise pixel borders.
    -If not, "Freeze transformation" will apply the current shape transformation to the assigned path(s). A future "Reset Transformation" will then return to this new state.
    Nollaa muunnosPalauttaa kaikki hahmon siirrot, koon muuttamiset ja pyörittämiset, joita olet toteuttanut hahmoon.
    Jäädytä muunnosKun muunnat hahmoa, siihen liitetyt polut pysyvät alkuperäisillä paikoillaan. Tämä voi olla tarkoituksellista; ehkä useampi hahmo käyttää tuota polkua, ehkä tarkoituksellisesti käytit Valitsimet | Napsauta rasteriin pisteiden asettamiseksi tarkkoihin pikselirajoihin.
    +Jos näin ei ole, "Jäädytä muunnos" soveltaa nykyistä hahmomuunnosta liitettyihin polkuihin. Tuleva "Nollaa muunnos" palauttaa sitten tähän uuteen tilaan.
    -

    Shape Properties

    -

    Besides a Name, the Properties view for a shape has these options:

    +

    Hahmo-ominaisuudet

    +

    Paitsi Nimi, hahmon Ominaisuudet-näkymällä on nämä valitsimet:

    - - + +
    Min LODMinimum Level of Detail
    Max LODMaximum Level of Detail
    Minimi-LODYksityiskohtatason minimi
    Maksimi-LODYksityiskohtatason maksimi
    -
    Level of Detail (LOD)
    +
    Yksityiskohtataso (LOD)
    @@ -230,95 +229,95 @@ If not, "Freeze transformation" will apply the current shape transformation to t
    16x1632x3264x64
    i-o-m-lod-icon_32 i-o-m-lod-icon_64
    -

    See how there are no numbers in the 16px version of the BeVexed icon? That's done with the "Level of Detail" setting of their shapes.
    -With the LOD you control the visibility of a shape depending on its size. That way, you can leave away details of an icon that look good on a bigger icon, but maybe not so much on its smaller version.

    -

    This is how it works: A LOD of 1.0 is defined as a 64px icon size. To get the LOD of a particular icon size you simply divide it by 64, e.g. a 16px icon has a LOD of 16/64 = 0.25. A shape won't be visible below its Min LOD and above its Max LOD.

    -

    So, if you set a shape's Min LOD to 0.0 and the Max LOD to 0.5, this means that the shape will only be visible for icon sizes smaller or equal to 32px. If you wanted to exclude the 32px icon size, you'd have to stay below 0.5, say 0.49.

    -

    The LOD is not only for leaving out detailing shapes, but also to e.g. change the stroke width at different sizes, if you feel that's needed. Simply duplicate a shape, make your changes and set both of their LOD settings to show either one or the other. Here lies the only source of potential confusion, when you unwittingly overlap LODs of shapes, and wonder why at some size both are visible...
    -For example, if Shape 1 were to be shown below 48px and Shape 2 from 48px upward (LOD: 48/64 = 0.75):

    +

    Katso, onko BeVexed-kuvakkeen 16 pikseliversiossa numeroita? Se tehdään niiden hahmojen "Yksityiskohtataso"-asetuksella.
    +LOD-asetuksella ohjaat hahmon näkyvyyttä sen koosta riippuen. Sillä tavalla voit jättää pois kuvakkeesta yksityiskohdat, jotka näyttävät hyvältä isommassa kuvakkeessa, mutta eivät niin paljoa pienemmässä versiossa.

    +

    Näin se toimii: 1.0 LOD on määritelty 64 pikselin kuvakekoko. Jotta saataisiin tietty LOD-kuvakekoko, se on yksinkertaisesti jaettava 64:lla, esimerkiksi 16 pikselin kuvakkeella on 16/64 LOD = 0.25. Hahmo ei ole näkyvä sen Minimi LOD-arvon alla ja sen Maksimi LOD-arvon yläpuolella.

    +

    Joten, jos asetat hahmon Minimi LOD-arvoksi 0.0 ja Maksimi LOD-arvoksi 0.5, tämä tarkoittaa, että hahmo on näkyvä ainoastaan kuvakekkoina, jotka ovat pienempiä tai yhtäsuuria kuin 32 pikseliä. Jos haluat sulkea pois 32 pikselin kuvakekoon, sinun on jäätävä arvon 0.5 alapuolelle, sanotaan vaikka 0.49.

    +

    LOD ei ole vain hahmon yksityiskohtien jättämistä varten, mutta myös esim.: piirrosviivan leveyden vaihtamiseksi erikokoiseksi, jos sinusta tuntuu, että sitä tarvitaan. Kopioi hahmosta kaksoiskappale ja tee muutoksesi sekä aseta sen molemmat LOD-asetukset näyttämään joko yhtä tai toista. Tässä on yksi hämmennyksen lähde, kun vahingossa kirjoitat hahmon LOD-arvojen päälle, ja ihmettelet, että miksei jotkut kokoarvot ole näkyvissä...
    +Esimerkiksi, jos Hahmo 1 näytettiin alle 48 pikselin kokoisena ja Hahmo 2 arvosta 48 pikseliä ylöspäin (LOD: 48/64 = 0.75):

    - - - + + + - - + +
    OKNot OK!
    Shape 1Min LOD0.00Min LOD0.00
    Max LOD0.74Max LOD0.75
    HyväEi hyvä!
    Hahmo 1Minimi-LOD0.00Minimi-LOD0.00
    Maksim-LOD0.74Maksim-LOD0.75
    Shape 2Min LOD0.75Min LOD0.75
    Max LOD4.00Max LOD4.00
    Hahmo 2Minimi-LOD0.75Minimi-LOD0.75
    Maksim-LOD4.00Maksim-LOD4.00

    index -Style

    -

    A style can either be a solid color or some type of gradient.
    -Besides the predefined colors under Swatches, you can mix your own by clicking on the current color. Also, note the slider under the color spectrum which sets the alpha-channel (transparency).

    +Tyyli +

    Tyyli voi olla joko täysivärinen tai jonkuntyyppinen liukuväri.
    +Paitsi ennakolta määriteltyjä värejä Palaset-valikossa, voit sekoittaa värejä napsauttamalla nykyistä väriä. Huomaa myös liukukytkin värispektrin alla, mikä asettaa alfakanavan (läpinäkyvyys).

    i-o-m-gradients -

    You quickly create a new style by mixing your color and simply drag&dropping it into the list of styles.

    -

    If you go for a gradient, you set the type (Linear, Radial, Diamond, Cone) and then define the start and end colors. This is done with a drag&drop from a color bucket into the respective color indicator under the gradient.
    -Of course you can move these indicators to change the gradient to your liking. You can also insert more indicators to add more colors by double-clicking into the gradient. Pressing DEL removes the selected indicator.

    -

    You can move, resize and rotate the representing box of a gradient on the canvas until it fits your needs. This works just like with shapes.

    +

    Luot uuden tyylin nopeasti sekoittamalla värisi ja yksinkertaisesti raahaamalla ja pudottamalla sen tyylien luetteloon.

    +

    Jos siirryt liukuväriin, aseta tyypiksi (Lineaarinen, Säteettäinen, Vinoneliö, Kartio) ja määrittele sitten alku- ja loppuvärit. Tämä tehdään raahaamalla ja pudottamalla värisanko vastaavaan väri-indikaattoriin liukuvärin alla.
    +Voit tietysti siirtää nämä indikaattorit vaihtamaan liukuväriä halusi mukaan. Voit myös lisätä lisää värejä kaksoisnapsauttamalla liukuväriin. Painikkeen DEL painaminen poistaa valitun indikaattorin.

    +

    Voit siirtää, muuttaa kokoa ja kääntää liukuvärin esittelyikkunaa piirtoalueella kunnes se sopii tarkoituksiisi. Tämä toimii kuten hahmoilla.

    -

    Style Menu

    -

    The Style menu offers the usual entries to Add, Duplicate or Remove a style and to Reset transformation.

    +

    Tyylivalikko

    +

    Tyyli-valikko tarjoaa tavallisia valikkorivejä Lisää, Tee kaksoiskappale tai Poista tyyli ja Nollaa muunnos.

    -

    Style Properties

    -

    The Name is the only Properties of a style.

    +

    Tyyliominaisuudet

    +

    Nimi on tyylin ainoa Ominaisuus.

    index -Transformer

    -

    A shape can have Transformers which change its appearance. The effects, however, are more subtle than a truck turning into a battle robot...

    +Muunnin +

    Hahmolla voi olla Muuntimia, jotka vaihtavat sen ulkoasun. Tehosteet ovat kuitenkin hienovaraisempia kuin kuorma-auton muuntuminen taistelurobotiksi...

    -

    Transformer Add Menu

    +

    Muuntimen Lisää-valikko

    - - + +
    ContourAdds an outline to a shape.
    StrokeStrokes the path of a shape instead of filling it with a style.
    ÄäriviivaLisää ääriviivan hahmoon.
    ViivaViivoittaa hahmon polun eikä täytä sitä tyylillä.
    -

    Depending on the kind of Transformer, you'll get a different set of properties.

    +

    Muuntimen tyypistä riippuen saat erilaisia ominaisjoukkoja.

    -

    Transformer Properties

    -

    Besides a Name and the actual Width for the transformer, the Properties view has these (depending on its type slightly differing) options:

    +

    Muunninominaisuudet

    +

    Paitsi Muuntimen Nimi ja todellinen Leveys, Ominaisuudet-valikkonäkymällä on nämä (riippuen lievästi sen tyyppieroista) valitsimet:

    - - - - + + + +
    CapsStroke only. Defines the end caps of a line: Butt, Square or Round.
    Detect orient.Contour only. Determines if the contour is to the inside or outside the path.
    JoinsDefines how lines are joint at a point: Miter, Round or Bevel.
    Miter limitOnly when the above Joins is set to "Miter" this setting influences the looks of the miter joint.
    PääteholkitVain piirrosviiva. Määrittää viivan suojaholkit: Nuppi, Neliö tai Pyöreä.
    Havaitse suuntaVain ääriiva. Määrittää, onko ääriviiva polun sisäpuolella vai ulkopuolella.
    LiitoksetMäärittää, kuinka viivat yhdistetään pisteessä: Viistekulma, Pyöreä tai Särmä.
    ViistekulmarajaVain kun yläpuolella oleva Liitokset on asetettu arvoon "Viistekulma" tämä asetus vaikuttaa viistoliitoksen ulkonäköön.

    index -Saving an icon

    -

    There's your usual menu bar at the top, File, Edit, Options. The usage is pretty much self-explaining, so we'll only look at how to save your work.

    -

    File | Save as... will save in a special Icon-O-Matic format that retains additional information like the names of paths, shapes and styles. These will be stripped from the actual icon once you export it to save space. It's a good idea to back-up your work like this, because without named objects everything's named "<path>/<shape>/<style>" which makes specific changes tedious.

    +Kuvakkeen tallentaminen +

    Ylimpänä on tavallinen valikkopalkki, Tiedosto, Muokkaa, Valitsimet. Käyttö on paljolti itsestäänselvää, joten katsomme vain, kuinka työ tallennetaan.

    +

    Tiedosto | Tallenna nimellä... tallentaa erikoisessa Kuvakemaatti-muodossa, joka säilyttää lisätiedot, kuten polkujen nimet, hahmot ja tyylit. Nämä riisutaan todellisesta kuvakkeesta heti kun viet sen tallennustilaan. On hyvä ajatus varmuuskopioida työsi tällä tavoin, koska ilman nimettyjä objekteja kaikki nimetään "<polku>/<hahmo>/<tyyli>" mikä tekee tietyt vaihdot hankaliksi.

    -

    File | Export as... opens a familiar save panel with a file format pop-up menu at the bottom, offering these choices:

    +

    Tiedosto | Vie nimellä... avaa tutun tallennuspaneelin, jonka pohjalla on tiedostonmuodon ponnahdusvalikko, joka tarjoaa nämä valinnat:

    - - - - - - - - + + + + + + + +
    HVIFHaiku Vector Icon Format
    HVIF RDefSaves as resource used by programmers
    HVIF source codeSaves as source code used by programmers
    SVGSaves as SVG
    PNGSaves as a 64px sized PNG
    PNG setSaves as 16, 32 and 64px sized PNGs
    BEOS:ICON attributeChoose a file and set its icon attribute directly
    META:ICON attributeChoose a file and attach the icon as mere meta data
    HVIFHaiku-vektorikuvakemuoto
    HVIF RDefTallentaa ohjelmoijien käyttämänä resurssina
    HVIF-lähdekoodiTallentaa ohjelmoijien käyttämänä lähdekoodina
    SVGTallentaa SVG-tiedostona
    PNGTallentaa 64px -kokoisena PNG-tiedostona
    PNG setTallentaa 16-, 32- ja 64px -kokoisina PNG-tiedostoina
    BEOS:ICON-attribuuttiValitse tiedosto ja aseta kuvakeattribuutti suoraan
    META:ICON-attribuuttiValitse tiedosto ja liitä kuvake pelkkänä meta-tietona

    index -Tips & Tricks

    -

    A few things you should keep in mind when working with Icon-O-Matic and some general tips for its usage:

    +Vihjeet ja niksit +

    Muutamia asioita tulisi pitää mielessä, kun työskennellään Kuvakemaatilla ja joitakin yleisiä vihjeitä sen käytöstä:

      -
    • Read the Icon Guidelines to learn about important characteristics of Haiku icons, e.g. perspective, colors and shadows.

    • -
    • You should always try to minimize your use of paths, those are the most expensive, file size wise. Re-use paths wherever possible and work with manipulated shapes and their transformers instead. Smart use of gradients can also save space.

    • -
    • Wherever possible, you should activate Snap-to-Grid from the Options menu when editing paths. Path points that align with the 64x64 pixel grid use less storage space. You'll also get the crispest look if points are set on exact pixel borders. For example, it is important to align the most prominent outlines with the 16x16 grid.

    • -
    • Check the preview to see if your icon still looks good in 16x16. You may want to use the Level Of Detail settings described in the Shapes section.

    • -
    • There's an easy way to produce letters, even if Icon-O-Matic doesn't provide such a tool. Just enter the text in a text editor such as StyledEdit, adjust font type and style, and drag&drop or copy&paste the selected text into Icon-O-Matic. This will create the according paths and shapes.

    • -
    • If you assign more than one path to a shape, their overlapping areas will cancel each other out. When one path is completely inside another, it practically creates a hole in the resulting shape.

    • -
    • You can zoom in and out of the canvas with the mouse wheel. Panning is done either by click&drag with the middle mouse button or with a normal left-click&drag while holding SPACE.

    • +
    • Lue Kuvakeohjeet oppiaksesi Haiku-kuvakkeiden tärkeät ominaisuudet, esim.: perspektiivi, värit ja varjot.

    • +
    • Polkujen käyttöä tulisia aina yrittää minimoida, koska ne ovat kalliimpia tiedoston koon kannalta. Yritä käyttää polkuja uudelleen aina kun mahdollista ja työskentele sen sijaan manipuloitujen hahmojen ja niiden muunnosten kanssa. Liukuvärien älykäs käyttö voi myös säästää tilaa.

    • +
    • Pitäisi milloin vain mahdollista aktivoida Kiinnitä-rasteriin Valitsimet-valikosta kun muokataan polkuja. Polkupisteet, jotka tasaavat 64x64 pikselin rasterikäyttöön käyttävät vähemmän tallennustila. Saat myös teräväpiirteisemmän näkymän, jos pisteet on asetettu tarkalleen pikselirajoille. Esimerkiksi, on tärkeää tasata silmiinpistävimmät ääriviivat 16x16-rasteriin.

    • +
    • Tarkista esikatselu nähdäksesi, näyttääkö kuvake yhä hyvältä 16x16-koossa. Haluat ehkä käyttää Hahmo-kappaleessa kuvailtuja Yksityiskohtataso-asetuksia.

    • +
    • Kirjainten tuottamien on helppoa, vaikka Kuvakemaatti ei tarjoa sellaista työkalua. Kirjoita vain teksti sellaisessa tekstieditorissa kuin StyleEdit, säädä kirjasintyyppi ja -tyyli sekä raahaa ja pudota tai kopioi-liitä valittu teksti Kuvakemaattiin. Tämä luo vastaavat polut ja hahmot.

    • +
    • Jos liität useamman kuin yhden polun hahmoon, päällekkäiset alueet peruvat toisensa. Kun yksi polku on kokonaan toisen sisällä, se luo käytännössä reiän tuloksena olevaan hahmoon.

    • +
    • Voit lähentää ja loitontaa piirrosaluetta hiiren rullalla. Vieritys tehdään joko napsauttamalla ja raahaamalla hiiren keskimmäisellä painikkeella tai normaalilla napsauta hiiren vasemmalla painikkeella ja raahaa samalla kun VÄLI-painiketta pidetään alhaalla.

    @@ -342,9 +341,9 @@ Of course you can move these indicators to change the gradient to your liking. Y diff --git a/docs/userguide/fi/applications/installer.html b/docs/userguide/fi/applications/installer.html index b2ed1cbdca..32b9cd79b7 100644 --- a/docs/userguide/fi/applications/installer.html +++ b/docs/userguide/fi/applications/installer.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Installer + Asennusohjelma
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    installer-icon_64.pngInstaller

    +

    installer-icon_64.pngAsennusohjelma

    - +
    TyöpöytäpalkkiSovellukset
    Sijainti/boot/system/apps/Installer
    Asetuksetnone
    Asetuksetei mitään


    -

    The Installer is used to copy Haiku onto another volume.
    -Upon launch it displays a start window with important information. It's not a mindless EULA you're used to click away in the blink of an eye, it states:

    +

    Asennusohjelmaa käytetään Haikun kopioimiseksi toiselle taltiolle.
    Käynnistettäessä se näyttää käynnistysikkunan tärkeillä tiedoilla. Se ei ole järjetön EULA, jonka olet tottunut napsauttamaan pois silmänräpäyksessä, se ilmoittaa:

      -
    • This is alpha-quality software. Make backups or suffer the consequences!

    • -
    • The Installer needs a prepared partition. You may have to use a GParted LiveCD or a similar tool until Haiku's DriveSetup is mature enough to handle this task.

    • -
    • Haiku can be added manually to the bootmanager GRUB. How that is done exactly is available as an online guide.
    • +
    • Tämä on alfalaatuinen ohjelmisto. Tee varmuuskopioita, tai kärsi seurauksista!

    • +
    • Asennusohjelma tarvitsee ennakolta valmistellun osion. Olet ehkä käyttänyt GParted LiveCD-levyä tai samanlaista työkalua kunnes Haikun Levyasema-asetusohjelma on kypsynyt kylliksi käsittelemään tämän tehtävän.

    • +
    • Haiku voidaan lisätä manuaalisesti alkulataushallintaan GRUB. Ohjeet siitä, kuinka tämä todella tehdään, ovat saatavilla osoitteesta verkko-opaste.



    -

    Once you acknowledged with Continue, you're presented with the main window:

    +

    Kun olet kerran hyväksynyt Jatka-painikkeella, sinulle esitellään pääikkuna:

    installer.png -

    In the first pop-up menu you choose the source for the installation. It can be a currently installed Haiku or can come from an install CD or USB drive, etc.
    -The second pop-up menu specifies the target for the installation. This target partition/volume will be completely overwritten and has to be set aside beforehand by a partitioning tool like GParted.

    -

    Clicking the little expander widget will Show optional packages, if available, that you can choose to install in addition to the basic Haiku.

    -

    You should do a last check if you really picked the right target before starting the installation process. Click on Setup partitions... to open DriveSetup and have a look at the naming and layout of the available volumes and partitions.

    -

    Begin starts the installation procedure, which basically copies everything but the home/ and common/ folder onto the target volume and makes it bootable.

    +

    Ensimmäisessä ponnahdusvalikossa valitset asennuksen lähteen. Se voi olla jo asennettu Haiku-järjestelmä tai voi tulla asennus-CD-levyltä tai USB-levyltä, jne.
    Toinen ponnahdusvalikko määrittelee asennuksen kohteen. Tämä kohdeosio/taltio korvataan kokonaan ja se on laitettu syrjään GParted-ohjelman tapaisella osiointityökalulla.

    +

    Pienen laajentajakäyttöliittymäkomponentin napsauttaminen avaa Näytä valinnaiset pakkaukset, jos niitä on käytettävissä, jotka voit valita asennettavaksi perus-Haikun lisäksi.

    +

    Sinun pitäisi lopuksi tarkistaa, että poimit todella oikean kohteen ennen asennusprosessin aloittamista. Napsauta painiketta Aseta osiot..., mikä käynnistää Levyasema-asetukset ja sinulla on näkymä olemassaolevien taltioiden ja osioiden nimeämiseksi ja sijoittelemiseksi.

    +

    Aloita käynnistää asennusproseduurin, joka perimmillään kopoi kaikki paitsi home/- ja common/ -kansion kohdetaltiolle ja tekee siitä alkuladattavan.

    index -Tools

    -

    At the end of the installation procedure, the partition is automatically made bootable. However, it can happen that some other operating system or partitioning tool (accidentally) overwrites the boot sector of your Haiku volume. In this case, boot your installation CD and start the Installer. Select your Haiku boot partition from the Onto: Please choose target menu and select Write boot sector from the Tools menu to make it bootable again.

    -

    The other item in the Tools menu is used to Set up a boot menu that puts a menu in the boot sector to choose what operating system to boot. See topic BootManager for more information.
    - You don't need to run the BootManager if you already use a bootmanager like GRUB, in which case you have to add Haiku manually (see above), or Haiku runs exclusively on your machine.

    +Työkalut +

    Asennusproseduurin lopussa osio tehdään automaattisesti alkuladattavaksi. Voi kuitenkin tapahtua, että joku toinen käyttöjärjestelmä tai osiointityökalu (vahingossa) korvaa Haiku-taltion alkulataussektorin. Alkulataa tässä tapauksessa asennus-CD-levysi ja käynnistä asennusohjelma. Valitse Haiku-alkulatausosio Kohde: Valitse kohde-valikko ja valitse Kirjoita alkulataussektori valikosta Työkalut sen tekemiseksi uudelleen alkuladattavaksi.

    +

    Toista valintaa Työkalut-valikossa käytetään Aseta alkulatausvalikko-asetukseen, joka laittaa alkulataussektoriin valikon, josta voidaan valita, mikä käyttöjärjestelmä alkuladataan. Katso lisätietoja aiheesta Alkulataushallinta.
    Sinun ei tarvitse suoritaa Alkulataushallinta-ohjelmaa, jos käytät jo alkulataushallintaa kuten GRUB, missä tapauksessa Haiku on lisättävä manuaalisesti (katso yllä), tai jos Haiku on ainoa käyttöjärjestelmä koneellasi.

    @@ -86,9 +86,9 @@ The second pop-up menu specifies the target for the installation. This target pa diff --git a/docs/userguide/fi/applications/list-cli-apps.html b/docs/userguide/fi/applications/list-cli-apps.html index bdcd255c43..c96958838a 100644 --- a/docs/userguide/fi/applications/list-cli-apps.html +++ b/docs/userguide/fi/applications/list-cli-apps.html @@ -10,18 +10,20 @@ * Authors: * Daniel Marth * Humdinger + * Translators: + * Karvjorm * --> - List of commands + Komentojen luettelo
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    magnify-icon_64.pngMagnify

    +

    magnify-icon_64.pngSuurennuslasi

    TyöpöytäpalkkiSovellukset
    Sijainti/boot/system/apps/Magnify
    Asetukset~/config/settings/Magnify_prefs


    -

    Magnify shows an enlarged version of the area around your mouse pointer.

    +

    Suurennuslasi näyttää laajennetun version hiiren kohdistimen ympärillä olevasta alueesta.

    magnify.png -

    At the top you'll find the size and magnification level of the area. "32 x 32 @ 8 pixels/pixel" means that you look at a 32x32 pixel square around your mouse pointer and every pixel is enlarged by a factor of 8.

    -

    Below that is the color of the pixel that's marked by a red outline. Its color is presented as RGB and hex value.
    -You can move the red outline with / / / .

    -

    To measure distances and align objects, you can add up to two blue crosshairs with ALT H. Their X/Y coordinates toward the top left corner and, if both are added, their X/Y distance from each other, are displayed at the bottom.
    -They can also be moved with / / / . The active crosshair is marked with an "x".

    -

    You can move the mouse pointer pixel by pixel with OPT  / / / .

    -

    Clicking on the pop-up menu gives you a number of options:

    +

    Ylimpänä näet alueen suurennustason ja koon. "32 x 32 @ 8 pikseliä/pikseli" tarkoittaa, että katsot 32x32 pikselin neliötä hiiren osoittimen ympärillä ja jokainen pikseli on laajennettu 8-kertaiseksi.

    +

    Sen alapuolella on sen pikselin väri, joka on merkitty punaisella ääriviivalla. Sen väri esitetään RGB-arvona ja heksadesimaaliarvona.
    +Voit siirtää punaista ääriviivaa näppäimillä / / / .

    +

    Etäisyyksien mittaamiseksi ja objektien tasaamiseksi voit lisätä korkeintaan kaksi sinistä hiusristikkoa näppäimillä ALT H. Niiden X-/Y-koordinaatit vasempaan yläkulmaan ja jos molemmat on lisätty, niiden X-/Y-etäisyys toisistaan näytetään alhaalla.
    +Niitä voidaan myös siirtää näppäimillä / / / . Aktiivinen hiusristikko on merkitty merkillä ”x”.

    +

    Voit siirtää hiiren osoitinta pikseli pikseliltä näppäimillä Alt Gr/OPT  / / / .

    +

    Ponnahdusvalikon napsauttaminen tarjoaa sinulle lukuisia valitsimia:

    - - - - - - - - - - - - - + + + + + + + + + + + + +
    Save imageALT S Saves the current display as a resource file.
    Copy imageALT C Copies the current display to the clipboard.
    Hide/Show infoALT T Toggles the display of all the additional information.
    Add a crosshairALT H Adds a crosshair you can drag around.
    Remove a crosshairALT SHIFT H Removes the last added crosshair.
    Hide/Show gridALT G Toggles the overlayed grid.
    Freeze/Unfreeze imageALT F Stops/continues updating the magnification area.
    Stick coordinatesALT I Keeps updating the magnification area, but don't follow the mouse pointer any more.
    Make squareALT / Reverts back to a square display after resizing the window.
    Decrease window sizeALT - Shrinks the magnified area around the mouse pointer.
    Increase window sizeALT + Enlarges the magnified area around the mouse pointer.
    Decrease pixel sizeALT , Lowers magnification.
    Increase pixel sizeALT . Increases magnification.
    Tallenna kuvaALT S Tallentaa nykyisen näytön resurssitiedostona.
    Kopioi kuvaALT C Kopioi nykyisen näytön leikepöydälle.
    Piilota/näytä tiedotALT T Vuorottelee kaiken lisätietojen näyttämisessä.
    Lisää hiusristikkoALT H Lisää hiusristikon, jota voit raahata ympäriinsä.
    Poista hiusristikkoALT VAIHTO H Poistaa viimeksi lisätyn hiusristikon.
    Piilota/näytä rasteriALT G Vuorottelee päällysrasterin näyttämisessä.
    Jähmetä/vapauta kuvaALT F Pysäyttää/jatkaa suurennusalueen päivittämistä.
    TarttumiskoordinaatitALT I Jatkaa suurennusalueen päivittämistä, mutta ei enää seuraa hiiren osoitinta.
    Tee neliöALT / Palaa takaisin neliönäyttöön ikkunan koon muuttamisen jälkeen.
    Pienennä ikkunan kokoaALT - Supistaa suurennettua aluetta hiiren osoittimen ympärillä.
    Kasvata ikkunan kokoaALT + Laajentaa suurennettua aluetta hiiren osoittimen ympärillä.
    Pienennä pikselikokoaALT , Alentaa suurennusta.
    Kasvata pikselikokoaALT . Kasvattaa suurennusta.
    @@ -88,9 +91,9 @@ They can also be moved with / diff --git a/docs/userguide/fi/applications/mail.html b/docs/userguide/fi/applications/mail.html index 61f89cdcdc..31d11329a7 100644 --- a/docs/userguide/fi/applications/mail.html +++ b/docs/userguide/fi/applications/mail.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Mail + Sähköposti
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    - +
    Hakemisto
    Reading messages
    - Creating new messages
    - Preferences
    Sähköpostiviestien lukeminen
    + Uusien sähköpostiviestien luominen
    + Asetukset
    -

    mail-icon_64.pngMail

    +

    mail-icon_64.pngSähköposti

    +~/config/settings/Mail/Menu Links/ - Tähän laitetut objektit näkyvät sähköpostiohjelman asiayhteysvalikossa
    +~/config/settings/Mail/signatures/ - Allekirjoitusten tallennuspaikka
    +~/config/settings/Mail/status/ - Omien tilojen tallennuspaikka
    TyöpöytäpalkkiSovellukset
    Sijainti/boot/system/apps/Mail
    Asetukset~/config/settings/Mail/
    -~/config/settings/Mail/Menu Links/ - Objects put here appear in the mailbox' context menu
    -~/config/settings/Mail/signatures/ - Location to store signatures
    -~/config/settings/Mail/status/ - Location to store custom statuses


    -

    Mail is Haiku's default viewer and editor of emails. It has nothing to do with the actual fetching and sending of mails, which is done by the mail_daemon and can be configured via the E-mail preferences.

    -

    This page is a general overview of the application Mail. For more information how email in Haiku works, refer to the Workshop on managing email.

    +

    Sähköposti on Haikun sähköpostiviestien oletuskatselin ja -muokkain. Sillä ei ole mitään tekemistä itse sähköpostiviestien noutamisen ja lähettämisen kanssa, minkä tekee mail_daemon-taustaprosessi ja se voidaan asettaa Sähköpostiasetukset-ohjelmalla.

    +

    Tämä sivu on yleiskatsaus Sähköpostisovellukseen. Lisätietoja siitä, kuinka sähköposti toimii Haikussa, löytyy viitteestä Työpaja sähköpostiviestien hallinnointiin.

    index -Reading messages

    -

    You double-click an email file to open it in Mail. The interface is quite simple:

    +Sähköpostiviestien lukeminen +

    Sähköpostitiedoston avaamiseksi Sähköpostiohjelmassa sinun on kaksoisnapsautettava sitä. Käyttöliittymä on aika yksinkertainen:

    email-read.png -

    A menu and optional tool bar on top, with an area of the interesting attributes of a mail (to, from, subject, date) below that, and then the actual body of the mail. If the mail appears with strange characters or empty, try to change the Decoding from the pop-up menu.

    -

    If there are files attached to an email, they are listed at the end of the message. A right-click on one opens a context menu to Save attachment... or Open attachment. You can also drag & drop directly to the Desktop or another Tracker window.

    -

    Most of the menu and tool bar items are pretty self-explaining, so we'll concentrate just on the highlights.

    +

    Ylhäällä on valikko ja sen alla valinnainen työkalupalkki sähköpostin kiinnostusalueattribuuteilla (vastaanottaja, lähettäjä, aihe, päivämäärä) ja sähköpostiviestin varsinainen runko. Jos sähköpostiviestissä ilmenee outoja merkkejä tai se on tyhjä, yritä vaihtaa koodausta ponnahdusvalikon Dekoodaus-valikosta.

    +

    Jos sähköpostiviestissasi on liitteitä, ne on lueteltu viestin lopussa. Hiiren kakkospainikkeealla voi avata asiayhteysvalikon valikkoon Tallenna liite... tai Avaa liite. Voit myös raahata ja pudottaa liitteen Työpöydälle tai toiseen Seuraaja-ikkunaan.

    +

    Useimmat valikon ja työkalupalkin kohdat ovat itsestäänselittäviä, joten keskitymme vain huippukohtiin.

    -indexFile

    -

    When you close the window of a new mail, its status is normally switched from "New" to "Read". But you can set other statuses as well, by choosing from the Close and... submenu. There you'll also find the option Set to... to create your own custom statuses, which are saved under ~/config/settings/Mail/status/.

    +indexTiedosto +

    Kun suljet uuden sähköpostiviestin ikkunan, sen tila vaihtuu normaalisti "Uudesta" "Luetuksi". Mutta voit asettaa myös tiloja valitsemalla tilan alivalikosta Sulje ja.... Sieltä löydät myös valitsimen Aseta tilaan..., mikä luo sinun omia tilojas, jotka tallennetaan hakemistoon ~/config/settings/Mail/status/.

    -indexEdit

    -

    Here you'll find an item to open Mail's Preferences... (see below) and a shortcut to manage your Accounts..., which will open the E-mail preference panel.

    +indexMuokkaa +

    Tästä löydät kohdan valikon Asetukset... (katso alla) avaamiseksi ja pikanäppäimen, jolla hallinnoit valikkokohtaa Tilit..., joka avaa Sähköpostiasetukset-paneelin.

    -indexView

    -

    You'll only seldomly need these two items, if at all:

    +indexKatso +

    Tarvitset näitä kohtaa harvoin, jos koskaan:

    - - + +
    Show headerALT HShows the complete header of a mail, in case you need to track down the path of your mail, for example.
    Show raw messageDisplays a mail in its raw state, i.e. with all its control characters and without Mail's coloring of quotes or URLs, for example..
    Näytä otsakeALT HNäyttää sähköpostiviestin täydellisen otsakkeen esimerkiksi siltä varalta, että sinun on jäljitettävä sähköpostiviestisi polku.
    Näytä raakaviestiNäyttää sähköpostiviestin raakatilassaan, toisin sanoen, kaikkine ohjausmerkkeineen ja esimerkiksi ilman Sähköposti-ohjelman väritettyjä lainauksia tai verkko-osoitteita..

    -indexMessage

    -

    The different options to reply to a mail may need a bit of explanation.

    +indexViesti +

    Eri valinnat sähköpostiviestiin vastaamisessa tarvitsevat ehkä hiukan selittämistä.

    - - - + + +
    ReplyALT RThe standard reply to the server that has sent the mail to you. NOTE: In case of a mailing list post, this normally replies back to the mailing list, not just the person that wrote the post!
    Reply to senderOPT ALT RThis on the other hand, sends directly and only to the person listed in the "From" attribute.
    Reply to allSHIFT ALT RReplies to the original sender plus all other (cc'ed) recipients of the original mail.
    VastaaALT RVakio vastaus palvelimelle, joka on lähettänyt sähköpostia sinulle. HUOMAA: Silloin kun on kyse sähköpostituslistapostista, tämä vastaa normaalisti takaisin postituslistalle, ei juuri sille henkilölle, joka kirjoitti viestin!
    Vastaa lähettäjälleOPT ALT RToisaalta lähettää suoraan ja vain henkilölle, joka on lueteltu ”Lähettäjä”-attribuutissa.
    Vastaa kaikilleVAIHTO ALT RVastaa alkuperäiselle lähettäjälle plus kaikille muille alkuperäisen sähköpostiviestin (Kopio-)vastaanottajille.
    -
    If you mark a passage in the email before replying to it, only the marked text will be quoted in your answering mail. A nice way to cut down on excessive quoting, which is frowned upon by pretty much everybody...
    -

    The items to Forward, Resend and Copy to new are again pretty self-explaining.

    -

    When you've opened an email from a Tracker or query result window, Previous message and Next message will move to the previous/next email in the list.

    -

    Save address collects all email addresses from the header and the actual email body in a submenu. Choosing an address will open the People application in order to complete and save the contact information.

    +
    Jos merkitset jakson sähköpostiviestistä ennen vastaamista siihen, merkkitty teksti lainataan vastaussähköpostiviestiisi. Kiva tapa supistaa ylimääräistä lainaamista, mitä aika moni paheksuu...
    +

    Valinnat Lähetä edelleen, Lähetä uudelleen and Kopioi uuteen ovat taas aika itsestään selittäviä.

    +

    Kun olet avannut sähköpostin Seuraajasta tai kyselytulosikkunasta, Edellinen viesti ja Seuraava viesti siirtävät edelliseen tai seuraavaan viestiin luettelossa.

    +

    Tallenna osoite kerää kaikki sähköpostiosoitteet otsakkeesta ja todellisesta sähköpostiviestin rungosta alivalikossa. Osoitteen valitseminen avaa Ihmiset-sovelluksen, jossa voit täydentää ja tallentaa yhteystietoja.

    -indexQueries

    -

    This doesn't work yet, but is intended to hold queries that would show all mail related to the currently open mail, like all from the same sender or same subject/thread.

    +indexKyselyt +

    Tämä ei vielä toimi, mutta tarkoitus on säilyttää kyselyjä, jotka näyttäisivät kaikki parhaillaan avoinna olevaan sähköpostiviestiin liittyvät sähköpostiviestit, kuten kaikki saman lähettäjän viestit tai saman aiheen/säikeen viestit.

    index -Creating new messages

    -

    A new email is created by invoking the New mail message menu or the corresponding icon from the tool bar of an open email. Or you just start the Mail application or choose Create new message... from the context menu of the mailbox icon in the Deskbar.

    +Uusien sähköpostiviestien luominen +

    Uusi sähköpostiviesti luodaan kutsumalla Uusi sähköpostiviesti-valikkoa tai vastaavaa kuvaketta avoimen sähköpostiviestin työkalupalkista. Tai voit käynnistää Sähköposti-sovelluksen tai valita Luo uusi viesti... Työpöytäpalkin sähköpostikuvakkeen asiayhteysvalikosta.

    email-write.png -

    The window is pretty similar to the one when reading mails. The menu and tool bar items are slightly different and the text boxes have to be filled with the recipient's email address, subject and so on, of course.

    -

    Cc is short for the anachronistic term "carbon copy" and results in copies of your mail being sent to the listed people. The difference to just listing a buch of addresses in the "To" field is, that you don't directly address the cc'ed people, thereby signaling that you probably don't expect an answer of them.
    -Bcc means "blind carbon copy" which does practically the same as "Cc", but hides the recipients from each other.

    -

    You can enter several recipients by separating their addresses with a comma. -To, CC, and BCC are pop-up menus. They contain all email addresses on your system found by a query for People files. Their "Group" attribute will sort them in corresponding submenus.

    -

    Again, we'll focus on the more interesting features in the menus.

    +

    Ikkuna on melko samanlainen kuin se, jossa luetaan sähköpostia. Valikko ja työkalupalkki on lievästi erilainen ja teksti-ikkunat on täytetty tietysti vastaanottajien sähköpostiosoitteilla, aiheella ja niin edelleen.

    +

    Kopio-valikossa on luettelo sähköpostiviestin kopion vastaanottajista "carbon copy". Erona "Vastaanottaja"-kenttään on, että Kopio-luettelossa olevien vastaanottajien ei odoteta vastaavan viestiin.
    +Piilokopio-tarkoittaa viestikopiota, joka ei näy muille vastaanottajille, vaan piilottaa "Kopio"-vastaanottajat toisiltaan.

    +

    Voit kirjoittaa useita vastaanottajia erottelemalla vastaanottajat pilkulla. +Vastaanottaja, Kopio, ja Piilokopio ovat ponnahdusvalikkoja. Ne sisältävät kaikki sähköpostiosoitteet, jotka sinun järjestelmässäsi löytyvät Ihmiset-tiedostojen kyselyllä. Niiden "Ryhmä"-attribuutti lajittelee ne vastaaviin alivalkioihin.

    +

    Keskitymme taas valikkojen mielenkiintoisimpiin ominaisuuksiin.

    -indexFile

    -

    With Save as draft you can store your work so far and come back to it later. To load it again, choose it from the Open draft submenu that will list the result of a query for all mails with the status "Draft".

    +indexTiedosto +

    Valikolla Tallenna luonnoksena voit tallentaa työsi toistaiseksi ja tulla siihen takaisin myöhemmin. Sen lataamiseksi uudelleen valitse se alivalikosta Avaa luonnos, joka luettelee kaikki sähköpostiviestit kyselytilalla "Luonnos".

    -indexEdit

    -

    Quote and Remove quote or their respective shortcuts ALT / are used to add/remove a level of quoting by adjusting the number of ">" symbols in front of quoted lines. Just select some text in all the lines you want un/quoted and invoke the menu item.

    +indexMuokkaa +

    Lainaa ja Poista lainaus tai niiden vastaavat pikanäppäimet ALT / käytetään lisäämään/poistamaan lainaustaso säätämällä numeroa ">" symboleja lainausrivien edesssä. Valitse vain jokin tekstiin kaikki ne rivit, jotka haluat lainata ja tai poistaa lainauksesta ja kutsu valikkokohdetta.

    email-spellcheck.png -

    Check spelling currently only offers corrections of English texts by marking wrong or unknown words red and showing them in italic. -Right-clicking such a word opens a context menu offering suggestions to correct the word or to Add it to the accepted vocabulary.

    -

    Then, there are again the items to open Mail's Preferences... (see below) and a shortcut to managing your Accounts..., which will open the E-mail preference panel.

    +

    Tarkista oikeinkirjoitus tarjoaa nykyisin vain englanninkielisten tekstin oikeinkirjoituksen tarkistusta merkitsemällä väärät ja tuntemattomat sanat punaisella värillä ja näyttämällä ne kursivoituna. +Sellaisen sanan avaaminen hiiren kakkospainikkeella avaa asiayhteysvalikon, joka tarjoaa suosituksia sanan korjaamiseksi tai Lisää sen hyväksyttyyn sanastoon.

    +

    Sitten on taas kohteita avata Sähköposti-ohjelman Asetukset...-valikko (katso alla) ja pikanäppäin Tilit..., joka avaa Sähköpostiasetukset-paneelin.

    -indexMessage

    -

    With Add signature you can add predefined texts to the end of your mail. From its submenu you can choose a specific or Random one.

    +indexViesti +

    Valikolla Lisää allekirjoitus voit lisätä ennakolta määritellyn tekstin sähköpostiviestisi loppuun. Sen alivalikosta voit valita tietyn tekstin tai Satunnaisen.

    email-signature.png -

    You create new or edit existing signatures with Edit signatures..., which will open a window where you enter the text itself and the title of your new sig. There, in the Signature menu, you find items to Open a specific signature or Save or Delete the currently loaded one, Signatures should be saved in ~/config/settings/Mail/signatures.

    -

    Use Add enclosure... and Remove enclosure to add/remove files as attachments. You can also drag & drop files from a Tracker window. Be careful though to drop those in the header section (To/From/Subject area at the top) or they'll get pasted into the email body if they are text files.

    +

    Luot uuden tai muokkaat olemassaolevan allekirjoituksen valikolla Muokkaa allekirjoituksia..., mikä avaa ikkunan, missä kirjoitat itse tekstin ja uuden allekirjoituksensi otsikon. Valikosta Allekirjoitus löydät alivalikot Avaa tietyn allekirjoituksen avaamiseksi tai Tallenna tallentamiseksi tai Poista parhaillaan ladatun allekirjoituksen poistamiseksi. Allekirjoitukset pitäisi tallentaa kansioon ~/config/settings/Mail/signatures.

    +

    Käytä Lisää liite... ja Poista liite tiedostojen lisäämiseksi tai poistamiseksi liitteinä. Voit myös raahata ja pudottaa tiedostot Seuraaja-ikkunasta. Ole varovainen niiden pudottamisessa (Vastaanottaja/Lähettäjä/Aihe -alueella ylhäällä) tai ne liitetään sähköpostitiedoston runkoon, jos ne ovat tekstitiedostoja.

    email-attachments.png -

    File attachments are listed below the header section. You can remove a file by invoking a context menu or by selecting it and pressing DEL.

    +

    Tiedostoliitteet on lueteltu otsakelohkon alla. Voit poistaa tiedoston kutsumalla asiayhteysvalikkoa tai valitsemalla sen ja painamalla painiketta DEL.

    -indexQueries

    -

    This doesn't work yet, but is intended to hold queries that would show all mail related to the currently open mail, like all to the same recipient or same subject/thread.

    +indexKyselyt +

    Tämä ei vielä toimi, mutta se on tarkoitettu säilyttämään kyselyt, jotka näyttävät kaikki parhaillaan avoinna olevaan sähköpostiviestiin liittyvät sähköpostiviestit, kuten kaikki saman lähettäjän tai samaa aihetta tai säiettä koskevat viestit.

    index -Preferences

    +Asetukset email-preferences.png -

    Mail's preferences come in two parts:

    +

    Sähköpostiasetukset ovat kahdessa osassa:

    -indexUser interface

    +indexKäyttöliittymä - - - - - - + + + + + +
    Button barOptions to show labels under the icons or hide the tool bar completely.
    FontSets the type of font used for the email text.
    SizeSets the font size.
    Colored quotesColors different levels of quotation.
    Initial spell check modeTurns the spell checker on/off on startup.
    Automatically mark mail as readIf you close an email with the Status "New", you can have it automatically marked as "Read".
    PainikepalkkiValitsimet näyttävät nimiöt kuvakkeiden alla tai piilottavat työkalupalkin kokonaan.
    KirjasinAsettaa sähköpostiviestin tekstissä käytetyn kirjasintyypin.
    KokoAsettaa kirjasinkoon.
    Väritetyt lainauksetVärittää lainausten eri tasot.
    Alustava oikeinkirjoitustarkistustilaOttaa käyttöön tai pois käytöstä oikeinkirjoituksen tarkistuksen käynnistymisen yhteydessä.
    Merkitse sähköpostiviestit automaattisesti luetuiksiJos suljet sähköpostiviestin, jonka tila on "Uusi", se merkitään automaattisesti tilaan "Luettu".

    -indexMailing

    +indexSähköpostin käyttö - - - + + - - - - - +> ...ja loput lainatusta tekstistä seuraa... + + + + +
    Default accountIf you have several email accounts, this specifies which to use by default when creating a new message.
    Reply accountWhen you reply to a mail, you can either always Use default account set in the pop-up menu above, or use the Account from mail, which will send the mail from the same account that received the original message.
    Reply preambleThis is inserted before the quoted text in your reply. You can use various variables from the pop-up menu next to the text field. Example: "Hello %n!\n\nOn %d you wrote:\n" produces this: -
    Hello Dr. Hawking!
    +
    OletustiliJos sinulla on useita sähköpostitilejä, tämä määrittää, mitä niistä käytetään oletuksena kun luodaan uusi sähköpostiviesti.
    VastaustiliKun vastaat sähköpostiviestiin, voit joko aina valita Käytä oletustiliä, joka asetettiin yllä ponnahdusvalikossa, tai käyttää Tili sähköpostiviestistä, mikä lähettää sähköpostiviestin samalle tilille, jolta sen vastaanotit.
    Vastauksen esipuheTämä lisätään ennen vastauksesi lainattua tekstiä. Voit käyttää erilaisia muuttujia tekstikentän viereisestä ponnahdusvalikosta. Esimerkki: "Hei %n!\n\n%d kirjoitit:\n" tuottaa tämän: +
    Hei Dr. Hawking!
     
    -On Mon, 18 Jan 1998 02:55:16 +0800 you wrote:
    +Mon, 18 Jan 1998 02:55:16 +0800 kirjoitit:
     > so thanks again for the inspiration concerning the cosmological constant.
    -> ...and the rest of the quoted text following...
    Auto signatureAdds a signature automatically to the end of the mail.
    EncodingSets the default encoding.
    Warn unencodableIf your mail contains characters that can't be encoded with the currently set encoding method, you can turn on being warned about that. That gives you the opportunity to change the encoding before sending. Otherwise unencodable characters are replaced by rectangle symbols.
    Text wrappingInserts line-breaks every 76 characters which makes mails easier to read.
    Attach attributesYou can choose to send BFS' attributes of a file alongside the attachments. This is nice for other Haiku users, as they'll get a "complete" file (think artist, album, title attributes of MP3 files), but may cause confusion (or even suspicion) with others, who will wonder what the additional "BeOS Attributes" attachment might be...
    -Should you opt not to send attributes with your attachments, remember zip up your files before you send them or you'll strip away BFS attributes.
    Automaattinen allekirjoitusLisää allekirjoituksen automaattisesti sähköpostiviestin loppuun.
    KoodausAsettaa oletuskoodauksen.
    Varoita koodaamattomistaJos sähköpostiviestisi sisältää merkkijä, joita ei voida koodata nykyisellä asetetulla koodausmenetelmällä, voit laittaa päälle varoituksen siitä. Se antaa sinulla mahdollisuuden vaihtaa koodausta ennen lähetystä. Muussa tapauksessa koodaamattomat merkit korvataan neliösymboleilla.
    Tekstin rivittäminenLisää rivinvaihdon joka 76. merkiksi, mikä helpottaa sähköpostiviestien lukemista.
    Liitä attribuutitVoit valita BFS:n tiedostoattribuuttien lähettämisen liitteen mukana. Tämä on mukavaa muille Haiku-käyttäjille, koska he saavat "täydellisen" tiedoston (ajattele MP3-tiedostojen artisti-, albumi-, otsikkoattribuutteja), mutta ne voivat aiheuttaa hämmennystä (tai jopa epäluuloa) muille, jotka ihmettelevät, että mitä ylimääräiset "BeOS-attribuutti"-liitteet mahtavat olla...
    +Jos valitset, että et lähetä attribuutteja liitteiden mukana, muista tiivistää tiedostosi zip-tiedostoiksi ennen niiden lähettämistä tai BFS-attribuutit riisutaan tiedostoista.
    @@ -188,9 +191,9 @@ Should you opt not to send attributes with your attachments, remember zip up you diff --git a/docs/userguide/fi/applications/mediaplayer.html b/docs/userguide/fi/applications/mediaplayer.html index c946d4d817..8fea51c524 100644 --- a/docs/userguide/fi/applications/mediaplayer.html +++ b/docs/userguide/fi/applications/mediaplayer.html @@ -10,18 +10,20 @@ * Authors: * Humdinger * Szymon Barczak (Google Code-In student) + * Translators: + * Karvjorm * --> - MediaPlayer + Mediasoitin
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    mediaplayer-icon_64.pngMediaPlayer

    +

    mediaplayer-icon_64.pngMediasoitin

    TyöpöytäpalkkiSovellukset
    Sijainti/boot/system/apps/MediaPlayer
    Asetukset~/config/settings/MediaPlayer


    -

    MediaPlayer is the default player for all audio and video files. Thanks to it's ffmpeg backend, a plethora of widely used formats are supported. Its simple interface has all the controls you'd expect:

    +

    Mediasoitin on kaikkien ääni- ja videotiedostojen oletussoitin. Kiitos sen ffmpeg-taustaohjelman, se tukee laajaa joukkoa käytettyjä tiedostomuotoja. Sen yksinkertaisessa käyttöliittymässä on kaikki odottamasi ohjainpainikkeet:

    mediaplayer.png -

    The slider of the progress bar allows you to quickly skim to a position, resting the mouse over it shows the current and remaining time of the clip. Clicking on the time display to the right of it, toggles between length, current and remaining time.
    -Below that you find the usual controls to skip to the previous track, play/pause, stop and jump to the next track. Then comes a volume control (clicking the speaker symbol toggles muting) and a VU meter.

    +

    Edistymispalkin liukukytkin sallii sinun vaihtaa nopeasti sijaintia. Hiiren kohdistimen pitäminen palkin päällä näyttää nykyisen ajan ja leikkeen jäljellä olevan ajan. Oikealla olevan aika-näytön napsauttaminen vuorottelee pituuden, nykyisen ja jäljellä olevan ajan välillä.
    +Sen alta löydät tavalliset ohjaimet paluuseen edelliseen kappaleeseen, soitolle, tauolle, pysähtymiselle ja siirtymiselle seuraavaan kappaleeseen. Sitten on äänenvoimakkuuden säädin (kaiutinsymbolin napsauttaminen vuorottelee mykistämistä) ja voltti-/jännitemittari.

    -

    Audio and video playback

    -

    Since there aren't any specific features for for audio playback, we'll go straight to video or general features.

    +

    Ääni- ja videosoitto

    +

    Koska äänisoitossa ei ole mitään erikoisominaisuuksia, siirrymme suoraan videoon ja yleisiin ominaisuuksiin.

    mediaplayer-info.png -

    Available to all media is the File info... (ALT I). It shows information about the currently loaded file, like playing time or details of the audio/video track and its codec.

    -

    Most of the often used commands from the menus are also available from a right-click context menu on the video area. Convenient when in full-screen mode.
    -Under Video you'll find options to zoom the window to various levels or force the aspect ratio to some standard values. Leaving the aspect ration to the default Stream settings should work best for correctly encoded files.

    -

    MediaPlayer supports subtitles in SRT format. To have them show up under Subtitles, their filenames have to be identical to their video file, with a suffixed language name and ".srt" instead of the video's extension. For example:

    +

    Kaikille medioille on käytettävissä valikko Tiedostotiedot... (ALT I). Se näyttää tiedot parhaillaan ladatusta tiedostosta, kuten soittoajan tai ääni- tai videokappaleen yksityiskohdata ja sen koodekin.

    +

    Useimmin käytetyt valikkokomennot ovat käytettävissä myös videoalueella hiiren kakkospainikkeen asiayhteysvalikosta. Se näppärää, kun ollaan kokonäyttötilassa.
    +Valikon Video alta löydät valitsimia kaventaa tai laajentaa ikkunaa eri tasoille tai pakottamiseksi vaioarvoiseen kuvasuhteisiin. Kuvasuhteen jättämiseksi oletukseen Virta-asetukset pitäisi toimia parhaiten oikein koodatuilla tiedostoilla.

    +

    Mediasoitin tukee aliotsikoita SRT-muodossa. Jotta ne näkyvät valikon Aliotsakkeet alla, niiden tiedostonimet ovat samat kuin niiden videotiedostonimet, kielinimitarkentimella ja tarkentimella ".srt" eikä videotarkentimella. Esimerkiksi:

    MyMovie.avi
     MyMovie.Deutsch.srt
     MyMovie.English.srt
     MyMovie.Français.srt
    -

    Multiple audio tracks, most often used for several languages inside one video file, are available from the Audio track submenu. The Video | Track submenu offers the same when having multiple video streams available.

    -

    You can toggle the Full screen mode (ALT ENTER or F or a double left-click), hide MediaPlayer's window borders and controls with Hide interface (ALT H or a double right-click) or have it's window Always on top (ALT A).

    +

    Moniäänikappaleet, useimmiten käytetty useaa kieltä varten yhden videotiedoston sisällä, ovat käytettävissä alivalikosta Ääniraita. Alivalikko Video | Kappale tarjoaa saman, kun useita videovirtoja on käytettävissä.

    +

    Voit vuorotella Koko näyttö-tilaa (ALT ENTER tai F tai hiiren ykköspainikkeen kaksoisnapsautuksella), piilottaa Mediasoittimen ikkunarajat ja ohjaimet Piilota käyttöliittymä (ALT H tai hiiren kakkospainikkeen kaksoisnapsautuksella) tai pitää sen ikkunaa Aina päällimmäisenä (ALT A).

    -

    Playlists

    -

    MediaPlayer | Playlist... (ALT P) opens a window with the files currently queued up for playback. Double-clicking an entry starts playing it.

    +

    Soittoluettelot

    +

    Mediasoitin | Soittoluettelo... (ALT P) avaa ikkunan, jossa näkyy soittamista odottavien tiedostojen jono. Rivin kaksoisnapsautus aloittaa sen soittamisen.

    mediaplayer-playlist.png -

    You can add more files by dropping them into the list and rearrange their position via drag & drop. From the Edit menu you can Randomize or Remove (DEL) an entry from the list or delete the actual file with Move to Trash (ALT T).

    -

    Of course, you can Save a playlist and later Open it again, or start it with simply double-clicking the playlist file.

    +

    Voit lisätä lisää tiedostoja pudottamalla ne luetteloon ja järjestämällä niiden sijainti raahaa ja pudota -toiminnolla. Valikosta Muokkaa voit Satunnaista00a tai Poistaa (DEL) luettelorivin tai poistaa todellisen tiedoston valikkolla Siirrä roskakoriin (ALT T).

    +

    Voit tietysti tallentaa valikolla Tallenna soittoluettelon ja myöhemmin avata se uudelleen valikolla Avaa, tai aloittaa se yksinkertaisesti kaksoisnapsauttamalla soittoluettelotiedostoa.

    -

    Settings

    -

    There are several settings to fine-tune MediaPlayer's behavior:

    +

    Asetukset

    +

    Mediasoittimen käyttäytymisen hienosäätöön on useita asetuksia:

    mediaplayer-settings.png -

    The first batch, Play mode, is pretty self-explaining. Start playback automatically, close windows when finished or play clips in a loop.

    -

    Next are different View options.
    -You can opt to Use hardware overlay if available, which cuts down CPU usage but only works for one video window and needs a supporting video card driver.
    -You can Scale movies smoothly (when not in overlay mode) which uses very fast filtering to smooth over otherwise blocky pixels when zooming video or watching in full-screen mode.
    -Scale controls in full-screen mode if you prefer slightly bigger controls, maybe because you watch the screen from a bit farther away when in full-screen mode.
    -Then there are settings for Subtitle size and Subtitle placement. They can be shown at the Bottom of video, which will always have them overlayed over the picture. Or Bottom of window, which allows you to resize the window vertically and have the subtitles appear in the black bar at the bottom instead.

    -

    The last setting determines the volume of clips whose windows are not currently active. You can have them all blaring at Full volume, at less confusing Low volume or quietly Muted.

    +

    Ensimmäinen kohta, Soittotila, on aika itsestäänselvä. Aloita soittaminen automaattisesti, sulje ikkunat kun lopetetaan tai soita leikkeitä silmukassa.

    +

    Seuraavana on erilainen Katso valitsimia.
    +Voit valita Käytä laitteistovideokerrosta, jos se on käytettävissä, mikä alentaa suoritinkäyttöä, mutta toimii vain yhdessä videoikkunassa ja tarvitsee tukevan videokorttiajurin.
    +Voit valita Skaalaa elokuvat pehmeästi (kun ei olla kerrostustilassa) mikä käyttää hyvin nopeaa suodatusta pehmentäen muuten lohkomaisia pikseleitä, kun kavennetaan videonäkymää tai katsotaan kokonäyttötilassa.
    +Skaalausohjaimet kokonäyttötilassa jos pidät parempana hiukan isompia ohjaimia, ehkä katselet näyttöä hiukan kauempaa kokonäyttötilassa.
    +Sitten on asetukset Aliotsikkokoko ja Aliotsikon sijainti. Ne voidaan näyttää Videon alareunassa, jossa ne ovat aina kuvan päällä. Tai Ikkunan alareuna, mikä sallii sinun muuttaa ikkunan kokoa pystysuoraan ja näyttää aliotsikot sen sijaan alhaalla mustana palkkina.

    +

    Viimeinen asetus määrittelee äänenvoimakkuuden niille leikkeille, jotka eivät ole parhaillaan aktiviisia. Voit kailottaa niitä kaikkia voimakkuudella Täysi äänenvoimakkuus, vähemmän häiritsevällä Alenna äänenvoimakkuutta tai hiljentää Mykistä.

    -

    Keyboard controls

    -

    MediaPlayer offers convenient key combinations to control playback without using the mouse.

    +

    Näppäimistöohjaimet

    +

    Mediasoitin tarjoaa näppäriä näppäinyhdistelmiä soiton ohjaamiseksi ilman hiiren käyttöä.

    - - - - - + + + + +
    ZSkip to previous track
    XPlay
    CPause
    VStop
    BSkip to next track
    ZHyppää edelliseen kappaleeseen
    XSoita
    CTauko
    VPysäytä
    BHyppää seuraavaan kappaleeseen
    -

    These keys are assigned to the functions of the control buttons. They are always the bottom left letter keys on the keyboard, i.e. they are used independently of your current keymapping. The above keys correspond to a standard US-american keymap.

    +

    Nämä näppäimet on liitetty ohjainpainikkeiden toimintoihin. Ne ovat aina näppäimistön vasemman alakulman näppäimiä, toisin sanoen riippumattomia nykyisestä näppäinkuvauksesta. Yllä olevat näppäimet vastaavat vakiota US-amerikkalaista näppäinkuvausta.

    - - - - - - + + + + + + - - + + - - + + - - + +
    Seek forwards
    SHIFT Jump forwards 10 seconds
    ALT Jump forwards 30 seconds
    Seek backwards
    SHIFT Jump backwards 10 seconds
    ALT Jump backwards 30 seconds
    Etsi eteenpäin
    VAIHTO Hyppää eteenpäin 10 sekuntia
    ALT Hyppää eteenpäin 30 sekuntia
    Etsi taaksepäin
    VAIHTO Hyppää taaksepäin 10 sekuntia
    ALT Hyppää taaksepäin 30 sekuntia
    Increase volume
    Decrease volume
    Kasvata äänenvoimakkuutta
    Pienennä äänenvoimakkuutta
    ALT Skip to previous Track
    ALT Skip to next Track
    ALT Hyppää edelliseen Kappaleeseen
    ALT Hyppää seuraavaan Kappaleeseen
    SpacebarToggle play/pause
    ALT ENTERToggle full-screen mode (also done by double left-clicking the video area)
    VälilyöntipainikeVuorottele soita/tauko -tiloja
    ALT ENTERVuorottele kokonäyttötila (tehdän myös kaksoisnapsauttamalla hiiren ykköspainikkeella videoaluetta)
    @@ -128,9 +131,9 @@ Then there are settings for Subtitle size and
    - «  Mail  -::  Applications  -::  MidiPlayer  » + «  Sähköposti  +::  Sovellukset  +::  Midi-soitin  »
    diff --git a/docs/userguide/fi/applications/midiplayer.html b/docs/userguide/fi/applications/midiplayer.html index 7c4923b432..a2a4eafe60 100644 --- a/docs/userguide/fi/applications/midiplayer.html +++ b/docs/userguide/fi/applications/midiplayer.html @@ -10,18 +10,20 @@ * Authors: * Gerard Stanczak (Google Code-In student) * Humdinger + * Translators: + * Karvjorm * --> - MidiPlayer + Midi-soitin
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    midiplayer-icon_64.pngMidiPlayer

    +

    midiplayer-icon_64.pngMidi-soitin

    TyöpöytäpalkkiSovellukset
    Sijainti/boot/system/apps/MidiPlayer
    Asetukset~/config/settings/MidiPlayerSettings


    -

    As the name suggests, MidiPlayer is used to playback midi music files. Midi files are special, as they don't contain the actual digitized and in some way encoded music, but only a description of it: Hold this note for that long with this volume and use instrument X for it.
    -While this keeps file sizes pretty small, it also follows that depending on the instrument library (the so-called "SoundFont") the results can differ hugely. Also, these SoundFonts tend to be quite large, increasingly so with the number and quality of the instrument samples.

    -

    Haiku doesn't come with a SoundFont installed, because they are so large and only few people generally need one. Most of those who do, already have high quality or custom SoundFonts. To be able to at least hear something you can install a free one from an optional package. In Terminal, enter: installoptionalpackage TimGMSoundFont

    -

    To use any other SoundFont, create a link to it in /boot/system/data/synth and name it big_synth.sy.

    +

    Kuten nimi paljastaa, Midi-soitinta käytetään midi-musiikkitiedostojen soittamiseen. Midi-tiedostot ovat erityisiä, koska ne eivät sisällä varsinaista digitointia ja jollain tavalla koodattua musiikkia, vaan kuvauksen siitä: Pidä tämä nuotti näin pitkään tällä äänenvoimakkuudella ja käytä sen soittamiseen instrumenttia X.
    +Samalla kun tämä pitää tiedostot aika pieninä, siitä seuraa myös riippuvuus soitinkirjastoon (niin kutsuttu "SoundFont"), joiden tulos voi erota valtavasti. Näillä SoundFonts-kirjastoilal on taipumus olla aika laajoja, kasvattaen soitinnäytteiden laatua ja lukumäärää.

    +

    Haikun mukana ei tule asennettuja SoundFont-kirjastoja, koska ne ovat niin laajoja ja vain muutamat ihmiset yleensä tarvitsevat sellaista. Useimmilla heillä on jo korkealaatuinen tai räätälöity SoundFonts-kirjasto. Jotta kykenisit kuulemaan edes jotakin voit asentaa ilmaisen kirjaston valinnaispakkauksesta. Kirjoita Pääteikkunassa: installoptionalpackage TimGMSoundFont

    +

    Kaikkien muiden SoundFont-kirjastojen käyttämiseksi luo linkki siihen kansiossa /boot/system/data/synth ja nimeä se nimellä big_synth.sy.

    midiplayer.png -

    MidiPlayer's interface is very simple. Just double-click or drag & drop a midi file and playback starts. You control the volume with the slider and add reverb effects from the Reverb pop-up menu. Activating the scope will show a visualization in form of an oscilloscope running at the top.

    +

    Midi-soittimen käyttöliittymä on hyvin yksinkertainen. Vain kaksoisnapsauta tai raahaa ja pudota midi-tiedosto ja soittaminen alkaa. Ohjaat äänenvoimakkuutta liukukytkimellä ja lisäät kaikuefektejä Kaikuefekti-ponnahdusvalikosta. Näkyvyysalueen aktivoiminen näyttää visualisoinnin ylhäällä näkyvänä oskilloskooppikuvana.

    diff --git a/docs/userguide/fi/applications/packageinstaller.html b/docs/userguide/fi/applications/packageinstaller.html index b8f62a0dfe..71effa13dc 100644 --- a/docs/userguide/fi/applications/packageinstaller.html +++ b/docs/userguide/fi/applications/packageinstaller.html @@ -9,18 +9,20 @@ * * Authors: * Gerard Stanczak (Google Code-In student) + * Translators: + * Karvjorm * --> - PackageInstaller + Pakkausasennin
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    packageinstaller-icon_64.pngPackageInstaller

    +

    packageinstaller-icon_64.pngPakkausasennin

    - + - +
    TyöpöytäpalkkiNo entry, normally launched via -double-clicking a supported file.
    TyöpöytäpalkkiEi löydy Työpöytäpalkista, käynnistetään normaalisti kaksoisnapsauttamalla tuettua tiedostoa.
    Sijainti/boot/system/apps/PackageInstaller
    Asetuksetnone
    Asetuksetei mitään


    -
    This page is currently only a first draft. Please check back later for a refined version.
    -

    PackageInstaller is a software installer for BeOS packages in PKG format. It provides an easy-to-use GUI that helps in fast package installation in Haiku.

    -

    It is being executed automatically when you try to open files with .pkg extension.

    +
    Tämä on nykyään vain ensimmäinen luonnos. Tarkista myöhemmin uudelleen parannettua versiota.
    +

    Pakkausasennin on ohjelman asentaja BeOS-pakkauksille PKG-muodossa. Se tarjoaa helposti käytettävän graafisen käyttöliittymän, joka opastaa Haikun nopeassa paketinasennuksessa.

    +

    Tämä suoritetaan automaattisesti kun yrität avata .pkg-tarkentimella varustettuja tiedostoja.

    packageinstaller.png -

    The main window gives access to two configurations:

    +

    Pääikkunasta pääsee käsiksi kaksiin asetuksiin:

      -
    • type of installation (depending on the developer there might be more than one (standard) installation option).
    • -
    • Installation location (only entire partitions/hard disks can be chosen, not custom paths)
    • +
    • asennustyyppi (riippuen kehittäjästä, jolla on ehkä useampia kuin yksi (vakio) asennusvalitsin).
    • +
    • asennussijainti (vain kokonaiset osiot/levyasemat voidaan valita, ei räätälöityjä polkuja)
    -

    After clicking Install the extraction and installation process will begin.

    +

    Asenna-painikkeen napsauttamisen jälkeen pakkausten purkaminen ja asennusprosessi alkaa.

    packageinstaller-installer.png -

    At this point warnings and errors can appear saying which libraries and dependencies are missing in order to run the program. It might be required to install these packages before attempting to install desired program.

    -

    When the installation is complete, package should appear in the Deskbar applications menu.

    +

    Tässä vaiheessa voi esiintyä varoituksia, joissa sanotaan, että ohjelman suorittamiseen tarvittavia kirjastoja tai riippuvuuksia voi puuttua. Saattaa olla tarpeellista asentaa nämä paketit ennen kuin yrität asentaa haluttua ohjelmaa.

    +

    Kun asennus on valmis, pakkauksen pitäisi näkyä Työpöytäpalkin sovellusvalikossa.

    diff --git a/docs/userguide/fi/applications/pe.html b/docs/userguide/fi/applications/pe.html index 855fc53c80..b965c24e13 100644 --- a/docs/userguide/fi/applications/pe.html +++ b/docs/userguide/fi/applications/pe.html @@ -9,6 +9,8 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> @@ -20,7 +22,7 @@
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.

    pe-icon_64.pngPe

    - +
    TyöpöytäpalkkiSovellukset
    Sijainti/boot/apps/Pe/Pe
    Documentation:/boot/apps/Pe/Documentation.html
    Dokumentaatio:/boot/apps/Pe/Documentation.html
    Asetukset~/config/settings/pe/*


    -

    Pe is a sophisticated editor, with its syntax highlighting targeted mainly at programmers and HTML writers. Originally created by Maarten Hekkelmann, it's been open sourced and maintained by Haiku developers. A bugtracker and more information is available at the Pe project page.

    -

    Find out more about Pe's features in its local documentation.

    +

    Pe on edistynyt editori, jonka syntaksikorotuksineen sopii pääasiassa ohjelmoijille ja HTML-koodin kirjoittajille. Alunperin sen loi Maarten Hekkelmann, se on avoimen lähdekoodin ohjelma ja Haiku-kehittäjät ylläpitävät sitä. Vianjäljittäjä ja lisätietoa on saatavilla osoitteessa Pe-projektisivu.

    +

    Löydä lisätietoja Pe:n ominaisuuksista sen paikallisesta dokumentaatiosta.

    @@ -68,7 +71,7 @@ diff --git a/docs/userguide/fi/applications/people.html b/docs/userguide/fi/applications/people.html index d74a7141a6..33799cbeb4 100644 --- a/docs/userguide/fi/applications/people.html +++ b/docs/userguide/fi/applications/people.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - People + Ihmiset
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    people-icon_64.pngPeople

    +

    people-icon_64.pngIhmiset

    TyöpöytäpalkkiSovellukset
    Sijainti/boot/system/apps/People
    Asetukset~/config/settings/People_data


    -

    People is a simple contact database using the attributes of Haiku's filesystem to store addresses and other contact information. Every contact is saved as one Person file with its data in separate attributes. All are indexed and therefore searchable with a query.

    +

    Ihmiset on yksinkertainen yhteystietotietokanta, joka käyttää Haikun tiedostojärjestelmän attribuutteja osoitteiden ja muiden yhteystietojen tallentamiseksi. Jokainen yhteystieto on tallennettu yhteen Person-tiedostoon, jossa tiedot ovat erillisissä attribuuteissa. Kaikki on indekstoitu ja siksi etsittävissä kyselyllä.

    people.png -

    The Group attribute at the bottom allows assigning a person to one or more groups. Useful for "mass mailing" a number of people who, for example, work on a specific project. The pop-up menu offers all currently existing groups. If a person belongs to more than one group, the group names are delimited with a ",".

    +

    Ryhmä-attribuutti alhaalla sallii henkilön liittämisen yhteen tai useaan ryhmään. Se on hyödyllinen "massapostituksessa" lukuisille ihmisille, jotka esimerkiksi työskentelevät tietyssä hankkeessa. Ponnahdusvalikko tarjoaa kaikki parhaillaan olemassaolevan ryhmät. Jos henkilö kuuluu useampaan kuin yhteen ryhmään, ryhmänimet erotellaan merkillä ",".

    -

    These Person files are usually all saved in /boot/home/people/. To get a list of all your contacts, just open your people folder and display all attributes of interest. If you choose to organize your Person files in different folders, just use a query to display them all in one window.

    +

    Nämä Henkilö-tiedostot tallennetaan tavallisesti kansioon /boot/home/people/. Jos haluat luettelon kaikista yhteystiedoista, avaa vain sinun ihmiset-kansiosi ja näytä kaikki kiinnostavat attribuutit. Jos valitset Henkilö-tietojesi järjestämisen eri kansioon, käytä vain kyselyä niiden näyttämiseksi yhdessä ikkunassa.

    people-files.png -

    You can treat these files like any other: You can sort according to attributes (even a second sorting order by holding SHIFT while clicking) and of course delete, duplicate or rename Person files. Even the contact information can be edited directly: Clicking on an attribute (or ALT E) to edit works just like renaming a file. Once you're in edit mode, TAB and SHIFT TAB will jump from column to column.

    +

    Voit käsitellä näitä tiedostoja kuten kaikkia muita: Voit lajitella niitä attribuuttien mukaan (vieläpä toiseen lajittelujärjestykseen pitämällä VAIHTO-näppäin alhaalla samalla kun napsautat tiedostoa hiirellä) ja tietysti poistaa, tehdä kaksoiskappaleita tai nimetä uudellen Henkilö-tiedostoja. Jopa yhteystietoja voidaan muokata suoraan: Napsauttamalla attribuuttia (tai ALT- ja E-näppäimillä) muokkaaminen toimii aivan kuin tiedoston nimeämisessä. Heti kun olet muokkaustilassa, SARKAIN ja VAIHTO SARKAIN hyppäyttävät sinut sarakkeelta sarakkeelle.

    diff --git a/docs/userguide/fi/applications/poorman.html b/docs/userguide/fi/applications/poorman.html index 29ea7b6b8a..394492175d 100644 --- a/docs/userguide/fi/applications/poorman.html +++ b/docs/userguide/fi/applications/poorman.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - PoorMan + Köyhis
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    poorman-icon_64.pngPoorMan

    +

    poorman-icon_64.pngKöyhis

    TyöpöytäpalkkiSovellukset
    Sijainti/boot/system/apps/PoorMan
    Asetukset~/config/settings/PoorMan Settings


    -

    PoorMan is a nice little webserver that's extremly easy to set up. Naturally it doesn't offer any advanced features like other heavy duty server software, it's after all only a poor man's webserver.

    -

    Upon its first launch, PoorMan asks for the folder that is about to be served to the web. If you go with the Default, a new folder /boot/home/public_html is created for you. As a start page a HTML file named by default index.html has to be present there.

    -

    PoorMan presents itself with a simple console that logs its activity. Then, there's status information if the server is running, which folder is being served, and a hit counter. Settings are changed with Edit | Settings...: +

    Köyhis on näppärä pieni webbipalvelin, joka on äärimmäisen helppoa konfiguroida. Luonnollisesti se ei tarjoa mitään edistyneitä ominaisuuksia, kuten raskasta kuormaa palvelevat palvelinohjelmistot, se on vain köyhän miehen webbipalvelin.

    +

    Ensimmäisen käynnistyksen yhteydessä Köyhis kysyy kansiota, josta palvellaan webbiä. Jos etenet painikkeella Oletus, uusi kansio /boot/home/public_html luodaan sinulle. Aloitussivuna HTML-tiedosto nimetään oletuksena siten, että index.html-tiedoston on oltava siellä.

    +

    Köyhis esittlee itsensä yksinkertaisessa pääteikkunassa, joka lokikirjaa sen aktiviteetin. Sitten siellä on tilatietoa siitä, onko palvelin käynnissä, mitä kansiota palvellaan ja osumalaskuri. Asetuksia vaihdetaan valikossa Muokkaa | Asetukset...:

    poorman.png

    -

    The settings panel is divided into three tabs:

    -

    In Site you can select another folder to serve, enter another start page and have the option to send a file listing if the start page isn't present.
    -Logging lets you de/activate logging to the console or optionally to a separate logfile.
    -The Advanced tab holds the setting for the maximum simultaneous connections.

    -

    The menu items of the console window are all self-explanatory. With them you can e.g. save (parts) of the console output, clear the console or logging file and start/stop the server or clear the hit counter.

    +

    Asetuspaneeli jaetaan kolmeen välilehteen:

    +

    Valikossa Sivusto voit valita toisen kansion palvelemisen, kirjoittaa toisen aloitussivun ja siellä on valitsin tiedostoluettelon lähettämiseksi, jos aloitussivua ei ole.
    +Valikko Kirjaaminen sallii sinun sulkea/avata lokikirjauksen pääteikkunaan tai vaihtoehtoisesti erilliseen lokitiedostoon.
    +Välilehti Lisäasetukset sisältää asetuksen samanaikaisten yhteyksien enimmäismäärästä.

    +

    Pääteikkunan valikkorivit ovat itsestäänselviä. Niillä voit esimerkiksi tallentaa pääteikkunan (osa)tulosteita, tyhjentää pääteikkunan tai käynnistää/sammuttaa palvelimen ja nollata osumalaskurin.

    -
    If you want to try out if PoorMan's working, choose /boot/apps/BePDF/docs/ as folder and index.html as start page. Then point your browser to the URL 127.0.0.1, which is your local host.
    +
    Jos haluat kokeilla Köyhiksen toimintaa, valitse /boot/apps/BePDF/docs/ kansioksi ja index.html aloitussivuksi. Aseta sitten selaimesi verkko-osoitteeksi 127.0.0.1, mikä on paikallinen verkkokoneesi.
    diff --git a/docs/userguide/fi/applications/screenshot.html b/docs/userguide/fi/applications/screenshot.html index d19b5110c2..db9f72344c 100644 --- a/docs/userguide/fi/applications/screenshot.html +++ b/docs/userguide/fi/applications/screenshot.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Screenshot + Näytönkaappaus
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    screenshot-icon_64.pngScreenshot

    +

    screenshot-icon_64.pngNäytönkaappaus

    TyöpöytäpalkkiSovellukset
    Sijainti/boot/system/apps/Screenshot
    @@ -59,21 +62,21 @@
    Asetukset~/config/settings/screenshot


    -

    Screenshots are taken by either starting the Screenshot application or by pressing the PRINT key,

    +

    Näytönkaappauksia tehdään joko käynnistämällä Näytönkaappaus-sovellus tai painamalla näppäintä PrtScr,

    screenshot.png

    -

    In the Screenshot panel you can toggle between taking the whole screen or just the active window and decide if the window border and mouse pointer should be included. You can also enter a delay before a screenshot is taken.

    -

    Below that you set the name, format and location for the screenshot that will be used when you click Save. Instead of saving the file to disk you can also decide to Copy to clipboard to be able to paste the shot directly into another application, or take a New screenshot.

    -

    All settings are remembered the next time you take a screenshot, enabling these convenient keyboard shortcuts:

    +

    Näytönkaappaus-paneelissa voit vaihdella ottaa kokonäyttökaappauksia tai vain aktiivin ikkunan kaappauksia ja päätää siitä, sisällytetäänkö ikkunarajat ja hiiren osoitin mukaan. Voit myös asettaa viiveen kuvakaappauksen ottamiselle.

    +

    Sen alapuolella asetat näytönkaappaustiedoston nimen, muodon ja sijainnin, jota käytetään kun napsautat Tallenna-painiketta. Levylle tallentamisen sijasta voit päättää myös Kopio leikepöydälle voidaksesi liittää kaappauksen suoraan toiseen sovellukseen, tai ottaa Uusi näytönkaappaus.

    +

    Kaikki asetukset muistetaan seuraavalla kerralla, kun otat näytönkaappauksen, mikä ottaa käyttöön nämä kätevät näppäimistön pikanäppäimet:

    - - - + + +
    PRINTTakes a screenshot with zero delay and launches the Screenshot panel.
    SHIFT PRINTTakes a screenshot silently (without opening the panel), while still respecting the last used settings.
    CTRL PRINTAlso takes a screenshot silently with the saved settings, but instead of saving it as a file, it's just copied to the clipboard.
    PrtScrOttaa näytönkaappauksen viipeellä nolla ja käynnistää Näytönkaappaus-paneelin.
    VAIHTO PrtScrOttaa näytönkaappauksen hiljaa (avaamatta paneelia) samalla kun sovellus yhä kunnioittaa viimeksi käytettyjä asetuksia.
    CTRL PrtScrMyös tämä ottaa näytönkaappauksen hiljaa talletuilla asetuksilla, mutta tiedostoon tallentamisen sijasta kopioi sen vain leikepöydälle.

    index -Taking a screenshot from Terminal

    -

    There's a special screenshot application to be used from Terminal or a script.
    -screenshot --help shows the familiar options as parameters:

    +Näytönkaappauksen tekeminen Pääteikkunasta +

    Pääteikkunassa ja skripteissä käytettäväksi on olemassa erikoinen screenshot-näytönkaappaussovellus.
    +screenshot --help näyttää tutut valitsimet parametreina:

    ~> screenshot --help
     
    @@ -104,8 +107,8 @@ Note: OPTION -b, --border takes only effect when used with -w, --window
     
     
    diff --git a/docs/userguide/fi/applications/showimage.html b/docs/userguide/fi/applications/showimage.html
    index eed429c005..80840ac5e3 100644
    --- a/docs/userguide/fi/applications/showimage.html
    +++ b/docs/userguide/fi/applications/showimage.html
    @@ -9,18 +9,20 @@
      *
      * Authors:
      *		Humdinger 
    + * Translators:
    + *		Karvjorm
      *
     -->
     	
     	
     	
    -	ShowImage
    +	Kuvakatselin
     	
     
     
     
     
     
     
     
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    showimage-icon_64.pngShowImage

    +

    showimage-icon_64.pngKuvakatselin

    - +
    TyöpöytäpalkkiNo entry, normally launched via -double-clicking a supported file.
    TyöpöytäpalkkiEi löydy Työpöytäpalkista, käynnistetään normaalisti kaksoisnapsauttamalla tuettua tiedostoa.
    Sijainti/boot/system/apps/ShowImage
    Asetukset~/config/settings/ShowImage_settings


    -

    ShowImage allows you to view images in all formats that are supported through DataTranslators. New formats are automatically recognized when their translator is added to the system. This has been done for Haiku's vector icon files, WonderBrush images or when WebP images became available, for example.
    -ShowImage provides minimal editing features to crop, rotate and flip images and to save them in another format.

    -

    indexViewing

    +

    Kuvakatselin sallii sinun katsella kuvatiedostoja kaikisssa muodoissa, jotka Tietomuuntimet tukevat. Uudet muodot tunnistetaan automaattisesti, kun niiden muuntimet lisätään järjestelmään. Tämä on tehty esimerkiksi Haikun vektorikuvaketiedostoille, WonderBrush-kuville tai kun WebP-kuvat tulivat käytettäviksi.
    +Kuvakatselin tarjoaa minimaalisia editointiominaisuuksia karsimalla, kiertämällä tai kääntämällä kuvia ja tallentaen niitä toisiin muotoihin.

    +

    indexKatsotaan

    showimage-view.jpg -

    The View menu offers to start a Slide show of all images in a folder (or query result window) and set a Slide delay from 2 to 20 seconds.

    -

    Other commands apply to the currently displayed image (without changing the size of the window):
    -Original size shows the image with a 100% zoom factor.
    -Fit to window shrinks the image back into the window fame, e.g. after having zoomed into it or after resizing the window.
    -Zoom in and Zoom out move into and out of the image in 10% steps. Zooming is also done with the mouse wheel; to pan an image bigger than the window, simply left-click and drag your mouse around.

    -

    Two settings don't just apply to the currently displayed image and are remembered when browsing from one image to the next:
    -High quality zooming applies a very fast filter when zooming to reduce jagged lines and produce a smoother result.
    -Stretch to window will stretch smaller images to fill the current window frame.

    -

    Then there's a Full screen mode with an option to Show caption in full screen mode which overlays the file name at the bottom of the image.

    -

    Lastly, Show tool bar will show/hide the graphical controls:

    +

    Näkymä-valikko tarjoaa aluksi kansion kaikkien kuvatiedostojen Diaesityksen (tai kyselytulosikkunan) ja asettaa Esitysviiveen 2:sta sekunnista 20:een sekuntiin.

    +

    Muut komennot koskevat parhaillaan näytettävää kuvatiedostoa (muuttamatta ikkunan kokoa):
    +Alkuperäinen koko näyttää kuvan 100 prosentin loitonnustekijällä.
    +Sovi ikkunaan supistaa kuvan takaisin ikkunakehykseen, esim.: sen jälkeen kun siihen on loitonnuttu tai ikkunan koon muuttamisen jälkeen.
    +Lähennä ja Loitonna laajentavat ja kaventavat kuvaa 10 prosentin askelin. Loitontaminen ja lähentäminen tehdään hiiren rullauspainikkeella; kuvan venyttämiseksi suuremmaksi kuin ikkuna sinun on yksinkertaisesti napsautettava kuvaa hiiren ykköspainikkeella ja raahattava hiirtä ympäriinsä.

    +

    Kaksi asetusta ei koske parhaillaan näytettävää kuvaa ja ne on muistettava kun selataan kuvia peräkkäin:
    +Korkealaatuinen loitonnus soveltaa hyvin nopeaa suodatusta, kun loitonnus vähentää särmikkäitä viivoja ja tuottaa pehmeämmän tuloksen.
    +Venytä ikkunaan venyttää pienemmät kuvat täyttämään nykyisen ikkunakehyksen.

    +

    Sitten on Kokonäyttö-tila valitsimella Näytä kuvakaappaus kokonäyttötilassa joka korvaa kuvan alalaidan tiedostonimen.

    +

    Viimeiseksi, Näytä työkalupalkki näyttää tai piilottaa graafiset ohjauskomponentit:

    showimage-toolbar.png -

    From left to right: Previous image, next image, start slide show (in full screen mode), selection mode, original size, fit to window, zoom in, zoom out.

    -

    Most of the more often used commands are also available from a right-click context menu on the image. Convenient when in full-screen mode.

    -

    indexBrowsing

    +

    Vasemmalta oikealle: Edellinen kuvat, seuraava kuva, aloita diaesitys (kokonäyttötilassa), valintatila, alkuperäinen koko, sovita ikkunaan, lähennä, loitonna.

    +

    Useimmat yleisimmin käytetyistä komennoista on saatavilla asiayhteysvalikosta napsauttamalla hiiren kakkospainikketta kuvan päällä. Näppärää, kun ollaan kokonäyttötilassa.

    +

    indexSelataan

    showimage-browse.jpg -

    After opening an image you can quickly browse through all the other images in its folder (or query result window) by pressing / or /. You can see the selection change accordingly in the Tracker window.

    -

    There is a quick way to open the folder of the current image and even navigate to its parent and subfolders. It works just like with drill-down navigating in Tracker by clicking in the info area in the status bar that shows size and format of the current image.

    -

    Looking at the Browse menu, shows another type of browsing: Some image formats, like TIFF, can contain several pages in one file. Commands like First page and Next page let you navigate those pages.

    -

    indexEditing

    +

    Kuvan avaamisen jälkeen voit nopeasti selata lävitse kaikki muut kuvat samassa kansiossa (tai kyselytulosikkunassa) painamalla näppäimiä / tai /. Voit nähdä, kuinka valinta vaihtuu vastaavasti Seuraaja-ikkunassa.

    +

    On eräs nopea tapa avata nykyisen kuvan kansio ja jopa navigoida sen yläkansioon ja alikansioon. Se toimii juuri kuin alasporautumisnavigointi Seuraajassa napsauttamalla tilapalkin tietoaluetta, joka näyttää nykyisen kuvan koon ja muodon.

    +

    Valikon Selaa katsominen näyttää toisen selaustyypin: Jotkut kuvamuodot, kuten TIFF, voivat sisältää useita sivuja yhdessä tiedostossa. Komennot kuten Ensimmäinen sivu ja Seuraava sivu sallivat sinun navigoida noilla sivuilla.

    +

    indexMuokataan

    showimage-edit.jpg -

    The Image menu offers the few image manipulations necessary for an image viewer: rotating and flipping the image. Note however, that the actual image data won't be changed. Only an attribute is added to the file so it'll be shown rotated or flipped the next time you open it.

    -

    Use as backgroud... will open the Backgrounds preferences to set the current picture as image for your workspaces.

    -

    Cropping is another feature that's needed sometimes. To define the frame to cut to, you can switch to Selection mode from the Edit menu and drag out a box with your left mouse button. If you don't want to change modes first, you can create this box in "normal mode" by simply holding CTRL while left-click-dragging, which otherwise would just pan the image around.
    -Clear selection or ESC will remove the selection box.

    -

    The following chapter shows how to actually save the cropped area.

    -

    indexSaving and converting

    -

    To save or convert an image into any available format, you can invoke the normal Save as... item from the File menu, select the format and choose a file name.
    -Often quicker, especially when the Tracker window with the destination folder is already open, is using drag & drop.

    +

    Kuva-valikko tarjoaa muutamia kuvakatseluun välttämättömiä manipulaatioita: kuvan kiertoa ja kääntämistä. Huomaa kuitenkin, että todellinen kuvatiedosto ei muutu. Tiedostoon lisätään vain attribuutti niin että ne näytetään pyöritettynä tai käännettynä kun avaat sen seuraavan kerran.

    +

    Käytä taustana... avaa asetusohjelman Tausta-asetukset kuvan asettamiseksi taustakuvaksi työtilaasi.

    +

    Rajaus on eräs toisinaan tarvittu ominaisuus. Leikattavan kehyksen rajaamiseksi voit vaihtaa Valintatilaan valikosta Muokkaa ja raahata ruutu hiiren ykköspainikkeella. Jos ett halua ensin vaihtaa tilaa, voit luoda tämän ruudun "normaalitilassa" pitämällä yksinkertaisesti alhaalla näppäintä CTRL samalla kun raahaat hiiren ykköspainikkeella, mikä normaalisti siirtää kuvaa sivusuunnasa.
    +Nolla valinta tai näppäin ESC poistaa valintaruudun.

    +

    Seuraava kappale näyttää kuinka itse asiassa tallennetaan rajattu alue.

    +

    indexTallennetaan ja muunnetaan

    +

    Kuvan tallentamiseksi tai muuntamiseksi kaikkiin käytettävissä oleviin muotoihin voit kutsua normaalin Tallenna nimellä...-valikkorivin valikosta Tiedosto sekä valita muodon ja tiedostonimen.
    +Usein vielä nopeampaa, erityisesti jos Seuraaja-ikkuna on jo avoinna, on raahaa ja pudota -toiminnon käyttäminen.

    showimage-dnd.jpg -

    This is also how the above mentioned cropping is finalized. Either select a frame as described above, or choose Edit | Select all for the whole image. Then drag & drop the selection onto the Desktop or any Tracker window to create a new image clipping in the same format of the original image.

    -

    To save in another file format, do the dragging with the right mouse button and choose a format from the context menu when dropping the image.

    -

    indexKeyboard shortcuts

    -

    Here's a list of the most useful shortcuts:

    +

    Näin yllä mainittu rajaaminen lopetetaan. Joko valitaan yllä kuvattu kehys, tai valitaan Muokka | Valitse kaikki koko kuvalle. Raahaa ja pudota valinta Työpöydälle tai mihin tahansa Seuraaja-ikkunaan uuden kuvaleikkauksen luomiseksi samassa muodossa kuin alkuperäinen kuva.

    +

    Toisen tiedostomuodon tallentamiseksi raahaa hiiren kakkospainikkeella ja valitse muoto asiayhteysvalikosta tiedostoa pudotettaessa.

    +

    indexPikanäppäimet

    +

    Tässä on hyödyllisimpien pikanäppäinten luettelo:

    - - - - - - - - - + + + + + + + + +
    / Previous image
    / Next image
    DELMove to Trash
    +Zoom in
    -Zoom out
    0Original size (100% zoom)
    1Fit to window
    ALT ENTERToggle full screen mode (also via doubleclick)
    CTRLWhile holding CTRL you can create a selection frame without explicitly switching to selection mode.
    / Edellinen kuva
    / Seuraava kuva
    DELSiirrä Roskakoriin
    +Lähennä
    -Loitonna
    0Alkuperäinen koko (100% loitonnus/lähennys)
    1Sovita ikkunaan
    ALT ENTERVaihtele kokonäyttötilaa (myös kaksoisnapsautuksen kautta)
    CTRLPitämällä alhaalla näppäintä CTRL voit luoda valintakehyksen vaihtamatta valintatilaa eksplisiittisesti.
    @@ -113,9 +115,9 @@ Often quicker, especially when the Tracker window with the destination folder is diff --git a/docs/userguide/fi/applications/soundrecorder.html b/docs/userguide/fi/applications/soundrecorder.html index f98432952b..38ead22a6c 100644 --- a/docs/userguide/fi/applications/soundrecorder.html +++ b/docs/userguide/fi/applications/soundrecorder.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - SoundRecorder + Ääninauhuri
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    soundrecorder-icon_64.pngSoundRecorder

    +

    soundrecorder-icon_64.pngÄäninauhuri

    TyöpöytäpalkkiSovellukset
    Sijainti/boot/system/apps/SoundRecorder
    Asetukset~/config/settings/???


    -

    Documentation is still missing. If you want to work on it, please announce it on the Documentation mailing list to avoid duplication.

    +

    Dokumentaatio puuttuu yhä. Jos haluat tehdä sen kanssa työtä, ilmoita siitä Dokumentaation sähköpostilistalla kaksinkertaisen työn välttämiseksi.

    @@ -67,8 +70,8 @@ --> diff --git a/docs/userguide/fi/applications/stylededit.html b/docs/userguide/fi/applications/stylededit.html index 7a7eac95a0..1c7e4b7c1f 100644 --- a/docs/userguide/fi/applications/stylededit.html +++ b/docs/userguide/fi/applications/stylededit.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - StyledEdit + Tyylitetty editori
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    stylededit-icon_64.pngStyledEdit

    +

    stylededit-icon_64.pngTyylitetty editori

    - +
    TyöpöytäpalkkiSovellukset
    Sijainti/boot/system/apps/StyledEdit
    Asetuksetnone
    Asetuksetei mitään


    -

    StyledEdit is Haiku's simple text editor. Although it saves files in plain text format, additional attributes are written in order to have limited formatting capabilities when viewed with StyledEdit.

    +

    Tyylitetty editori on Haikun yksinkertainen tekstieditori. Vaikka se tallentaa tiedostoja puhtaassa tekstimuodossa, tallentamisen yhteydessä kirjoitetaan lisäattribuutteja, jotka tarjoavat Tyylitetylle editorille rajoitetut muotoiluominaisuudet.

    stylededit.png -

    If you're interested, this is what those additional attributes look like when examined in Terminal with listattr:

    +

    Jos sinua kiinnostaa, lisäattribuutit näyttävät seuraavan näköisiltä, kun niitä tutkitaan Pääteikkunan komennolla listattr:

    ~> listattr /boot/home/Desktop/test.txt
     File: /boot/home/Desktop/test.txt
       Type         Size                 Name
    @@ -72,19 +75,19 @@ MIME String         11  "BEOS:TYPE"
        Raw Data       1048  "styles"
     
     1071 bytes total in attributes.
    -

    As you can see, all the formatting options from StyledEdit's menu are present: line wrapping (on/off) and alignment (left/center/right), each in one attribute. Styles (font, size, color) of each letter mangled into another.

    -
    Because these attributes are a file system feature of BFS, this means that not only other platforms just see a plain text file, it also follows, that the formatting will be lost when a file is stored on a non-BFS partition. The above attributes are simply stripped and what's left is the ordinary, plain text file.
    -

    In any case, it's a nice idea having the possibility of colored text in different fonts and sizes while still being a normal text file. A ReadMe.txt, for example, is therefore readable in a shell on any platform and still has a bit of style when viewed via double-click from Haiku.

    -

    Actually using StyledEdit is so simple, we'll skip explaining every mundane menu item. Just write down your text then select the words you'd like to format and apply font, size and color from the Font menu. Line wrapping and alignment from the Document menu only work on the whole file.

    +

    Kuten voit nähdä, kaikki Tyylitetyn editorin valikon muotoiluvalitsimet ovat mukana: rivittäminen (päälle/pois päältä) ja tasaus (vasemmalle/keskelle/oikealle), jokainen yhdessä attribuutissa. Jokaisen kirjaimen tyylit (kirjasin, koko, väri) on runnottu yhteen attribuuttiin.

    +
    Koska nämä attribuutit ovat BFS-tiedostojärjestelmän ominaisuus, tämä tarkoittaa, että muilla alustoilla tiedosto näkyy pelkkänä tekstitiedostona ja kaikki muotoilu myös kadotetaan, kun tiedosto tallennetaan ei-BFS-osiolle. Yllä olevat attribuutit yksinkertaisesti riisutaan pois ja jäljelle jää vain tavallinen tekstitiedosto.
    +

    Joka tapauksessa on kiva idea, kun on mahdollista värittää tekstiä eri kirjasimilla ja kirjainkoola samalla kun ollaan normaalitekstissä. Esimerkiksi tiedosto ReadMe.txt on luettava komentotulkissa kaikilla alustalla ja siinä on silti hiukan tyyliä, kun sitä katsotaan Haikussa kaksoisnapsautuksella.

    +

    Tyylitetyn editorin käyttö on itse asiassa niin yksinkertaista, että ohitamme jokaisen tavallisen valikkorivin selittämisen. Kirjoita vain teksti, valitse sitten sanat, jotka haluat muotoilla ja käytä valikkoa Kirjasin. Rivittäminen ja tasaus valikosta Asiakirja toimii vain koko tiedostolle.

    diff --git a/docs/userguide/fi/applications/terminal.html b/docs/userguide/fi/applications/terminal.html index 104eb89006..6fc33cfc20 100644 --- a/docs/userguide/fi/applications/terminal.html +++ b/docs/userguide/fi/applications/terminal.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Terminal + Pääteikkuna
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    terminal-icon_64.pngTerminal

    +

    terminal-icon_64.pngPääteikkuna

    +~/.profile - lisää/korvaa oletukset tiedostossa /boot/common/etc/profile
    +~/.inputrc - lisää/korvaa oletukset tiedostossa /boot/common/etc/inputrc
    TyöpöytäpalkkiSovellukset
    Sijainti/boot/system/apps/Terminal
    Asetukset~/config/settings/Terminal
    -~/.profile - adds/overrides defaults in /boot/common/etc/profile
    -~/.inputrc - adds/overrides defaults in /boot/common/etc/inputrc


    -

    The Terminal is Haiku's interface to bash, the Bourne Again Shell.

    -

    Please refer to the topic on Scripting for a few links to online tutorials on working in the shell and also have a look at Haiku's commandline applications. Here, we'll concentrate on the Terminal application itself.

    +

    Pääteikkuna on Haikun käyttöliittymä bash-komentotulkkiin, the Bourne Again Shell.

    +

    Viittaan aiheen Skriptaus muutamiin verkko-oppituntien linkkeihin toimimisestä komentotulkin alla ja kannattaa myös katsoa Haikun komentorivisovellukset. Tässä keskitymme itse Pääteikkuna-sovellukseen.

    index -Windows and tabs

    -

    You can open as many Terminals as needed, either each in it's own window by simply launching more Terminals or with ALT N from an already running Terminal. Or you use Terminal's tabbed view and open more tabs with ALT T.

    +Ikkunat ja välilehdet +

    Voit avata niin monta Pääteikkunaa kuin tarvitset, joko jokainen omana ikkunana käynnistämällä Pääteikkuna tai näppäimillä ALT N jo käynnissä olevasta Pääteikkunasta. Tai voit käyttää Pääteikkunan välilehtinäkymää ja avata lisää välilehtiä näppäimillä ALT T.

    terminal.png
    -

    Double-clicking into the emtpy part of the tab bar opens a new tab; onto a tab opens a dialog to rename its title. There are several %-designated variables that are explained with a tooltip when you hover the mouse over the text field.
    -By default, %1d: %p, a tab shows the current directory and, separated by a :, the name of the currently running process (or -- if it's just bash running, probably idling). The screenshot above shows the first tab with a FTP session in the Desktop folder and a second tab idling at home.
    -Via Edit | Window title... the Terminal window's title can be edited in a similar way.

    -

    Right-clicking a tab shows a context menu to Close tab, Close other tabs or, like double-clicking, Edit tab title....

    -

    A Terminal window can be resized like any other window or you use the presets from the Settings | Window size menu. ALT ENTER toggles fullscreen mode.

    -

    Changed window size and text encoding are only kept choosing Settings | Save as default.

    +

    Kaksoisnapsautus välilehtipalkin tyhjään osaan avaa uuden välilehden; kaksoisnapsautus välilehteen avaa valintaikkunan otsikon uudelleennimeämiseksi. Käytettävissä on useita työkaluvihjeessä selitettyjä %-suunniteltuja muuttujia, kun siirrät hiiren osoittimen tekstikentän yläpuolelle.
    +Oletuksena, %1d: %p, välilehti näyttää nykyisen kansion ja, erotettuna merkillä :, parhaillaan suoritettavan prosessin nimen (tai -- jos se on vain suoritettava komentotulkki, luultavasti joutokäynnissä). Yllä oleva näytönkaappaus näyttää ensimmäisen välilehden FTP-istunnolla Työpöytä-kansiossa ja toisen välilehden joutokäynnissä koti-kansiossa.
    +Valikon Muokkaa | Ikkunaotsikko... Pääteikkunaotssikkoa voidaan muokata samalla tavoin.

    +

    Välilehden napsauttaminen hiiren kakkospainikkeella näyttää asiayhteysvalikon Sulje välilehti, Sulje muut välilehdet tai, kuten kaksoisnapsautuksessa, Muokkaa välilehtiotsikkoa....

    +

    Pääteikkunan kokoa voidaan muuttaa kuten kaikkia muitakin ikkunoita tai voit käyttää uudelleenasetuksia valikosta Asetukset | Ikkunakoko. Näppäimet ALT ENTER vaihtavat kokonäyttötilaan.

    +

    Vaihdettu ikkunakoko ja tekstikoodaus säilyy vain valitsemalla Asetukset | Tallenna oletuksena.

    index -Settings

    -

    Settings | Settings... opens a panel to configure the standard settings of a Terminal.

    +Asetukset +

    Asetukset | Asetukset... avaa paneelin Pääteikkunan vakioasetusten asettamiseksi.

    terminal-settings.png
    -

    It starts off with the "formulas" for naming tab and window titles. Again, tooltips show the available variables. Below that you set font type, font size and the different text and background colors. You can choose a pre-defined color schema like Black on white or White on black or create a Custom one using the color picker below.
    -Activate the checkbox to Confirm exit if active programs exist and you'll be warned when trying to close a Terminal window while an app is still being executed.
    -You can save different settings as separate profiles, which on double-click open an accordingly configured Terminal.
    -Pressing OK will save the current settings as default.

    +

    Se alkaa "kaavoina" välilehti- ja ikkunaotsikoiden nimeämiseksi. Taas työkaluvihjeet näyttävät käytettävissä olevat muuttuja. Sen alla voit asettaa kirjasintyypin, kirjasinkoon ja erilaiset teksti- ja taustavärit. Voit valita esiasetetun värikaavan, kuten Musta valkoisella tai Valkoinen mustalla tai luoda Oman käyttämällä alla olevaa väripoimijaa.
    +Aktivoi valintaruutu Vahvista poistuminen, jos aktiiviohjelmasta poistutaan ja sinua varoitetaan kun Pääteikkuna yritetään sulkea silloin, kun sovellusta vielä suoritetaan.
    +Voit tallentaa erilaisia asetuksia erillisinä profiileina, joiden kaksoisnapsauttaminen aukaisee vastaavalla tavalla asetetun Pääteikkunan.
    +Painamalla painiketta Valmis nykyiset asetukset tallennetaan oletuksena.

    index -Keyboard shortcuts

    -

    You'll find a list of useful shortcuts in Shortcuts and key combinations.

    +Näppäimistön pikanäppäimet +

    Löydät hyödyllisten pikanäppäimien luettelon asiakirjasta Pikanäppäimet ja näppäinyhdistelmät.

    index -Bash customization

    -

    Coming from Unix, there are countless possibilities to customize the bash itself. There are two files that are especially important to the user: .profile and .inputrc
    -Both files can be created in the home/ folder and add or override the system defaults that are defined in /boot/common/etc/.

    +Bash-räätälöinti +

    Unixista tulevan bash-komentotulkin räätälöimiseksi on lukemattomia mahdollisuuksia. Sitä varten kaksi tiedostoa on käyttäjille erityisen tärkeittä: .profile ja .inputrc
    +Molemmat tiedostot voidaan luoda home/-kansioon ja niillä voidaan lisätä tai korvata järjestelmäoletukset, jotka on määritelty hakemistossa /boot/common/etc/.

    .profile

    -

    The .profile is loaded every time you open a new Terminal. It sets all kinds of aliases and variables that will affect bash's behavior and appearance. You'll find many online resources that will detail all possibilities.

    -

    The Haiku/BeOS Tip Server has quite a few tips to get you started, for example:

    +

    Tiedosto .profile ladataan joka kerta avattaessa Pääteikkunaa. Se asettaa kaikentyyppisiä alias-määrittelyjä ja muuttujia, jotka vaikuttavat bash-komentotulkin käyttäytymiseen ja ulkonäköön. Löydät monia verkkoresursseja, jotka kertovat yksityiskohtaisesti kaikista mahdollisuuksista.

    +

    Haiku/BeOS-vihjepalvelimessa on esimerkiksi muutamia vihjeitä, joilla voit aloittaa:

    -

    There are more, have a look.

    +

    Mahdollisuuksia on vielä lisää, vilkaise tänne.

    .inputrc

    -

    The .inputrc deals with keybindings. Since Haiku provides useful defaults, you probably don't have to mess with these more involved settings. If you do have special needs here, consult one of the many online resources, e.g. The GNU Readline Library.

    +

    Tiedosto .inputrc käsittelee näppäinsidoksia. Koska Haiku tarjoaa hyödyllisiä oletusarvoja, sinun ei luultavasti tarvitse sotkeutua näihin kietoutuneempiin asetuksiin. Jos sinulla on tässä erikoistarpeita, perehdy moniin verkkoresursseihin, esim.: The GNU Readline Library.

    index -Hints for working with the Terminal

    -
    • Dragging a file or folder from a Tracker window into the Terminal will insert its path at the location of the cursor. Dragging with the right mouse button offers additional actions in a context menu:

      +Vihjeitä Pääteikkunatyöskentelystä +
      • Tiedoston tai kansion raahaaminen Seuraaja-ikkunasta Pääteikkunaan lisää sen kohdistimen osoittamaan sijaintiin. Raahaaminen hiiren kakkospainikkeen asiayhteysvalikosta tarjoaa lisätoimintoja:

        - - - - - + + + + +
        Insert path Inserts the location of the file, same as drag&dropping with the left mouse button.
        Change directory Changes to the folder of the dragged file.
        Create link here Creates a link to the dragged file in the current working directory of the Terminal.
        Move here Moves the dragged file into the current working directory of the Terminal.
        Copy here Copies the dragged file into the current working directory of the Terminal.
        Lisää polku Lisää tiedoston sijainnin, sama kuin raahata ja pudottaa hiiren ykköspainikkeella.
        Vaihda hakemisto Vaihtaa raahatun tiedoston kansion.
        Luo linkki tähän Luo linkin raahattuun tiedostoon Pääteikkunan nykyisessä työhakemistossa.
        Siirrä tänne Siirtää raahatun tiedoston Pääteikkunan nykyiseen työhakemistoon.
        Kopioi tänne Kopioi raahatun tiedoston Pääteikkunan nykyiseen työhakemistoon.
      • -
      • You can open any file with its preferred application with the command open [filename]. This also works with the representation of the current (".") and parent ("..") folder which then open in a Tracker window. So, to open the current working directory, you type:

        +
      • Voit avata minkä tahansa tiedoston ensisijaisella sovelluksella komenolla open [tiedostonimi]. Tämä toimii myös nykyisen (".") ja yläkansion ("..") esitystavalla, joka avautuu silloin Seuraaja-ikkunassa. Joten kirjoita nykyisen työhakemiston avaamiseksi:

        open .
      @@ -132,9 +135,9 @@ Both files can be created in the home/ folder and add diff --git a/docs/userguide/fi/applications/textsearch.html b/docs/userguide/fi/applications/textsearch.html index e02704031f..39ca9af133 100644 --- a/docs/userguide/fi/applications/textsearch.html +++ b/docs/userguide/fi/applications/textsearch.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - TextSearch + Tekstihaku
    •  中文 [中文]
    • Português
    • Slovenčina
    • +
    • Magyar
    • +
    • Português (Brazil)
    • English
    - «  Terminal  -::  Applications  + «  Pääteikkuna  +::  Sovellukset  ::  TV  »
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    textsearch-icon_64.pngTextSearch

    +

    textsearch-icon_64.pngTekstihaku

    - +
    TyöpöytäpalkkiNo entry, normally launched via Tracker Add-on
    TyöpöytäpalkkiEi valikkoriviä, käynnistetään normaalisti Seuraajalisäosan kautta
    Sijainti/boot/system/apps/TextSearch
    Asetukset~/config/settings/TextSearch


    -

    TextSearch looks for a string in text files. Typically it is invoked from Tracker's Add-on context menu on the selection of files or folders you want to search.

    +

    Tekstihaku etsii merkkijonoa tekstitiedostoissa. Tyypillisesti sitä kutsutaan Seuraajan lisäosan asiayhteysvalikosta valitsemalla tiedostot tai kansiot, josta merkkijonoa halutaan etsiä.

    textsearch.png -

    You enter a search string in the text box on top and hit RETURN or click Search to start. If Show lines is checked, the hits are automatically expanded to show the lines of the file containing the search string.

    +

    Aloitat kirjoittamalla hakumerkkijonon teksti-ikkunaan ylhäällä ja napauttamalla Enter-näppäintä tai napsauttamalla Etsi-painiketta. Jos Näytä rivit on valittuna, osumat laajennetaan automaattisesti näyttämään hakumerkkijonon sisältävät tiedoston rivit.

    -

    Only a few words on some of the otherwise self-explaining menu items:

    +

    Vain muutama sana muuten itsestäänselvistä valikkoriveistä:

    - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + +

    File menu

    New windowALT N Opens a new window where you can enter another string and search through the same files/folders. -
    Set target...ALT FLets you choose a new set of files and folders to search through.

    Action menu

    Trim selectionALT T Removes all entries from the list that are not currently selected.
    Open selectionALT OOpens the currently selected files with their preferred application (same as a double-click). If it's a text editor supporting it (like Pe), you can jump to the exact line the search string was found.
    Open files in TrackerALT KOpens the location of the currently selected files in Tracker.
    Copy text to clipboardALT BCopies the current selection to the clipboard.

    Settings menu

    Skip folders starting with a dot This is useful when working in a "unixy" environment, where often administrative files are hidden inside ".folders/". Source versioning systems like SVN and CVS are examples of applications using this and are also widely used in Haiku.
    Escape search text TextSearch uses the command line tool grep. For it, special characters like '"*\$?! and spaces have to be escaped with a \. Deactivating this setting means you have to do this yourself, but in exchange grants you the power of regular expressions.
    Text files only TextSearch is currently only useful for finding strings in plain text files. Deactivating this setting will have it look through any kind of file anyway.

    History menu

    Contains recently used search strings.

    Encoding menu

    Lets you choose different character encodings if needed.

    Tiedostovalikko

    Uusi ikkunaALT N Avaa uuden ikkunan, jossa voit kirjoittaa toisen merkkijonon ja etsiä sitä samoista tiedostoista/kansioista.
    Aseta kohde...ALT FValitaan uusi tiedostojen ja kansioiden joukko etsittäväksi.

    Toimintovalikko

    Karsi-valintaALT T Poistaa kaikki rivit luettelosta, joka ei ole nykyisin valittu.
    Avaa-valintaALT OAvaa nykyiset valitut tiedostot ensijaisella sovelluksella (sama kuin kaksoisnapsauttamalla). Jos se on tekstieditori, joka tukee sitä (kuten Pe), voit hypätä tarkalleen sille riville, josta hakumerkkijono löytyi.
    Avaa tiedostoja SeuraajassaALT KAvaa nykyisin valittujen tiedostojen sijainnin Seuraajassa.
    Kopioi tekstin leikepöydälleALT BKopioi nykyisen valinnan leikepöydälle.

    Asetukset-valikko

    Ohita kansiot, jotka alkavat pisteellä Tämä on hyödyllinen työskenteltäessä "unixy"-ympäristössä, missä usein hallinnointitiedostot piilotetaan ".folders/"-kansioiden sisälle. Versionhallintajärjestelmät, kuten SVN ja CVS ovat esimerkkejä sovelluksista, jotka käyttävät tätä ja niitä käytetään laajalti Haikussa.
    Koodinvaihtohakumerkkijono Tekstihaku käyttää komentorivityökalua grep. Sitä varten erikoismerkit, kuten '"*\$?! ja välilyönnnit ilmaistaan koodinvaihtomerkillä \. Tämän aktivoinnin poistaminen tarkoittaa, että sinun on tehtävä tämä itse, mutta vaihdossa sinulle myönnetään säännöllisten lausekkeiden voima.
    Vain tekstitiedostot Tekstihaku on nykyisin hyödyllinen etsittäessä merkkijonoja pelkistä tekstitiedostoista. Tämä asetuksen poistaminen saa tekstihaun kuitenkin etsimään sitä kaikentyyppisistä tiedostoista.

    Historiavalikko

    Sisältää äskettäin käytetyt etsintämerkkijonot.

    Koodausvalikko

    Antaa sinun valita eri merkkikoodausten välillä, jos on tarvetta.
    diff --git a/docs/userguide/fi/applications/tv.html b/docs/userguide/fi/applications/tv.html index c4fb3cb0db..f8482ad9b0 100644 --- a/docs/userguide/fi/applications/tv.html +++ b/docs/userguide/fi/applications/tv.html @@ -9,6 +9,8 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> @@ -20,7 +22,7 @@
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.

    tv-icon_64.pngTV

    @@ -58,7 +61,7 @@
    Asetukset~/config/settings/???


    -

    Documentation is still missing. If you want to work on it, please announce it on the Documentation mailing list to avoid duplication.

    +

    Dokumentaatio puuttuu yhä. Jos haluat tehdä sen kanssa työtä, ilmoita siitä Dokumentaation sähköpostilistalla kaksinkertaisen työn välttämiseksi.

    @@ -66,8 +69,8 @@ @@ -20,7 +22,7 @@
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.

    vision-icon_64.pngVision

    @@ -58,9 +61,9 @@
    Asetukset~/config/settings/Vision/*


    -

    Vision is an IRC client originally developed for the BeOS. Documentation and a bug tracker are available at the Vision website.

    -
    You can find help from other Haiku users and developers on Haiku channels in various languages.
    -The most frequented is the English speaking #haiku at irc.freenode.org.
    +

    Vision on aluperin BeOS-käyttöjärjestelmää varten kehitetty IRC-asiakasohjelma. Dokumentaatio ja vianjäljitys löytyy osoiteesta Vision-webbisivu.

    +
    Löydät opastusta muilta Haiku-käyttäjiltä ja kehittäjiltä Haiku-kanavilta eri kielillä.
    +Kaikkein sujuvinta on englanninkielinen #haiku osoitteessa irc.freenode.org.
    @@ -69,7 +72,7 @@ The most frequented is the English speaking #haiku at irc.freenode.org. diff --git a/docs/userguide/fi/applications/webpositive.html b/docs/userguide/fi/applications/webpositive.html index d739e5a8c1..4ef1091702 100644 --- a/docs/userguide/fi/applications/webpositive.html +++ b/docs/userguide/fi/applications/webpositive.html @@ -9,6 +9,8 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> @@ -20,7 +22,7 @@
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.

    webpositive-icon_64.pngWebPositive

    - - + +
    TyöpöytäpalkkiSovellukset
    Sijainti/boot/system/apps/WebPositive
    Asetukset~/config/settings/WebPositive/ - Configuration files, cookies, cache and browsing history
    ~/config/settings/WebPositive/Bookmarks - All bookmarks as single files
    Asetukset~/config/settings/WebPositive/ - Asetustiedostoja, evästeitä, välimuisti ja selaushistoria
    ~/config/settings/WebPositive/Bookmarks - Kaikki kirjanmerkit yhtenä tiedostona


    -

    WebPositive, or Web+ for short, is Haiku's native web browser. One part of its name is a tip of the hat to BeOS' simple NetPositive, the other points to its modern foundation: the WebKit. This open source HTML rendering library is at the heart of other mainstream browsers as well, like Safari of Mac OS X and Google's Chrome. By using the ever evolving WebKit, Web+ will be able to keep up with new web technologies.

    +

    WebPositive, tai lyhyesti Web+, on Haikun oma webbiselain. Yksi osa sen nimestä on lainaus BeOS:n yksinkertaisesta NetPositive-selaimen nimestä, toinen osa osoittaa nykyaikaiseen perustaan: WebKit. Tämä avoimen lähdekoodin HTML-renderöintikirjasto on muiden valtavirran webbiselainten ydin, kuten Mac OS X-tietokoneiden Safari ja Googlen Chrome. Käyttämällä edelleen kehittyvää WebKit-kirjastoa Web+ kykenee pysymään ajan tasalla uusissa web-tekniikoissa.

    webpositive.png -

    WebPositive's interface is pretty straight forward: Under a menu bar is another bar with buttons to navigate to the previous and next sites in your browsing history, to stop the loading of a page and (optionally) a button to jump to your starting page.
    -Then comes the locator field to enter a site's URL.
    -Below this navigating bar appear the webpages. You can open many pages in parallel by loading them into their own tab.
    -At the bottom of the window is a status bar, showing the URL of the site being loaded or of the link the mouse pointer is hovering over. While a page is being loaded, a progress bar appears to the right.

    -

    indexSettings

    -

    From the Window menu you can open a Settings panel to configure a few essentials of WebPositive.

    +

    WebPositiven käyttöliittymä on aika suoraviivainen: Valikkopalkin alla on toinen painikepalkki navigointiin selainhistorian edelliselle ja seuraavalla sivulle, sivun lataamisen lopettamiseen ja (valinnaisesti) painike aloitussivulle hyppäämiseen.
    +Sitten tulee sijaintikenttä webbisivun verkko-osoitteen kirjoittamista varten.
    +Tämän navigointipalkin alla on webbisivut. Voit avata useita sivuja rinnakkain lataamalla ne omiin välilehtiin.
    +Ikkunan pohjalla on tilapalkki, joka näyttää ladattavana olevan sivun verkko-osoitteen tai linkin, jonka yllä hiiren kohdistin on parhaillaan. Sivua ladattaessa oikealle ilmaantuu edistymispalkki.

    +

    indexAsetukset

    +

    Ikkuna-valikosta voit avata Asetukset-paneelin muutamia WebPositiven tärkeitä asetuksia varten.

    webpositive-settings.png -

    The first tab deals with general settings: What file or URL serves as a Start page, what's used as a Search page, what Download folder is used for stuff you get from the net.
    -Two pop-up menus let you decide what page to load - if any - when opening a new window or tab.
    -Via the following checkboxes you can avoid showing the tab bar when there's only one page open anyway. WebPositive's interface can be told to automatically hide in full screen mode, and the mouse pointer can be automatically hidden whenever it's not moved for a while.
    -Finally, you can decide to include the "Home" button in the navigation bar and set the number of days the browser remembers the sites you have visited in its history.

    -

    In the second tab you can choose the fonts used for standard, serif, non-serif and monospaced fonts and set their default sizes.

    -

    The last tab is used to configure a proxy server.

    -

    indexBrowsing

    -

    If you have used any browser before, WebPositive shouldn't provide too many surprises. Instead of going through every menu item and feature, let's have a look at just a few points.

    +

    Ensimmäisessä välilehdessä käsitellään yleisasetuksia: Mitä tiedosto tai verkko-osoite palvelee Aloitussivuna, mitä käytetään Etsintäsivuna, mitä Latauskansiona netistä saatavaa materiaalia varten.
    +Kaksi ponnahdusvalikko sallii sinun päättää, että mitä sivua ladata - jos mitään - kun avataan uusi ikkuna tai välilehti.
    +Seuraavien valintaruutujen kautta vältät näyttämästä välilehtipalkkia, jos avoinna on vain yksi sivu. WebPositiven käyttöliittymä voidaan ohjata piiloutumaan automaattisesti kokonäyttötilassa, ja hiiren osoitin piilotetaan automaattisesti, jos hiirtä ei vähään aikaan siirretä.
    +Lopuksi voit päättää sisällyttää "Koti"-painikkeen navigointipalkkiin ja asettaa niiden päivien lukumäärän, joina selaina muistaa historiassaan vieraillut sivut.

    +

    Toisessa välilehdessä voit valita vakio-, serif-, ei-serif- ja tasaväliset kirjasimet ja asettaa niiden oletuskoon.

    +

    Viimeistä välilehteä käytetään välityspalvelimen asettamiseen.

    +

    indexSelataan

    +

    Jos olet aiemmin käyttänyt jotain webbiselainta, niin WebPositiven ei pitäisi tarjota kovin montaa yllätystä. Sen sijaan, että kävisimme lävitse jokaisen valikkorivin ja ominaisuuden, katsokaamme vain muutamaa kohtaa.

    • webpositive-tabbar.png -

      New tabs are created with the + button to the right in the tab bar or, if there's still enough space, by double-clicking into an empty area of it. If there are more tabs open than fit into the bar, the < > scroll-buttons become active, allowing you to scroll the tab bar left and right. The button to the far right hosts a pop-up menu with all open tabs for even quicker navigation.

    • -
    • Clicking on a link with the middle mouse button opens the page in a new tab in the background.

    • -
    • From the View menu you can Zoom in and Zoom out of a page. There's also an option to Zoom text only, leaving all images with their original size.

    • -
    • If you switch to full screen mode and have activated the setting to hide the interface, it will disappear after a second. To slide it temporarily back in, simply move the mouse pointer to the top of the screen.

    • +

      Uudet välilehdet luodaan +-painikkeella välilehtipalkin oikeassa reunassa tai jos tillaa on riittävästi, kaksoisnapsauttamalla sen tyhjää aluetta. Jos välilehtiä on enemmän kuin mitä mahtuu välilehteen, < > -vierityspainikkeet tulevat aktiiviseksi, mikä sallii vierittää välilehtipalkkia vasemmalle ja oikealle. Painike kaikkein oikeanpuoleisimpana kätkee ponnahdusvalikon, josta kaikki avoimet välilehdet voidaan valita vieläkin nopeammin navigointiin.

      +
    • Linkin napsauttaminen hiiren keskimmäisellä eli kolmospainikkeella avaa taustalle sivun uudessa välilehdessä.

    • +
    • Valikosta Näkymä voit Lähentää ja Loitontaa sivua. Valittavana on myös Laajenna vain tekstiä, mikä jättää kuvat alkuperäisen kokoisiksi.

    • +
    • Jos vaihdat kokonäyttötilaan ja käyttöliittymän piilotusasetus on aktivoitu, käyttöliittymä katoaa sekunnin kuluttua. Se liukuu takaisin näkyviin yksinkertaisesti liikuttamalla hiiren osoitinta näytön yllä.

    • webpositive-locator.png -

      While you type in the locator text field, the browser matches the string to sites you have visited in the past and lists them below the text field. You either keep adding more letters to shorten the list of possible sites, or choose an entry with or . ENTER will load the page. You can also use the button to the far right which also serves to reload a page.
      -Strings not recognized as URLs will get looked up with Google, so the locator field doubles as quick shortcut to web searches.

    • -
    • Right-clicking opens a context menu which, depending on the object you've clicked on, offers to open the link in a new window or a new tab, download the object etc.

    • -
    • Edit | Find shows a find bar at the bottom to start an in-page search. Matches are highlighted in the page.

    • +

      Kun kirjoitat sijaintitekstikenttään, selain täsmää merkkijonon webbisivuosoitteisiin, joilla olet vieraillut aiemmin ja luettelee ne tekstikentän alapuolella. Voit joka jatkaa kirjainten lisäämistä lyhentääksesi mahdollisten sivujen luettelon, tai valita rivi näppäimellä tai näppäimellä . ENTER-näppäin lataa valitun sivun. Voit myös käyttää oikeanpuoleisinta painiketta sivun uudelleenlataamiseen.
      +Google etsii ne merkkijonot, joita ei tunnisteta verkko-osoitteiksi, joten sijaintikenttä nopeuttaa pikaisen webbihaun.

      +
    • Napsautettavasta kohteesta riippuen hiiren kakkospainike avaa asiayhteysvalikon, jossa on linkki uuteen ikkunaan tai välilehteen, kohteen lataukseen jne.

    • +
    • Muokkaa | Etsi näyttää etsintäpalkin sivun alalaidassa sivun sisäisen etsinnän käynnistämiseksi. Hakuosumat korostetaan sivulla.

    -
    After a while you may experience web pages being loaded slower and slower. Not really a bug in the truest sense, it's more an effect of a deficient handling of cookies. Either way, until that is fixed you'll have to manually intervene: Have a look at ~/config/settings/WebPositive/Cookies.curl. This file stores cookies from webpages and slowly grows while surfing the web. Once it's a few dozen kilobytes in size, it starts to slow down browsing. Just delete the file at that point to start with a clean slate.
    -

    indexBookmarks

    -

    WebPositive's bookmarks are managed as files and folders in ~/config/settings/WebPositive/Bookmarks/. Adding a bookmark will create a new file there. You can quickly open the folder with Manage Bookmarks....

    +
    Jonkin ajan kuluttu voit havaita webbisivujen latautuvat yhä hitaammin. Kyse ei ole todellisessa merkissä viasta, siinä on kyse enemmän evästeiden vajavaisesta käsittelystä. Oli miten oli, kunnes tuo on korjattu, asia on korjattava manuaalisesti: Katso ~/config/settings/WebPositive/Cookies.curl. Tämä tiedosto tallentaa webbisivujen evästeet webbiselailun aikana. Alussa se on muutama tusinan kilotavun kokoinen, mutta alkaa sitten hidastaa selaamista. Poista tiedosto siinä tilanteessa aloittaaksesi taas puhtaalta pöydältä.
    +

    indexKirjanmerkit

    +

    WebPositiven kirjanmerkit hallinnoidaan tiedostoina ja kansioina hakemistossa ~/config/settings/WebPositive/Bookmarks/. Kirjanmerkin lisääminen lisää sinne uuden tiedoston. Voit avata kansion nopeasti valikolla Hallinnoi kirjanmerkkejä....

    webpositive-bookmarks -

    You can change a bookmark's URL, name, title and enter keywords just like with any other file with attributes. Just make sure you have all their columns displayed via Tracker's Attributes menu, then select a file, press ALT E and start editing the attribute; change attribute columns with TAB.
    You can sort bookmarks into different folders you create yourself.

    -

    By using Tracker to manage and navigate bookmarks you can lift its unique features to quickly find what you're looking for.
    -Activating Type-ahead filtering in Tracker's preferences, you can instantly trim down your list of bookmarks to matches of your filter-string. A few more or to move the selection and pressing ENTER opens the site. Make sure to display all attribute columns to have the filter applied to name, title, URL and keywords.

    -

    For this to work, all bookmarks should be kept in the ~/config/settings/WebPositive/Bookmarks/ folder and only copies should be sorted into custom subfolders for usage in WebPositive's Bookmarks menu (if at all). Also, actually filling the keywords attribute helps...

    -

    indexDownloads

    -

    Window | Downloads opens a window listing all past and ongoing downloads:

    +

    Voit vaihtaa kirjanmerkkien verkko-osoitetta, nimeä, otsikkoa ja kirjoittaa avainsanoja aivan kuin kaikilla muilla tiedostoilla attribuuttien avulla. Varmista vain, että kaikkien niiden sarakkeet näytetään Seuraajan Attribuutit-valikossa, valitse sitten tiedosto, paina näppäimiä ALT E ja aloita attribuutin muokkaaminen; vaihda attribuuttisarakkeita näppäimellä SARKAIN.
    Voit lajitella kirjanmerkkejä luomiisi eri kansioihin.

    +

    Käyttämällä Seuraajaa kirjanmerkkien hallintaan ja navigointiin nostat nopeasti esiin sen ainutlaatuiset ominaisuudet, jotka auttavat nopeasti löytämään etsimäsi.
    +Aktivoimalla Kirjoittamisen aikainen suodatus Seuraaja-asetukset-sovelluksessa voit välittömästi supistaa kirjanmerkkiluettelosi täsmäämään suodatustasi. Muutama tai näppäily siirtää valinnan ja näppäimen ENTER painaminen avaa sivuston. Varmista, että näytetään kaikki attribuuttisarakkeet, jotta suodatus koskee nimeä, otsikkoa, verkko-osoitetta ja avainsanoja.

    +

    Tätä työtä varten kaikki kirjanmerkit tulisi pitää kansiossa ~/config/settings/WebPositive/Bookmarks/ ja vain kopiot pitäisi lajitella omiin alikansioihin WebPositiven Kirjanmerkit-valikkokäyttöä varten (jos ollenkaan). Myös avainsanojen todellinen täyttäminen auttaa...

    +

    indexLataukset

    +

    Ikkuna | Lataukset avaa ikkunaluettelon kaikista entisisttä ja meneillään olevista latauksista:

    webpositive-downloads.png -

    Currently downloading files are shown with a growing progress bar and, similar to copying files in Tracker, information on the download speed, file size and expected finishing time. Buttons to the right let you Cancel and Restart a download, or Open the file, or Remove its entry from the list. The Remove missing and Remove finished buttons at the bottom do this for all entries in this list. "Missing" are files that were deleted in the meantime.

    -

    Moving a file that is currently being downloaded to Trash will stop the download. You'll also notice, that its icon becomes "ghosted".
    -Generally, WebPositive is very tolerant when it comes to managing files with Tracker. Files can be renamed or moved even while they are being downloaded and even after the download is finished, these changes are reflected in the Downloads window.

    -

    Ever wondered from what site you downloaded a particular package, image or any other file? You can track that down by opening the file with DiskProbe and have a look at its META:url attribute.

    -

    Want to have the URL permanently shown in your downloads folder? Just copy a bookmark into it, have the bookmark's URL attribute column displayed and remove the bookmark again.

    -

    indexKeyboard shortcuts

    -

    Here are some useful keyboard shortcuts:

    +

    Parhaillaan ladattavat tiedostot näytetään kasvavana etenemispalkkina ja samalla kopioidaan tiedostot Seuraajassa, tiedot latausnopeuksesta, tiedostokoosta ja odotetusta päättymisajasta. Oikealla olevat painikkeet Peru ja Käynnistä uudelleen lataus, tai Avaa tiedosto, tai Poista rivi luettelosta. Alimmaisena painikkeet Poista puuttuva ja Poista valmistunut tekevät tämän luettelon kaikille riveille. "Puuttuva" on tiedosto, joka on poistettu latausaikana.

    +

    Parhaillaan ladattavan tiedoston siirtäminen Roskakoriin pysäyttää lataamisen. Huomaat myös, että sen kuvakkeesta tulee "haamu".
    +Yleensä WebPositive suhtautuu hyvin suvaitsevaisesti tiedostojen hallintaan Seuraajassa. Tiedostoja voidaan uudelleennimetä tai siirtää latauksen aikana ja vieläpä latauksen päätytty, nämä muutokset heijastuvat Lataukset-ikkunaan.

    +

    Oletko koskaan ihmetellyt, että mistä sivustolta latasit tietyn paketin, kuvan tai jonkun muun tiedoston? Voit jäljittää sen avaamalla tiedoston Levyasemakoestin-sovelluksella ja katsomalla tiedoston META:url-attribuuttia.

    +

    Haluatko näyttää verkko-osoitteet pysyvästi latauskansiossa? Kopioi vain kirjanmerkki siihen, laita kirjanmerkin verkko-osoite-attribuutti näkyväksi ja poista kirjanmerkki uudelleen.

    +

    indexPikanäppäimet

    +

    Tässä on joitakin hyödyllisiä pikanäppäimiä:

    - - - - - - - - - - - - - + + + + + + + + + + + + +
    ALT TOpens a new tab.
    ALT W Closes the current tab.
    ALT N Opens a new window.
    SHIFT ALT W Closes the current window.
    ALT ENTER Toggles full screen mode.
    ALT R or F5 Refreshes the current page.
    ALT H Opens the home page.
    ALT D Shows/hides the Downloads window.
    ALT F Shows the find bar for in-page searching (hide with ESC).
    ALT B Bookmarks this page.
    ALT M Manage bookmarks, opening the Bookmarks folder.
    ALT Previous page in the history.
    ALT Next page in the history.
    ALT TAvaa uuden välilehden.
    ALT W Sulkee nykyisen välilehden.
    ALT N Avaa uuden ikkunan.
    VAIHTO ALT W Sulkee nykyisen ikkunan.
    ALT ENTER Vuorottelee kokonäyttötila ja osaikkunan välillä.
    ALT R tai F5 Päivittää nykyisen sivun.
    ALT H Avaa kotisivun.
    ALT D Näyttää/piilottaa Lataukset-ikkunan.
    ALT F Näyttää etsintäpalkin sivunsisäisessä etsinnässä (piilotetaan painikkeella ESC).
    ALT B Kirjanmerkitsee tämän sivun.
    ALT M Hallinnoi kirjanmerkkejä, avaa Kirjanmerkit-kansion.
    ALT Edellinen historiasivu.
    ALT Seuraava historiasivu.
    @@ -126,7 +129,7 @@ Generally, WebPositive is very tolerant when it comes to managing files with Tra diff --git a/docs/userguide/fi/applications/wonderbrush.html b/docs/userguide/fi/applications/wonderbrush.html index 35d5b5249c..66d0f9e686 100644 --- a/docs/userguide/fi/applications/wonderbrush.html +++ b/docs/userguide/fi/applications/wonderbrush.html @@ -9,6 +9,8 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> @@ -20,7 +22,7 @@
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.

    wonderbrush-icon_64.pngWonderBrush

    - +
    TyöpöytäpalkkiSovellukset
    Sijainti/boot/apps/WonderBrush/WonderBrush
    Documentation:/boot/apps/WonderBrush/Documentation {language}
    Dokumentaatio:/boot/apps/WonderBrush/Documentation {kieli}
    Asetukset~/config/settings/WonderBrush


    -

    WonderBrush is an editor for bitmap and vector graphics. Find more information and workshops at the YellowBites website and in the local documentation.

    +

    WonderBrush on bittikartta- ja vektorigrafiikkaeditori. Lisätietoja ja työpajat löytyvät osoitteesta YellowBites-webbisivu ja paikallisessa dokumentaatiossasi.

    @@ -67,7 +70,7 @@ --> diff --git a/docs/userguide/fi/attributes.html b/docs/userguide/fi/attributes.html index 585ca4fcc8..5e2992f474 100644 --- a/docs/userguide/fi/attributes.html +++ b/docs/userguide/fi/attributes.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Attributes + Attribuutit
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    Attributes

    +

    Attribuutit

    -

    Attributes are data fields that belong to a file but aren't part of that file, e.g. they are not computed into the file size and can be copied or changed without touching the file itself. The system uses these attributes to store e.g. file size, file type or date of the last modification. This is similar to other operating systems and their filesystems.

    -

    What's different is that you can add any kind of attribute to any file and display it or make it editable in a Tracker window. You just have to define the kind of attribute you want to add to a file type (e.g. string, integer or time) and give it a name and description.

    -

    The file itself doesn't even need any contents at all. Take a look at these People files for example:

    +

    Attribuutit ovat tietokenttiä, jotka kuuluvat tiedostoon, mutta eivät ole tuon tiedoston osa, toisin sanoen niitä ei lasketa mukaan tiedoston kokoa laskettaessa ja niitä voidaan kopioida ja muuttaa koskematta itse tiedostoon. Järjestelmä käyttää attribuutteja esimerkiksi tiedoston koon, tiedostotyypin ja viimeisen muokkauspäivämäärän tallentamiseen. Tämä on samanlaista kuin muissa käyttöjärjestelmissä ja niiden tiedostojärjestelmissä.

    +

    Erona muihin on kuitenkin, että voit lisätä minkä tyyppisen attribuutin tahansa mihinkä tahansa tiedostoon ja näyttää sen tai tehdä siitä muokattava Seuraaja-ikkunassa. On vain määriteltävä tiedostotyyppiin lisättävän attribuutin tyyppi (esimerkiksi merkkijono, kokonaisluku tai aika) ja annettava sille nimi ja kuvaus.

    +

    Itse tiedosto ei edes tarvitse mitään sisältöä. Vilkaise esimerkiksi näitä Ihmiset-tiedostoja:

    people.png
    -

    As you can see, these are all 0-sized files with attached attributes, the E-mail attribute of "John Nox" being edited right in Tracker.

    -

    If you index these attributes, as People, Email or audio files are by default, they are also searchable with Haiku's fast query system.

    +

    Kuten näet, nämä kaikki ovat nollakokoisia tiedostoja, joihin on liitetty attribuutteja. Sähköpostiattribuutti "John Nox" on parhaillaan muokattavana Seuraajassa.

    +

    Jos indeksoit näitä attribuutteja, kuten oletuksena Ihmiset-, sähköposti- tai äänitiedostoja, ne ovat myös etsittävänä Haikun nopeassa hakujärjestelmässä.

    index -Attributes in Tracker

    -

    Attributes are displayed quite similar to a database or spreadsheet. Using Tracker you can choose which attributes to display (columns) and sort file listings (rows) accordingly.

    -

    To do this, open a Tracker window, click on the Attributes menu, and select the attributes you want to display. Alternatively, simply right-click onto a column heading and mark the items in the context menu. You can rearrange the columns by a simple drag&drop of the column heading. Moving a column out of a window, is a fast way to get rid of columns you don't need.

    -

    Double-click on the line between two attributes in the heading to automatically resize a column to its optimal width.

    -

    Click on a column heading to toggle the sorting order from ascending to descending. You can establish a secondary sort order by pressing the SHIFT key while clicking on a column heading. You can sort your People files by company and within that order sort by contact name, for instance. See the above screenshot as an example. The secondary sort order is marked by a lighter colored indicator beside the heading.

    -

    Editing these attributes is as simple as renaming a file: Either click on an entry or press ALT E and move between the attributes with TAB and SHIFT TAB. ESC leaves the editing mode without applying the changes.

    +Attribuutit Seuraajassa +

    Attribuutit näytetään aika lailla samalla tavalla kuin tietokannoissa tai taulukonlaskentaohjelmissa. Seuraajaa käyttämällä voit valita, mitkä attribuutit (sarakkeet) näytät ja lajitella tiedostoluettelot (rivit) sen mukaan.

    +

    Tämän tekemiseksi avaa Seuraaja-ikkuna, napsauta Attribuutit-valikkoa ja valitse attribuutit, jotka haluat näyttää. Vaihtoehtoisesti, napsauta yksinkertaisesti hiiren oikealla painikkeella sarakeotsakkeen päällä ja merkitse sarakkeet asiayhteysvalikossa. Voit järjestää sarakkeet uudelleen yksinkertaisesti sarakeotsakkeiden raahaa&pudota-menettelyllä. Sarakkeen siirtäminen ikkunan ulkopuolelle on nopea tapa päästä eroon sarakkeista, joita et tarvitse.

    +

    Kaksoisnapsauta otsakerivillä kahden attribuutin välissä, jolloin sarake automaattisesti muuttaa leveytensä optimaaliseksi.

    +

    Napsauta sarakeotsaketta lajittelujärjestyksen vaihtamiseksi päinvastaiseksi. Voit perustaa toissijaisen lajittelujärjestyksen painamalla VAIHTO-näppäintä samalla kun napsautat sarakeotsaketta. Voit lajitella Ihmiset-tiedostosi esimerkiksi yrityksen nimen mukaan ja sen sisällä lajitella yhteystietojen nimen mukaan. Katso yllä olevaa näyttökaappausta esimerkkinä. Toissijainen lajittelu on merkitty vaaleammanvärisellä indikaattorilla otsakkeen vieressä.

    +

    Näiden attribuuttien muokkaus on yhtä helppoa kuin tiedoston nimeäminen uudelleen: Napsauta joko riviä tai paina ALT E -näppäimiä ja siirry attribuuttien välillä SARKAIN-näppäimellä tai VAIHTO SARKAIN -näppäimillä. Poistut ESC-näppäimellä muokkaustilasta ilman että muutokset astuvat voimaan.

    index -Attributes in Terminal

    -

    If you prefer to use the commandline or plan to work with many files using scripting, there are several commands for controlling attributes from Terminal.

    +Attribuutit Pääteikkunassa +

    Jos pidät parempana käyttää komentoriviä ja suunnittelet työskenteleväsi monien tiedostojen kanssa käyttäen skriptausta, on useita komentoja, joilla voidaan ohjata attribuutteja Pääteikkunasta.

    index listattr

    -

    listattr lists a file's attributes, but doesn't show the contents of the attributes.

    -
    usage: listattr 'filename' ['filename' ...]
    -

    From our screenshot example above:

    +

    +listattr luettelee tiedoston attribuutit, mutta ei näytä attribuuttien sisältöä.

    +
    käyttö: listattr 'tiedostonimi' ['tiedostonimi' ...]
    +

    Yllä olevasta näytönkaappausesimerkistämme:

     ~/people ->listattr Clara\ Botters
     File: Clara Botters
        Type         Size                 Name
    @@ -105,64 +109,65 @@ MIME String         21  "BEOS:TYPE"
         Raw Data         20  "_trk/pinfo_le"
      
     131 bytes total in attributes.
    -

    Besides all the "META:*" attributes that hold the contact's information, there are two attributes that are managed by the system:

    +

    Paitsi kaikki "META:*"-attribuutit, jotka säilyttävät yhteystietoja, on kaksi attribuuttia, joiden hallinnoinnista vastaa järjestelmä:

      -
    • BEOS:TYPE holds the file type as a MIME string, here "application/x-person". It determines the default icon and the application that opens the file when you e.g. double click it.

    • -
    • "_trk/pinfo_le" is the attribute with which Tracker keeps track of a file's icon position.

    -
    Note the backslash after "Clara". In Terminal you have to "escape" special characters like '"*\$?!. The space between "Clara" and "Botters" is also one of those. Therefore the backslash is really in front of the space character, and not after "Clara".
    +
  • BEOS:TYPE säilyttää tiedostotyypin kuten MIME-merkkijono, tässä tapauksessa "application/x-person". Se määrittelee oletuskuvakkeen ja sovelluksen, joka avaa tiedoston, kun sitä esimerkiksi kaksoisnapsautetaan.

  • +
  • "_trk/pinfo_le" on attribuutti, jossa Seuraaja säilyttää tiedoston kuvakkeen sijainnin.

  • +
    Huomaa kenoviiva sanan "Clara" jäljessä. Pääteikkunassa on käytettävissä erikoisia koodinvaihtomerkkejä kuten '"*\$?!. Sanojen "Clara" ja "Botters" välissä oleva välilyönti on myös yksi niistä. Siksi kenoviivaa käytetään ilmaisemaan, että sanan "Clara" jälkeen on todella välilyönti, eikä kyseessä ole koodinvaihtomerkki.

    index catattr

    -

    catattr displays the contents of a specific attribute of a file.

    -
    usage: catattr [--raw|-r] attr_name file1 [file2...]
    -

    Again our example:

    +

    catattr näyttää tiedoston tietyn attribuutin sisällön.

    +
    käyttö: catattr [--raw|-r] attr_name tiedosto1 [tiedosto2...]
    +

    Taas esimerkkimme:

     ~/people ->catattr META:city Clara\ Botters
     Clara Botters : string : Whelton

    index addattr

    -

    addattr adds an attribute to a file and/or fills it with a value.

    -
    usage: addattr [-t type] attr value file1 [file2...]
    -    or: addattr [-f value-from-file] [-t type] attr file1 [file2...]
    +

    addattr lisää attribuutin tiedostoon ja/tai täyttää sen arvolla.

    +
    käyttö: addattr [-t tyyppi] attribuutti arvo tiedosto1 [tiedosto2...]
    +    tai: addattr [-f arvo-tiedostosta] [-t tyyppi] attribuutti tiedosto1 [tiedosto2...]
      
    -         Type is one of:
    -                 string, mime, int, llong, float, double, bool, icon, raw
    -                 or a numeric value (ie. 0x1234, 42, 'ABCD', ...)
    -         The default is "string"
    -

    So, say dear Clara took a job with the multi-national Barkelbaer Inc., you fill the formerly empty "Company" attribute with that data (which is of type "string"):

    + Tyyppi on yksi seuraavista: + merkkijono, mime-tyyppi, kokonaisluku, llong-luku, float-liukuluku, + double-luku, bool-boolean arvo, kuvake, raw-raaka-arvo + tai numeerinen arvo (toisin sanoen 0x1234, 42, 'ABCD', ...) + Oletus on merkkijono eli "string"
    +

    Joten sanotaan, että jos edellä mainittu Clara sai työpaikan monikansallisessa Barkelbaer Inc. -yrityksessä, niin aiemmin tyhjänä ollut "Company"-attribuutti täytetään tuolla tiedolla (mikä on tyyppiä "string"):

     ~/people ->addattr -t string META:company Barkelbaer\ Inc. Clara\ Botters

    index rmattr

    -

    rmattr completely removes an attribute from a file.

    +

    rmattr poistaa attribuutin kokonaan tiedostosta.

    -
    usage: rmattr [-p] attr filename1 [filename2...]
    -         'attr' is the name of an attribute of the file
    -         If '-p' is specified, 'attr' is regarded as a pattern.
    -

    Though in all practicality it would be enough to just not fill the "Fax" attribute, you can completely remove it from Clara's file by typing:

    +
    käyttö: rmattr [-p] attr tiedostonimi1 [tiedostonimi2...]
    +         'attr' on tiedoston attribuutin nimi
    +         Jos '-p' on määritelty, 'attr' -määrittelyä pidetään mallina.
    +

    Vaikka kaikessa käytännöllisyydessä olisi riittävää, jos "Fax"-attribuutti vain jätettäisiin täyttämättä, sen voi kokonaan poistaa Claran tiedostosta kirjoittamalla:

     ~/people ->rmattr META:fax Clara\ Botters

    index copyattr

    -

    copyattr copies attributes from one or more files to another. By default, the actual contents of the file is not copied.

    -
    Usage: copyattr <options> <source> [ ... ] <destination>
    +

    copyattr kopioi attribuutteja yhdestä tai useammasta tiedostosta toiseen. Oletuksena tiedoston todellista sisältöä ei kopioida.

    +
    Käyttö: copyattr <valitsimet> <lähde> [ ... ] <kohde>
    -

    If you do want to copy the attributes plus the data of the file itself, you can add the option "-d" or "--data".

    +

    Jos haluat kopioida attribuutit ja myös itse datatiedoston, voit lisätä valitsimen "-d" tai "--data".


    -

    More information on these commands and their options can be found by typing the command name followed by "-h" or "--help".

    +

    Lisätietoja näistä komennoista ja niiden valitsimista löytyy kirjoittamalla komentonimien ja sen jälkeen valitsimen "-h" tai "--help".

    diff --git a/docs/userguide/fi/bash-scripting.html b/docs/userguide/fi/bash-scripting.html index c0e2caff45..c4fb47fa3c 100644 --- a/docs/userguide/fi/bash-scripting.html +++ b/docs/userguide/fi/bash-scripting.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Bash and Scripting + Bash ja skriptaus
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    Bash and Scripting

    +

    Bash ja skriptaus

    -

    "Scripting" is the technique of automating procedures by stringing together commands and saving it all as text files, so called "scripts". Every time you run such a script, the commands are processed one after the other just like they would if you entered them into the Terminal by hand.
    -Scripts can range from simply executing a few commands in a specific order to sophisticated pieces of code that solve complex tasks.

    +

    "Skriptaus" on proseduurien automointitekniikka, jossa komentoja ketjutetaan merkkijonoiksi ja tallennetaan tekstitiedostona, niin kutsuttuna "skripteinä". Joka kerta kun skripti suoritetaan, komennot käsitellään yksi kerrallaan aivan kuin ne olisi kirjoitettu käsin Pääteikkunassa.
    Skriptit voivat ulottua yksinkertaisesta muutaman komennon suorittamisesta aina edistyneisiin koodipätkiin, jotka ratkaisevat monimutkaisia tehtäviä.

    index -The Bash

    -

    Since scripts rely naturally a lot on the shell they are interpreted by, you should first familiarize yourself with the BASH that's used by Haiku. There are many resources online as it's a widely used shell. One nice document is Johan Jansson's Introduction to bash - a tutorial for bash under BeOS.

    +Bash-komentotulkki +

    Koska skriptit turvautuvat luonnollisesti paljolti komentotulkkeihin, jotka tulkitsevat niitä, sinun pitäisi ensiksi tutustua BASH-komentotulkkiin, jota käytetään Haikussa. Verkossa on monia resursseja, koska se on laajalti käytetty komentotulkki. Yksi hyvä dokumentti on Johan Janssonin Perehdyttämien bash-komentotulkkiin - oppitunti bash-komnentotulkista BeOS-käyttöjärjestelmässä.

    index -The Scripting Bible

    -

    After you've learned a few basics about working in the shell, it's time to slowly ease yourself into the world of scripting. Again, you'll find loads of tutorials and reference material online as well as in bookstores. A very nice introduction that's practically tailor-made for Haiku is the online available Scripting Chapter (PDF, 900kb) of Scot Hacker's BeOS Bible.

    +Skriptausraamattu +

    Sen jälkeen kun olet oppinut muutaman perusasian komentotulkissa työskentelemisestä, on aika hitaasti ujuttautua skriptausmaailmaan. Taas löydät kuormittain oppikursseja ja viitemateriaalia verkosta ja myös kirjakaupoista. Hyvä perehdyttäminen, joka on käytännöllisesti räätälöity Haikua varten, on verkossa linkissä Skriptauskappale (PDF, 900 kilotavua) Scot Hackerin BeOS-raamatusta.

    -indexScripts in Haiku

    -

    In Haiku, the system makes of course also use of scripting. Booting and shutting down are typical scripting procedures. These defined sequences can be augmented by the user with certain user scripts.
    -If they don't exist already, you'll have to create the needed files yourself. Otherwise simply add your commands where in the process you want them to be executed.

    +indexSkriptit Haikussa +

    Haikussa myös käyttöjärjestelmä käyttää skriptausta. Alkulataus ja järjestelmän sulkeminen ovat tyypillisiä skriptausproseduureja. Käyttäjä voi lisätä näihin määriteltyihin sekvensseihin tiettyjä käyttäjäskriptejä.
    Jos niitä ei jo ole olemassa, sinun on lisättävä tarvittavat tiedostot itse. Muussa tapauksessa lisää yksinkertaisesti komentosi prosessissa sinne, missä haluat ne suorittaa.

    index -The UserBootscript

    -

    /boot/home/config/boot/UserBootscript will be executed after the system has finished its boot process. For example, you could launch a number of programs that would then be automatically started on every boot up:

    -
    # Start LaunchBox
    +UserBootscript
    +

    /boot/home/config/boot/UserBootscript suoritetaan sen jälkeen kun järjestelmä on lopettanut alkulatausprosessin. Esimerkiksi voisit käynnistää skriptissä lukuisia ohjelmia, jotka käynnistyisivät silloin automaattisesti jokaisen alkulatauksen yhteydessä:

    +
    # Käynnistä LaunchBox
     /boot/system/apps/LaunchBox &
     
    -# Start Workspaces Applet
    +# Käynnistä Workspaces Applet
     /boot/system/apps/Workspaces &
    -

    Remember to end a command with an "&" to start it as a background process, or the script will halt until that command has finished (in this case: the launched app was closed again).

    +

    Muista lisätä komennon loppuun "&" ohjelman käynnistämiseksi taustaprosessina, tai skripti pysähtyy, kunnes komento on suoritettu loppuun (tässä tapauksessa: kunnes käynnistetty sovellus on taas suljettu).

    -

    A simple alternative to the above for launching applications at boot up is to put links to them in the /boot/home/config/boot/launch directory. This can be done simply by right-clicking on the application you wish to have started automatically, going to Create Link and then navigating to the above directory.

    +

    Yksinkertainen vaihtoehto yllämainitulle sovellusten käynnistämiselle alkulatauksen yhteydessä on laittaa linkit sovelluksiin /boot/home/config/boot/launch-hakemistoon. Tämä voidaan tehdä yksinkertaisesti hiiren oikean painikkeen napsautuksella sellaisen sovelluksen kohdalla, jonka toivot käynnistyvän automaattisesti, valitsemalla valikosta Luo linkki ja sitten navigoimalla yllä olevaan hakemistoon.

    index -The UserShutdownScript

    -

    /boot/home/config/boot/UserShutdownScript will be executed as the first step in the shutdown process. If the script returns a non-zero exit status, the shutdown is aborted.

    +UserShutdownScript +

    /boot/home/config/boot/UserShutdownScript suoritetaan ensimmäisenä askeleena sulkemisprosessissa. Jos skripti palauttaa nollasta poikkeavan arvon, sulkeminen keskeytetään.

    index -The UserShutdownFinishScript

    -

    /boot/home/config/boot/UserShutdownFinishScript is executed as the last step in the shutdown process. Note, that most parts of the system have terminated by the time this script is executed.

    +UserShutdownFinishScript +

    /boot/home/config/boot/UserShutdownFinishScript suoritetaan sulkemisprosessin viimeisenä askeleena. Huomaa, että suurin osa järjestelmästä on lopetettu siinä vaiheessa kun tämä skripti suoritetaan.

    diff --git a/docs/userguide/fi/bootloader.html b/docs/userguide/fi/bootloader.html index 95519c9d30..26b8007d7d 100644 --- a/docs/userguide/fi/bootloader.html +++ b/docs/userguide/fi/bootloader.html @@ -22,7 +22,7 @@ @@ -107,8 +109,8 @@ diff --git a/docs/userguide/fi/contents.html b/docs/userguide/fi/contents.html index 8b5c35d159..af3c87e9a1 100644 --- a/docs/userguide/fi/contents.html +++ b/docs/userguide/fi/contents.html @@ -4,23 +4,25 @@ - Haiku User Guide - Contents + Haiku-käyttäjäopas - Sisältö
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    Desktop Applets

    +

    Työpöytäsovelmat

    -

    Haiku provides a few useful tools that can be installed on the Desktop or the Deskbar via their Replicants.

    +

    Haiku tarjoaa muutamia hyödyllisiä työkaluja, jotka voidaan asentaa työpöydälle tai Työpöytäpalkkiin kopioiden avulla.

    - - - - - - - - - - + + + + + + + + + +
    iconLaunchBox Shortcuts to your favorite applications.
    iconNetworkStatus Is your connection up?
    iconPowerStatus Shows the state of charge of your notebook's battery.
    iconProcessController Monitor and control every running app and service.
    iconWorkspaces A miniature version of all workspaces.
    iconKäynnistysikkuna Pikakuvakkeet suosikkisovelluksiisi.
    iconVerkkotila Onko yhteytesi päällä?
    iconVirtatila Näyttää sylimikrosi akun lataustilan.
    iconProsessiohjain Valvoo ja ohjaa jokaista käynnissä olevaa sovellusta ja palvelua.
    iconTyötilat Kaikkien työtilojen miniatuuriversio.
    @@ -73,9 +76,9 @@ diff --git a/docs/userguide/fi/desktop-applets/launchbox.html b/docs/userguide/fi/desktop-applets/launchbox.html index edac366de4..4cea5a0607 100644 --- a/docs/userguide/fi/desktop-applets/launchbox.html +++ b/docs/userguide/fi/desktop-applets/launchbox.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - LaunchBox + Käynnistysikkuna
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    launchbox-icon_64.pngLaunchBox

    +

    launchbox-icon_64.pngKäynnistysikkuna

    - +
    TyöpöytäpalkkiTyöpöytäappletit
    TyöpöytäpalkkiTyöpöytäsovelmat
    Sijainti/boot/system/apps/LaunchBox
    Asetukset~/config/settings/LaunchBox/*
    -

    One or more LaunchBox applets can be started to organize shortcuts to your favorite applications or documents. You decide if each is shown on all or just the current workspace. They can also serve to quickly open a document in a specific application. For example, you could drag&drop a HTML file onto a text editor in a LaunchBox to open it in the editor instead of its preferred application, the browser.

    +

    Yksi tai useampia Käynnistysikkuna-sovelmia voidaan käynnistää järjestämään suosikkisovelluksesi tai asiakirjan pikanäppäimiä. Päätät itse, näytetäänkö ne kaikissa vai vain nykyisessä työtilassa. Ne voivat palvella myös asiakirjan nopeassa avauksessa tietyssä sovelluksessa. Esimerkiksi voisit raahata ja pudottaa HTML-tiedoston tekstieditoriin Käynnistysikkunassa sen sijaan, että HTML-tiedosto avattaisiin ensisijaisessa sovelluksessa eli selaimessa.

    launchbox.png -

    All options are reached from the context menu:

    +

    Kaikki valitsimet tavoitetaan asiayhteysvalikosta:

    - - - - + + + + - +- Uusi
    +- Klooni
    +- Sulje +
    Add button here Adds an empty button.
    Clear button Empties a button.
    Remove button Removes a button.
    Settings
    -- Horizontal layout
    -- Icon size
    -- Ignore double-click
    -- Show window border
    -- Auto raise
    -- Show on all workspaces
     
    -Aligns the buttons horizontally.
    -Sets the icon size between 16 and 64 pixel.
    -Launches the object only once, even when you (accidentally) double-click.
    -Shows the window border.
    -LaunchBox pops up if the mouse is near the screen edge.
    -Shows the LaunchBox on every workspace.
    Lisää painike tähän Lisää tyhjän painikkeen.
    Nollaa painikkeen Tyhjentää painikkeen.
    Poista painike Poistaa painikkeen.
    Asetukset
    +- Vaakasuora asettelu
    +- Kuvakekoko
    +- Ohita kaksoisnapsautukset
    +- Näytä ikkunarajat
    +- Nosta automaattisesti ylimmäiseksi
    +- Näytä kaikissa työtiloissa
     
    +Tasaa painikkeet vaakasuoraan.
    +Asettaa kuvakekooksi 16 ... 64 pikseliä.
    +Käynnistää objektin vain kerran, vaikka (vahingossa) kaksoisnapsauttaisit.
    +Näyttää ikkunarajat.
    +Käynnistysikkuna ponnahtaa näkyviin, jos hiiri on lähellä näytön reunaa.
    +Näyttää Käynnistysohjelma-sovelman jokaisessa työtilassa.
    Pad
    -- New
    -- Clone
    -- Close
     
    -Add a new pad.
    -Duplicate the current pad.
    -Close the current pad.
    LaunchBox
    -- About...
    -- Quit
     
    -Shows the About window.
    -Quits all LaunchBox pads.
     
     
    +Lisää uusi ilmentymä.
    +Tee nykyisestä ilmentymästä kaksoiskappale.
    +Sulje nykyinen ilmentymä.
    Käynnistysikkuna
    +- Ohjelmasta...
    +- Poistu
     
    +Näyttää Ohjelmasta-ikkunan.
    +Lopettaa kaikki Käynnistysikkuna-ilmentymät.
     
    @@ -95,8 +98,8 @@ Quits all LaunchBox pads.  diff --git a/docs/userguide/fi/desktop-applets/networkstatus.html b/docs/userguide/fi/desktop-applets/networkstatus.html index 46d6a11cf9..77a2c24613 100644 --- a/docs/userguide/fi/desktop-applets/networkstatus.html +++ b/docs/userguide/fi/desktop-applets/networkstatus.html @@ -10,18 +10,20 @@ * Authors: * Maciej Bałuta (Google Code-In student) * Humdinger + * Translators: + * Karvjorm * --> - NetworkStatus + Verkkotila
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    networkstatus-icon_64.pngNetworkStatus

    +

    networkstatus-icon_64.pngVerkkotila

    - + - +
    TyöpöytäpalkkiTyöpöytäappletit
    TyöpöytäpalkkiTyöpöytäsovelmat
    Sijainti/boot/system/apps/NetworkStatus
    Asetuksetnone
    Asetuksetei mitään
    -

    NetworkStatus shows the status of your network connections. If not yet running, launching the applet will ask if it should open in window mode or live in the Deskbar. In window mode you're able to resize the icon by resizing the window and use the Replicant handle to drag it to the Desktop.
    -Wherever installed, it's operated via a right-click context menu.

    -

    NetworkStatus applet
    -The first section contains all network devices' names and their state. Clicking on such an entry brings up a window showing its IP, broadcast and netmask address.
    -Below is a list of all wireless networks found by the first wireless adapter and an indicator of their signal strength.
    -Lastly, you can Open network preferences... to change your network configuration or Quit the applet.

    +

    Verkkotila näyttää verkkoyhteyksiesi tilan. Jos sovelma ei ole vielä käynnissä, niin se kysyy käynnistymisen yhteydessä, että avataanko se ikkunatilassa vai Työpöytäpalkissa. Ikkunatilassa kykenet muuttamaan kuvakkeen kokoa ja käyttämään Replikantti-kahvaa raahaamaan se Työpöydälle.
    +Milloin se on asennettu, se t oimii hiiren kakkospainikkeen asiayhteysvalikosta.

    +

    Verkkotilasovelma
    +Ensimmäinen lohko sisältää kaikkien verkkolaitteiden nimet ja niiden tilat. Sellaista riviä napsauttamalla näkyviin tulee ikkuna, joka näyttää sen IP-osoitteen, lähetys- ja verkkopeiteosoitteen.
    +Alla on luettelo ensimmäisen langattoman verkkoadapterin löytämistä langattomista verkoista ja signaalivoimakkuden indikaattori. Katso lisää Työpaja: Langattomat verkot siitä kuinka yhteys asetetaan.
    +Viimeiseksi voit valikosta Avaa verkkoasetukset... vaihtaa verkkoasetuksesi tai Poistua sovelmasta.

    -

    Status icons

    +

    Tilakuvakkeet

    - - - - - + + + + +
    ReadyLink is established.
    ConfiguringConnecting in progress.
    No stateful configurationSome settings are missing (check IP configuration).
    No linkThere is no physical connection (probably the network cable is not connected and wireless networks are unavailable).
    -There are no network adapters available (if you are sure that at least one is connected, there are probably no drivers yet).
    ValmisYhteys on perustettu.
    AsetetaanYhteydenotto käynnissä.
    Ei tilallista asetustaJotkut asetukset puuttuvat (tarkista IP-asetukset).
    Ei yhteyttäEi ole fyysistä yhteyttä (verkkokaapeli ei ole ehkä yhdistetty tai langaton verkko ei ole käytettävissä).
    -Verkkoadaptereita ei ole käytettävissä (jos olet varma, että ainakin yksi on yhdistetty, niin luultavasti ei ole vielä ajureita).
    @@ -79,9 +82,9 @@ Lastly, you can Open network preferences... to change diff --git a/docs/userguide/fi/desktop-applets/powerstatus.html b/docs/userguide/fi/desktop-applets/powerstatus.html index b46f810995..07c0393341 100644 --- a/docs/userguide/fi/desktop-applets/powerstatus.html +++ b/docs/userguide/fi/desktop-applets/powerstatus.html @@ -10,18 +10,20 @@ * Authors: * Maciej Bałuta (Google Code-In student) * Humdinger + * Translators: + * Karvjorm * --> - PowerStatus + Virtatila
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    processcontroller-icon_64.pngProcessController

    +

    processcontroller-icon_64.pngProsessivalvonta

    - + - +
    TyöpöytäpalkkiTyöpöytäappletit
    TyöpöytäpalkkiTyöpöytäsovelmat
    Sijainti/boot/system/apps/ProcessController
    Asetuksetnone
    Asetuksetei mitään
    -

    ProcessController appletThe primary task of the ProcessController applet is to show the activity of your CPU(s) and the amount of used memory. It allows monitoring of individual teams, change their priority, and kill them if the program freezes. In multiprocessor environments it allows you to disable individual processors/cores. When Tracker or Deskbar crash you can restart them from ProcessController's menu.

    -

    Indicators on the left show each CPU's usage, while the bar on the right shows the memory consumption. Remember that the number of indicators depend on the number of processors/cores in the computer.

    -

    If not yet running, launching ProcessController asks if it should open in window mode or live in the Deskbar. In window mode you can resize the bar-display by resizing the window and then use the Replicant handle to drag it to the Desktop.
    -Wherever it's installed, it's operated via a right-click context menu.
    -To remove the applet again from the Deskbar, uncheck Live in the Deskbar in its context menu.

    -

    Quit an application

    +

    ProcessController appletProsessivalvonta-sovelman päätehtävä on näyttää prosessori(e)n aktiviteetti ja käytetyn muistin määrän. Se sallii yksittäisten ryhmien valvonnan, niiden prioriteetin vaihtamisen, ja niiden tappamisen, jos ohjelma jumittuu. Moniprosessoriympäristössä se sallii sinun ottaa pois käytöstä yksittäisiä prosessoreita tai prosessoriytimiä. Kun Seuraaja tai Työpöytäpalkki kaatuu, voit käynnistää ne uudelleen Prosessivalvonnan valikosta.

    +

    Indikaattorit vasemmalla näyttävät jokaisen prosessorin käytön, samalla kun palkit oikealla näyttävät muistikulutuksen. Muista, että indikaattoreiden lukumäärä riippuu tietokoneen prosessorien/prosessoriytimien lukumäärästä.

    +

    Jos Prosessivalvonta ei ole vielä käynnissä, ohjelma kysyy, että avataanko sovellus ikkunatilasssa vain suorana lähetysenä Työpöytäpalkissa. Ikkunatilassa voit muuttaa palkkinäytön kokoa muuttamalla ikkunan kokoa ja käyttämällä sitten Replikantti-kahvaa sen raahaamiseksi Työpöydälle.
    +Kun se on asennettu, se toimii hiiren kakkospainikkeen asiayhteysvalikosta.
    +Sovelman poistamiseksi Työpöytäpalkista, poista valinta Suora lähetys Työpöytäpalkista asiayhteysvalikossa.

    +

    Poistu sovelluksesta

    ProcessController - Quit an application -

    To quit an application just choose its name from the Quit an application menu. This is a clean way to close app, just like clicking its close button. Be careful not to quit system processes like servers or daemons, however. Your system may stop working reliably.

    -

    Memory usage

    +

    Sovelluksesta poistumiseksi valitse sen nimi Poistu sovelluksesta-valikosta. Tämä on siisti tapa sovelluksen sulkemiseen, aivan kuin napsautettaisiin sulje-painiketta. Ole kuitenkin varovainen, että et sulje järjestelmäprosesseja kuten palvelimia tai taustaprosesseja. Järjestelmäsi saatta lakata toimimasta luotettavasti.

    +

    Muistikäyttö

    ProcessController - Memory usage -

    Monitoring memory usage can be rather inaccurate.

    -

    This menu allows you to monitor memory usage of different teams in your system. Next to the team's name there are two columns: first with the amount reserved for writable memory, while the second shows all memory including read-only space (shared libraries for example).

    -

    The first row System resources & caches... shows the total amount of memory used by the system and all applications. The length of the blue bar is based on the total physical memory in your computer. The next rows show memory used by each process. Note that the length of the bar is based only on the actually used part of the memory.

    +

    Muistinkäytön valvonta voi olla melko epätarkkaa.

    +

    Tämä valikko sallii sinun valvoa järjestelmäsi eri ryhmien muistikäyttöä. Ryhmän nimen vieressä on kaksi saraketta: ensimmäisenä varatun kirjoitettavan muistin määrä, kun taas toinen näyttää kaiken kirjoitussuojatun muistitilan (esimerkiksi jaetut kirjastot).

    +

    Ensimmäinen rivi Järjestelmäresurssit ja välimuistit... näyttää järjestelmän ja kaikkien sovellusten käyttämän muistin yhteismäärän. Sinisen palkin pituus perustuu tietokoneesi fyysisen muistin yhteismäärään. Seuraava rivi näyttää jokaisen prosessin käyttämän muistin määrän. Huomaa, että palkin pituus perustuu vain todelliseen käytetyn muistin määrään.

    - - + +
    Memory used only by given application (with write access)
    Memory including read-only space (can be shared with other applications)
    Vain tietyn sovelluksen käyttämä muisti (kirjoitusoikeudella)
    Kirjoitussuojatun tilan sisältävä muisti (voidaan jakaa muiden sovellusten kanssa)
    -

    Threads and CPU usage

    -

    This menu allows you to change thread priorities, kill teams or debug them.

    -
    Changes via the commands in this menu reach deep into the system and can cause data loss and system instability. Keep that mouse hand steady!
    +

    Säikeet ja prosessorikäyttö

    +

    Tämä valikko sallii sinun vaihtaa säikeen prioriteettejä, tappaa ryhmiä ja vikajäljittää niitä.

    +
    Muutokset näiden valikkokomentojen kautta ulottuvat syvälle järjestelmään ja voivat aiheuttaa tietojen katoamista ja järjestelmän epästabiilisuutta. Pidä hiirikäsi vakaana!
    ProcessController - Priority - - - + + +
    Kernel code
    User code
    Idle thread
    Käyttöjärjestelmäydinkoodia
    Käyttäjäkoodia
    Joutosäie
    -

    At the first level you see team names. By clicking on one, you can kill the whole team. The dark-blue part of the bar is time spent in kernel code, the light-blue part in user code, the green part in the idle thread(s). A bar completely filled with blue means that the team is using all processoring power.

    -

    The second level shows particular threads of a team. By clicking on one, you can debug or kill it. A bar completely filled with blue means that the thread is pegging one processor/core.

    -

    The last level of the menu allows you to change a thread's priority. Be careful with that! As a rule of thumb the priority of a thread should be inverse its CPU usage. That is, the more it tries to claim CPU time, the lower should be it's priority. In general, don't mess with an app's priorities; contact its author, that's his business. +

    Ensimmäisellä tasolla näet ryhmänimet. Yhtä napsauttamalla voit tappaa koko ryhmän. Palkin tummansininen osa on käyttöjärjestelmäydinkoodissa käytetty aika, vaaleansininen on käyttäjäkoodiaika, vihreä osa on joutosäieaika. Jos palkki on kokonaan sininen, se tarkoittaa että ryhmä käyttää kaiken prosessointitehon.

    +

    Toinen taso näyttää ryhmän tietyt säikeet. Napsauttamalla yhtä voit vikajäljittää tai tappaa sen. Jos palkki on kokonaan sininen, niin se tarkoittaa, että säie on saanut prosessorin/prosessoriytimen kuormituksen maksimikuormitukseen.

    +

    Viimeisin valikkotaso sallii sinun vaihtaa säikeen prioriteettia. Ole huolellinen siinä! Peukalosääntönä on, että säikeen prioriteetin tulisi olla prosesssorikäytön käänteisarvo. Tämä tarkoittaa, että mitä mitä enemmän se yrittää käyttää prosessoriaikaa, sitä alhaisempi sen prioriteetin tulisi olla. Yleensä, älä sotke sovellusten prioriteetteja; ota yhteyttä sovelluksen kehittäjään, se on hänen tehtävänsä.

    @@ -96,9 +99,9 @@ To remove the applet again from the Deskbar, uncheck Live in diff --git a/docs/userguide/fi/desktop-applets/workspaces.html b/docs/userguide/fi/desktop-applets/workspaces.html index 5eab69999d..ee5c7078b5 100644 --- a/docs/userguide/fi/desktop-applets/workspaces.html +++ b/docs/userguide/fi/desktop-applets/workspaces.html @@ -22,7 +22,7 @@
    @@ -52,32 +54,32 @@

    workspaces-icon_64.pngTyötilat

    - +
    TyöpöytäpalkkiTyöpöytäappletit
    TyöpöytäpalkkiTyöpöytäsovelmat
    Sijainti/boot/system/apps/Workspaces
    Asetukset~/config/settings/system/app_server/workspaces
    ~/config/settings/Workspaces_settings - Tallentaa paneelin ikkunan sijainnin.


    workspaces.png -

    Löydät Työtilat-appletin muiden Työpöytä-applettien joukosta Työpöytäpalkista. Se näyttää miniatuuriversion kaikista työtiloista. Appletin ikkunan kontekstivalikosta löytyy useita valitsimia, jotka ovat suhteellisen itsensäselittäviä.
    -Vaihda työtilalukumäärää... avaa Näyttö-asetukset, joissa voit asettaa työtilojen lukumäärän ja niiden järjestelyn (kuinka monta riviä ja saraketta).

    -

    Koska appletti on Replikantti, voit muuttaa ikkunan kokoa halusi mukaan ja sitten vetää ja raahata se kahvasta työpöydälle (varmista, että Näytä replikantit on aktivoitu Työpalkkivalikossa. Pidä VAIHTO-näppäin alhaalla kun muutat ikkunan kokoa näytön kuvasuhteen säilyttämiseksi.

    +

    Löydät Työtilat-sovelman muiden Työpöytäsovelmat-valikon luettelosta Työpöytäpalkista. Se näyttää miniatuuriversion kaikista työtiloista. Sovelman ikkunan kontekstivalikosta löytyy useita valitsimia, jotka ovat suhteellisen itsensäselittäviä.
    +Vaihda työtilalukumäärää... avaa Näyttöasetukset, joissa voit asettaa työtilojen lukumäärän ja niiden järjestelyn (kuinka monta riviä ja saraketta).

    +

    Koska sovelma on Kopio, voit muuttaa ikkunan kokoa halusi mukaan sekä sitten raahata ja pudottaa se kahvasta työpöydälle (varmista, että Näytä kopiot on aktivoitu Työpalkkivalikossa. Pidä VAIHTO-näppäin alhaalla kun muutat ikkunan kokoa näytön kuvasuhteen säilyttämiseksi.

    index Ikkunoiden siirtäminen työtilojen välillä

    -

    Ikkunan siirtämiseksi tartu siihen Työtilat-appletissa ja yksinkertaisesti raahaa se toiseen työtilaan. Tästä on hyötynä, että voit siirtää sen jättämättä nykyistä työpöytää. Se tietysti toimii hyvin vain kun työtilassa ei ole liian montaa ikkunaa ja kohdetyötila ei ole muiden ikkunoiden peittämä. Toinen mahdollisuus on tarttua ikkunan välilehteen ja pitää siitä kiinni samalla kun vaihtaa työtilaa ALT Fx -näppäimillä.

    +

    Ikkunan siirtämiseksi tartu siihen Työtilat-sovelmassa ja yksinkertaisesti raahaa se toiseen työtilaan. Tästä on hyötynä, että voit siirtää sen jättämättä nykyistä työpöytää. Se tietysti toimii hyvin vain kun työtilassa ei ole liian montaa ikkunaa ja kohdetyötila ei ole muiden ikkunoiden peittämä. Toinen mahdollisuus on tarttua ikkunan välilehteen ja pitää siitä kiinni samalla kun vaihtaa työtilaa ALT Fx -näppäimillä.

    Lisätietoja työtiloista yleensä ja lisää näppäimistöpikanäppäimistä, katso aihetta Työtilat.

    index Erityistoiminnallisuus

    -

    Työtilat-appletti tarjoaa joitakin lisätoiminnallisuuksia kun napsautetaan ikkunaa samalla kun pidetään alhaalla jotain muokkainnäppäintä:

    +

    Työtilat-sovelma tarjoaa joitakin lisätoiminnallisuuksia kun napsautetaan ikkunaa samalla kun pidetään alhaalla jotain muokkainnäppäintä:

    - +
    CTRLTuo ikkunan eteen.
    CTRL VAIHTOMinimoi ikkunan.
    OPTLähettää ikkunan taustalle.
    Alt Gr/OPTLähettää ikkunan taustalle.
    @@ -85,8 +87,8 @@ diff --git a/docs/userguide/fi/filesystem-layout.html b/docs/userguide/fi/filesystem-layout.html index 864cf6ffe3..40e37a17bc 100644 --- a/docs/userguide/fi/filesystem-layout.html +++ b/docs/userguide/fi/filesystem-layout.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Filesystem layout + Tiedostojärjestelmäsijoittelu
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    Filesystem layout

    +

    Tiedostojärjestelmäsijoittelu

    -

    Haiku's filesystem layout is quite transparent, trying to always use non-cryptic names for files and folders, that don't leave the user guessing. Files and folders that are important for the system to function properly, are protected from accidental tempering by showing one of these alerts:

    +

    Haikun tiedostojärjestelmäsijoittelu on aika läpinäkyvä, yrittäen aina käyttää salaamattomia tiedosto- ja kansionimiä, mikä ei jätä käyttäjille arvaamisen tarvetta. Tiedostot ja kansiot, jotka ovat tärkeitä järjestelmän toimimiseksi kunnolla, on suojattu vahingossa tapahtuvalta käsitttelyltä yhdellä näistä hälytyksistä:

    achtung-user.png  achtung-system.png -

    The second alert pops up if you try to rename or delete something in the system hierarchy. Here, the "Do it" button will only become clickable when you're holding down the SHIFT key.

    -

    Generally, there are three separate branches springing from the root folder of the boot volume:

    +

    Toinen hälytys ponnahtaa esiin, jos yrität nimetä uudelleen tai poistaa jotain järjestelmähierarkiasta. Tässä painiketta Nimeä uudelleen on napsautettava vain, jos pidät VAIHTO-näppäintä alhaalla.

    +

    Yleensä alkulataustaltion juurihakemistosta erkanee kolme haaraa:

    - - - + + +
    /boot/system/ belongs to the system. Don't touch!
    /boot/common/ holds files that are shared between users.
    /boot/home/ is your personal folder where you keep your data and settings.
    /boot/system/ kuuluu järjestelmään. Älä koske!
    /boot/common/ säilyttää käyttäjien kesken jaetut tiedostot.
    /boot/home/ on henkilökohtainen kansiosi omien tietojen ja asetusten säilyttämiseksi.

    index -The system folder - /boot/system/

    -

    Under Haiku's predecessor BeOS, this folder was named /boot/beos/. You may still find it in some older documentation (e.g. in the original BeBook).
    -Whatever it's named, you should not alter what's inside. Every update of Haiku can add, remove or overwrite anything within it. If you want to add functionality, maybe with other Tracker Add-Ons or Translators or maybe another hardware driver, you install these things under your own /boot/home/ hierarchy or, if it's supposed to be for every user, under /boot/common/. As long as Haiku isn't multi-user, this distinction has no apparent effect, as there's only one user with one home folder. But since there will be support for more users than one eventually, it makes sense to learn the right way from the start.

    -

    So, let's say you want to install a new Translator for the latest image format, you don't simply copy it into the respective system folder. Remember: Don't touch!
    -Instead, you put it into the mirrored hierarchy under /boot/common/ or /boot/home/config/.

    -

    In our example the location for Translators in the system folder would be

    +Järjestelmäkansio - /boot/system/ +

    Haikun edeltäjässä BeOS-käyttöjärjestelmässä tämä kansio oli nimeltään /boot/beos/. Saatat yhä löytää sen joissakin vanhemmissa dokumenteissa (esimerkiksi alkuperäisessä BeBook-kirjassa).
    Mikä sen nimi sitten onkaan, sinun ei pitäisi muuttaa mitään sen sisällä. Haikun jokainen päivitys voi lisätä, poista tai korvata mitä tahansa sen sisällä. Jos haluat lisätä toiminnallisuutta, ehkä toisen Seuraajalisäosan tai Tietomuuntimen tai ehkä toisen toisen laitteistoajurin, asenna nämä asiat omaan /boot/home/-hierarkiaan, tai jos sen otaksutaan olevan kaikille käyttäjille, kansioon /boot/common/. Niin kauan kuin Haiku ei ole monikäyttäjäjärjestelmä, tällä erottelulla ei ole näkyvää vaikutusta, koska on vain yksi käyttäjä yhdellä koti-kansiolla. Mutta koska mahdollisesti myöhemmin tulee tuki useammalle käyttäjälle, on järkevää oppia oikea tapa heti aluksi.

    +

    Joten sanotaan, että haluat asentaa uuden Tietomuuntimen viimeisintä kuvatieodstomuotoa varten, älä yksinkertaisesti kopioi sitä vastaavaan järjestelmäkansioon. Muista: Älä koske siihen!
    Laita se sen sijaan peilihierarkiaan kansioon /boot/common/ tai kansioon /boot/home/config/.

    +

    Esimerkissämme Tietomuuntimen järjestelmäkansio olisi

    /boot/system/add-ons/Translators/

    -

    So, the user "mirror" folder is either

    +

    Joten käyttäjän "peili"-kansio on joko

    /boot/home/config/add-ons/Translators/
    -or
    +tai
    /boot/common/add-ons/Translators/

    -

    This has another advantage: If the component you have installed messes things up (which is possible as you install hardware drivers like this, too) you are able to choose "Disable user add-ons" from the Boot Loader menu and are thus always able to boot without the offending component.

    -

    Most of the time, however, you won't have to deal with these things at all, since every software that comes from a trusted source should include an installation routine that handles these things.
    - -

    +-->

    index -The common folder - /boot/common/

    -

    Haiku is not a multi-user system yet. Once it is though, every user has her own home folder that is not accessible to anyone else. Every application or added component like Tracker Add-Ons, Translators etc. as well as any data that's supposed to be shared between different users, has to be put under /boot/common/.

    +Yhteiskansio - /boot/common/ +

    Haiku ei ole vielä monikäyttäjäjärjestelmä. Kun näin on laita, jokaisella käyttäjällä on oma koti-kansio, johon muut eivät pääse käsiksi. Jokainen sovellus ja lisätyt komponentit, kuten Seuraajalisäosat, Tietomuuntimet, jne samoin kuin kaikki eri käyttäjien kesken jaettavat tiedot on laitettava kansion /boot/common/ alle.

    index -The home folder - /boot/home/

    -

    This folder belongs to you. Here you can create and delete files and folders as you wish. However, you shouldn't mess too much with the ~/config/ directory and its subfolders. You could delete e.g. the ~/config/settings/ folder without damaging the operating system itself, but who wants to lose all his configurations and application settings? In any case, the system warns you with the at the top mentioned alert.

    -

    Besides the ~/config/add-ons/ folder, which mirrors the system's add-ons folder for additional components as described above, there are a few other folders of interest. (By the way, the tilde ("~") is a shortcut for your home folder, so you don't always have to write "/boot/home/" in Terminal.)

    +Kotikansio - /boot/home/ +

    Tämä kansio kuuluu sinulle. Täällä voit luoda ja poista tiedostoja ja kansiota mielesi mukaan. Sinun ei kuitenkaan pitäisi sotkea liikaa ~/config/-kansiota ja sen alikansioita. Voisit poistaa esimerkiksi ~/config/settings/-kansion vaurioittamatta itse käyttöjärjestelmää, mutta kuka haluaa menettää kaikki asetuksensa ja sovellusasetukset? Missä tapauksessa tahansa, järjestelmä varoittaa sinua sivun ylälaidassa mainitulla hälytyksellä.

    +

    Paitsi ~/config/add-ons/-kansio, joka peilaa järjestelmän lisäosakansiota lisäkomponentteja varten, kuten kuvattiin yllä, on myös muutamia muita kiinnostavia kansioita. (Muuten, aaltoviiva ("~") on oikotie kotihakemistoon, joten sinune ei tarvitse aina kirjoittaa "/boot/home/" Pääteikkunassa.)

    - + - + - + - + - + - + - + - + - + - + - + - + - + - + - +
    ~/mail By default, this is where your mails are kept.
    Oletuksena tämä on kansio, jossa sähköpostisi säilytetään.
    ~/queries Queries are stored, by default temporarily for 7 days, in this folder.
    Kyselyt tallennetaan oletuksena tilapäisesti 7 päiväksi tähäh kansioon.
    ~/config/be/ Again from our BeOS legacy, the be folder contains what's shown in the Deskbar menu. You can add and remove items by putting files, folders, links or queries into this folder.
    Taas BeOS-perinne, be-kansio sisältää mitä nähdään Työpöytäpalkkivalikossa. Voit lisätä ja poistaa valikkorivejä laittamalla tiedostoja, kansioita, linkkejä ja kyselyjä tähän kansioon.
    ~/config/bin/ Complements the system's /boot/system/bin/ folder and holds all your command line programs.
    Täydentää järjestelmän /boot/system/bin/-kansiota ja säilyttää kaikki komentoriviohjelmasi.
    ~/config/boot/ This folder is the place for User Scripts that are executed before or after the system boots up or shuts down.
    Tämä kansio on paikka Käyttäjäskripteille, jotka suoritetaan ennen alkulatausta tai sammuttamista tai niiden jälkeen.
    ~/config/boot/launch/ Links to programs or documents in this folder are automatically launched on every boot-up.
    Linkit ohjelmiin tai asiakirjoihin tässä kansiossa käynnistetään automaattisesti jokaisen alkulatauksen yhteydessä.
    ~/config/data/fonts/ Simply copy a TrueType or Postscript font into this folder and its usable right away.
    Kopioi yksinkertaisesti TrueType tai Postscript -kirjasimet tähän kansioon ja se on heti käytettävissä.
    ~/config/settings/ This folder contains the settings to all applications and a few configurations for the system. Some applications manage their settings in their own subfolders, others simply put their configuration file in there.
    Tämä kansio sisältää asetuksia kaikkiin sovelluksiin ja muutamia järjestelmän asetuksia. Jotkut sovellukset käsittelevät asetuksiaan omissa alikansioisssa, toiset laittavat yksinkertaisesti asetustiedostonsa tänne.
    ~/config/settings/beos_mime/ In this MIME database Haiku keeps track of all the different filetypes and their settings.
    Tässä MIME-tietokannassa Haiku säilyttää kaikkien eri tiedostotyyppien jäljet ja niiden asetuksia.
    ~/config/settings/kernel/drivers/ There's one settings file that may be of interest: kernel offers some low level configurations like disabling SMP, activating serial debugging or enabling advanced power management. You activate a configuration line by removing the commentary symbol "#". Be careful here!
    Yksi asetustiedosto saattaa olla kiinnostava: kernel tarjoaa joitakin alemman tason asetuksia kuten SMP:n ottamisen pois käytöstä, sarjavianjäljityksen aktivoinnin tai kehittyneen virranhallinnan (APM) käyttöönoton. Voit aktivoida asetusrivin poistamalla kommenttimerkin "#" rivin alusta. Ole varovainen tässä!
    ~/config/settings/Tracker/ Besides the various settings files for Tracker, there are some interesting subfolders:
    Paitsi Seuraajan eri asetustiedostoja, tässä on joitakin kiinnostavia alikansioita:
    DefaultFolderTemplate/Show and arrange all attributes and the window size to your liking. Every new folder you create will use it as a template.
    DefaultFolderTemplate/Näyttää ja järjestää kaikki attribuutit ja ikkunakoot haluamallasi tavalla. Jokainen uusi luomasi kansio käyttää sitä mallinteena.
    DefaultQueryTemplates/You can define the layout of query result windows for certain filetypes. See topic Query: The result window.
    DefaultQueryTemplates/Voit määritellä kyselytulosikkunan asettelun tietyille tiedostotyypeille. Katso aihe Kysely: Tulosikkuna.
    Go/Put links to your favorite locations in here to make them available e.g. in open and save panels. See topic Haiku's GUI: Favorites and recent folders.
    Go/Laita linkkejä suosikkipaikkaasi tässä tehdäksesi käytettäväksi esimerkiksi paneelien avaamisessa ja sulkemisessa. Katso aihe Haiku graafinen käyttöliittymä: Suosikit ja äskettäiset kansiot.
    Tracker New Template/Add a template for any filetype that's then available from Tracker's File | New... menu. See topic Tracker: Working with files.
    Tracker New Template/Lisää mallinne jokaiselle tiedostotyypille, joka on käytettävissä Seuraajan Tiedosto | Uusi...-valikossa. Katso aihe Seuraaja: Työskentely tiedostoilla.
    @@ -147,8 +146,8 @@ If you do want to know more about how things tick in Haiku, have a look at this diff --git a/docs/userguide/fi/filetypes.html b/docs/userguide/fi/filetypes.html index d7037bd910..5fae7d636a 100644 --- a/docs/userguide/fi/filetypes.html +++ b/docs/userguide/fi/filetypes.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Filetypes + Tiedostotyypit
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    Filetypes

    +

    Tiedostotyypit

    -

    Other than Windows, Haiku doesn't rely on the 3-letter file extension for a file type (e.g. .txt, .jpg, .mp3). This method is only a last resort fallback. Haiku uses MIME types just like it's custom on the internet.

    -
    While there's no reason to use file extensions in Haiku, remember to add them to files you want to share with users of other operating systems, e.g. over email, uploading to a server or via exchange of an USB drive. Otherwise their system may not recognize the file type.
    +

    Toisin kuin Windows-käyttöjärjestelmässä, Haiku ei tukeudu 3-kirjaimiseen tiedostotyyppien tiedostotarkentimiin (esimerkiksi .txt, .jpg, mp3). Tämä menetelmä on ainoastaan viimeinen varasuunnitelmavaihtoehto. Haiku käyttää MIME-tyyppejä aivan kuten on tapana internetissä.

    +
    Samalla kun ei ole syytä käyttää tiedostotarkentimia Haikussa, muista lisätä ne tiedostoihin, jotka haluat jakaa muiden käyttöjärjestelmien käyttäjien kanssa, esimerkiksi sähköpostin välityksellä, kopioimalla palvelimelle tai vaihtamalla USB-tikkua. Muussa tapauksessa heidän käyttöjärjestelmänsä ei tunnista tiedostotyyppiä.

    index -Setting the filetype of a specific file

    -

    You can change the type of a specific file, its icon and the associated application. Select the file and invoke the Add-Ons | Filetype add-on from the right-click context menu.

    +Tietyn tiedoston tiedostotyypin asettaminen +

    Voit vaihtaa tietyn tiedoston tyyppiä, sen kuvaketta ja siihen liitettyä sovellusta. Valitse tiedosto ja kutsu Lisäosat | Tiedostotyyppilisäosat asiayhteysvalikosta hiiren oikealla painikkeella.

    filetype-addon.png

    index -The File Type

    -

    The above is a PNG file, it's MIME string image/png. Let's say you definitely know that it's not a PNG but a GIF. You can change that either by entering the correct MIME string by hand or with one of the two buttons below the textbox:

    +Tiedostotyyppi +

    Yllä on PNG-tiedosto, sen MIME-merkkijono image/png. Sanotaan, että varmasti tiedät, että se ei ole PNG-tiedosto, vaan GIF-tiedosto. Voit muuttaa sen joko kirjoittamalla oikean MIME-merkkijonon manuaalisesti tai yhdellä kahdesta painikkeesta teksti-ikkunan alla.

    - - + +
    Select... shows a hierarchical list of filetypes where you navigate to image | GIF Image.
    Same as... opens a file dialog where you choose any file that already has the filetype you're looking for.
    Valitse... näyttää tiedostotyyppien hierarkisen luettelon, johon navigoit image | GIF Image.
    Sama kuin... avaa tiedostonvalintaikkunan, jossa valitse minkä tahansa tiedoston, jolla on jo etsimäsi tiedostotyyppi.

    index -The Preferred Application

    -

    This pop-up menu shows a list of all applications that can handle this particular filetype. From here you can choose which program should open this specific file when it's double-clicked. You could, for example, change a HTML file's preferred application from the browser to a text editor while you're working on it. Every other HTML file still opens in the browser, only this particular one starts in your text editor.

    +Ensisijainen sovellus +

    Tämä ponnahdusvalikko näyttää kaikkien niiden sovellusten luettelon, jotka voivat käsitellä tätä tiettyä tiedostotyyppiä. Siitä voit valita millä ohjelmalla avaat tämän tietyn tiedoston kaksoisnapsautuksen jälkeen. Voisit esimerkiksi vaihtaa HTML-tiedoton ensisijaista sovellusta selaimesta tekstieditoriksi, jolla työstät tiedostoa. Jokainen muu HTML-tiedosto avautuu yhä selaimessa, vain tämä tietty tiedosto avautuu tekstieditorissasi.

    -

    The Default application is the one that's set globally for that filetype. If you don't find the program you want to associate with this file in the pop-up menu, you'll again find the buttons Select... and Same as... which do the similar thing described under "The File Type" above.

    +

    Oletussovellus on se, joka on asetettu yleisesti tälle tiedostotyypille. Jos et löydä ohjelmaa, jonka haluat liittää tähän tiedostoon ponnahdusvalikosta, voit jälleen etsiä painikkeilla Valitse... ja Sama kuin..., jotka tekevät samaa kuin mitä kuvattiin yllä kohdassa "Tiedostotyyppi".

    index -The Icon

    -

    If you're wondering why the icon well on the top right is empty: Icons are normally inherited from the system default for that filetype. You can open the Filetype add-on of a file that contains an icon and drag&drop it into your file's icon well. Or you double-click the icon well and create or edit your own icon. For more info on icons and how to create your own, see topic Icon-O-Matic.

    +Kuvake +

    Jos ihmettelet, että miksi kuvakelähde oikeassa yläkulmassa on tyhjä: Kuvakkeet periytyvät normaalisti järjestelmäoletuksesta tuolle tiedostotyypille. Voit avata tiedoston Tiedostotyyppilisäosan, joka sisältää kuvakkeen ja raahata ja pudottaa sen tiedostosi kuvakelähteeseen. Tai kaksoisnapsautat kuvakelähdettä ja luot tai muokkaat oman kuvakkeesi. Lisätietoja kuvakkeista ja siitä kuinka luot oman, katso aihetta Kuvakemaatti.

    index -Special settings for applications

    -

    If you invoke the Filetype add-on on an executable (here: StyledEdit), you'll get a different dialog:

    +Sovellusten erityisasetukset +

    Jos kutsut Tietostotyyppilisän suoritettavalle tiedostolle (tässä: StyledEdit), saat erilaisen valintaikkunan:

    filetype-addon-stylededit.png -

    On top, you'll see, instead of a standardized MIME string, the unique application signature. With it, the system finds the program wherever it's installed.

    -

    Below it are several flags, controlling the app's behaviour:

    +

    Ylimmäisen näet vakion MIME-merkkijonon sijasta uniikin sovellusallekirjoituksen. Sen avulla järjestelmä löytää ohjelman heti kun se on asennettu.

    +

    Alla on useita lippuja, jotka ohjaavat sovelluksen käyttäytymistä:

    - - - - - + + + + +
    Single launch Only one instance of the app can be running per executable file. If you have two copies of that app, however, they can run side by side.
    Multiple launch Many instances of the app can run simultaneously.
    Exclusive launch Really only one instance with that app's signature is allowed to run at a time.
    Args only Indicates the app doesn't respond to messages.
    Background app The app won't appear in Twitcher or the list of running apps of the Deskbar.
    Yksittäiskäynnistys Vain yksi sovelluksen ilmentymä voidaan suorittaa kerrallaan. Jos sinulla on kuitenkin kaksi kopiota sovelluksesta, ne voidaan suorittaa rinnatusten.
    Useita käynnistymisiä Monia sovelluksen ilmentymiä voidaan suorittaa samanaikaisesti.
    Yksinomainen käynnistys Todella vain yksi ilmentymä sovelluksen allekirjoituksella saa suorittaa kerrallaan.
    Vain argumentit ilmoiittaa,, että sovellus ei vastaa viesteihin.
    Taustasovellus Sovellus ei ole näkyvissä Vaihtajaohjelmassa tai Työpöytäpalkin suoritettavien ohjelmien luettelossa.
    -

    Then there's the list of supported filetypes. You can add (and remove) filetypes if you think the application can handle them. As a consequence, the app will appear in the menu for preferred applications or Tracker's Open with... context menu when you right-click on a file of that type.

    -

    At the bottom are version and copyright information. Like the application signature, they are filled in by the app's author and shouldn't be altered.

    +

    Sitten siellä on tuettujen tiedostotyyppien luettelo. Voit lisätä (tai poistaa) tiedostotyyppejä, jos ajattelet, että sovellus voi käsitellä niitä. Seurauksena sovellus ilmaantuu ensisijaisen sovelluksen valikkoon tai Seuraajan Avaa sovelluksella...-aiheyhteysvalikkoon, kun napsautat hiiren oikealla painikkeella tuon tyyppistä tiedostoa.

    +

    Alimmaisen on versio- ja copyright-tiedot. Kuten sovellusallekirjoitus, ne täyttää sovelluksen kehittäjä niitä ei pitäisi muuttaa.

    index -Global settings with the FileTypes Preferences

    -

    The FileTypes preferences don't deal with individual files but with global settings of filetypes. You can change default icons and preferred applications or add, remove, or alter attributes of whole filetypes. You can even create your own filetype from scratch.

    -

    All filetypes and their configurations are stored in /boot/home/config/settings/beos_mime/. Before you start experimenting, it may be prudent to make a backup of that folder...

    -

    To learn more about the FileTypes preferences see the workshop: Filetypes, Attributes, Index and Queries.

    +Yleiset tiedostotyypit-asetukset +

    Tiedostotyypit-asetukset ei käsittele yksittäisiä tiedostoja vaan yleisiä tiedostotyypin asetuksia. Voit vaihtaa oletuskuvaketta ja ensisijaista ohjelmaa tai lisätä, poista ja muuttaa koko tiedostotyypin attribuuttteja. Voit jopa luoda oman tiedostyypin tyhjästä.

    +

    Kaikki tiedostotyypit ja niiden asetukset tallennetaan kansioon /boot/home/config/settings/beos_mime/. Ennenkuin aloitat kokeilun, saatta olla järkevä tehdä varmuuskopio tuosta kansiosta...

    +

    Opi lisää Tiedostotyypit-asetuksista katsomalla työpajaa: Tiedostotyypit, Attribuutit, Indeksi ja Kyselyt.

    diff --git a/docs/userguide/fi/gui.html b/docs/userguide/fi/gui.html index 79eacebeff..4046378667 100644 --- a/docs/userguide/fi/gui.html +++ b/docs/userguide/fi/gui.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Haiku's GUI + Haikun graafinen käyttöliittymä
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    - + + Helppo siirtäminen ja koon muuttaminen
    + Pinoa ja laatoita
    + Avaus- ja tallentamispaneelit
    + Kopiot
    Index
    Hakemisto
    - Easy moving and resizing
    - Stack & Tile
    - Open and save panels
    - Replicants
    -

    Haiku's GUI

    +

    Haikun graafinen käyttöliittymä

    -

    Haiku's graphical user interface is an integral part of the system. Unlike Unix-based operating systems, there's no separate window manager and booting just into a command line shell is not possible. Haiku's focus being on the desktop user, this is just not considered necessary.

    -

    As you probably have experience with other graphical environments, let's skip over the standards like menus, right-click context menus, drag&drop etc. Let's have a look at the few unique aspects of Haiku's GUI instead.

    +

    Haikun graafinen käyttöliittymä on järjestelmän kiinteä osa. Toisin kuin Unix-perustaisissa järjestelmissä, ei ole mitään erillistä ikkunahallintaa eikä alkulataus vain komentorivikuoreen ei ole mahdollista. Haikun kohdistuu työpöytäkäyttäjiin, ja komentorivikuoreen käynnistymistä ei ole pidetty tarpeellisena.

    +

    Koska sinulla on luultavasti kokemuksia muista graafisista ympäristöistä, hypätään standardien, kuten valikoiden, hiiren oikealla painikkeella näkyviin saatavan asiayhteysvalikon, vedä ja raahaa -toiminnon jne. ylitse. Tutustutaan sen sijaan muutamaan Haikun ainutlaatuiseen puoleen.

    gui.png -

    There are only a few things in Haiku's GUI that aren't obvious and deserve an explanation.

    +

    Haikun graafisessa käyttöliittymässä on vain muutamia asioita, jotka eivät ole itsestään selviä ja ansaitsevat selityksen.

      -
    1. The Deskbar is Haiku's "Start" menu and taskbar, if you will. See topic Deskbar.

    2. -
    3. The yellow tab offers more than just a program's name or a document's filename: -
      • You can move it by holding the SHIFT key while dragging it to another position, enabling you to stack a number of windows and conveniently access them by their named tab.
      • -
      • You minimize a window with a double-click on its tab (or with CTRL ALT M). A such hidden window can be accessed by its entry in the Deskbar or the Twitcher.
      • -
      • You can send a window to the back with a right-click on its tab (or its border).
    4. -
    5. The close button.

    6. -
    7. The "zoom" button (or CTRL ALT Z). In most applications, this will expand a window to maximum size. It doesn't have to, however. Tracker windows, for example, will resize to best fit the contents.

    8. -
    9. The resize corner. Dragging anywhere else on a window's border will move the window.

    10. +
    11. Työpöytäpalkki on Haikuns "Käynnistä"-valikko ja tehtäväpakki, jos niin haluat. Katso aihetta Työpöytäpalkki.

    12. +
    13. Keltainen välilehti tarjoaa muutakin kuin vain ohjelman nimen tai asiakirjan tiedostonimen: +
      • Voit siirtää ikkunaa pitämällä VAIHTO-näppäimen alhaalla raahatessasi sitä toiseen paikkaan, ottaen käyttöön lukuisien ikkunoiden pinoamisen ja pääset kätevästi käsiksi niihin niiden nimetyn välilehden kautta.
      • +
      • Muutat ikkunan minimikokoiseksi kaksoisnapsauttamalla sen välilehteä (tai CTRL ALT M -näppäimillä). Sellainen piilotettu ikkuna voidaan kutsua valitsemalla sen valikkorivi Työpöytäpalkissa tai Vaihtaja-ohjelmassa.
      • +
      • Voit lähettää ikkunan taustalle napsauttamalla sen välilehteä (tai sen reunaa) hiiren oikealla painikkeella.
    14. +
    15. Sulje-painike.

    16. +
    17. Laajentamispainike (tai CTRL ALT Z). useimmissa sovelluksissa, laajentaa ikkunan maksimikokoon. Sen ei kuintenkaan tarvitse tehdä sitä. Seuraaja-ikkunat esimerkiksi muuttavat kokoaan parhaiten sisältöön sopivaan kokoon.

    18. +
    19. Ikkunan reuna. Raahaaminen hiiren vasemmalla painikkeella siirtää ikkunan, raahaaminen hiiren oikealla painikkeella muuttaa ikkunan kokoa.

    20. +
    21. Koon muuttamiskulma.

    index -A quick way to move or resize windows

    -

    Moving and resizing windows is a large part of interacting with several concurrently running applications. Instead of aiming at the small yellow title tab or the even tinier window border, there's a more convenient way to move a window. Also, additionally to its small size, the resize corner has another limitation: It only allows resizing at and in the direction of the lower right corner.

    -

    To address these issues, Haiku provides a neat solution using the window management key combo CTRL ALT and the mouse. See also chapter Shortcuts and key combinations for more shortcuts concerning window management.

    +Nopea tapa siirtää tai muuttaa ikkunan kokoa +

    Ikkunoiden siirtäminen ja koon muuttaminen on laaja osa vuorovaikutuksesta useiden samanaikaisesti suoritettavien sovellusten välillä. Sen sijaan, että yritettäisiin osua pieneen keltaiseen otsikkovälilehteen tai vielä ohuempaan reurnaviivaan, ikkunoiden siirtämiseksi on kätevämpi tapa. Koon muuttamisnurkalla on pienen koon lisäksi myös toinen rajoitus. Se sallii koon muuttamisen vain oikean alakulman suuntaan ja siitä keskustaan päin.
    Raahaaminen hiiren oikealla painikkeella toimii, mutta sinun on tähdättävä huolellisesti.

    +

    Näiden asioiden ratkaisemiseksi Haiku tarjoaa näppärän ratkaisun ikkunahallintaan käyttämällä näppäinyhdistelmää CTRL ALT ja hiirtä. Katso myös ikkunahallintaan liittyviä lisätietoja kappaleesta Pikanäppäimet ja näppäinyhdistelmät.

    resizing.png -

    Holding down CTRL ALT will highlight the window borders nearest to the mouse pointer. Move the mouse in the direction of another border to change the target. Click and dragging with the right mouse button will resize the window along the highlighted border(s).

    -

    Hold down CTRL ALT and click and drag with the left mouse button anywhere in a window to move it around. A quick click with the right mouse button sends it to the back.

    +

    Pitämällä alhaalla näppäimet CTRL ALT korostetaan ikkunareuna, joka sijaitsee lähimpänä hiiren kohdistinta. Siirrä hiirtä toiseen suuntaan ja toinen raja vaihtuu kohteeksi. Napsautamalla ja raahaaminen hiiren oikealla painikkeella voi muuttaa ikkunan kokoa korostetun reunan kohdalta.

    +

    Pidä alhaalla näppäimet CTRL ALT ja napsauta sekä raahaa hiiren vasemmalla painikkeella kaikkialle ja ikkuna siirtyy mukana. Nopea napsautus hiiren oikealla painikkeella lähettää sen takaisin.

    index -Stack & Tile

    -

    Haiku's user interface provides a unique feature that puts the fact that windows have a yellow tab instead of a full-width title bar to perfect use. It's called "Stack & Tile".
    -In the example below, a Tracker window with bookmarks is tiled to the left of a WebPositive window, which itself is stacked with another Tracker window showing the source folder haiku. In this animation, the user clicks on the tabs of the stacked windows to alternately bring one or the other to the front.

    +Pino ja laatoitus +

    Haikun käyttöliittymä tarjoaa ainutlaatuisia ominaisuuksia, jotka painottaa, että ikkkunoilla on keltainen välilehti eikä täysilevyinen otsikkopalkki käytön parantamiseksi. Sitä kutsutaan nimellä "Pino ja laatoitus".
    +Alla olevassa esimerkissä, Seuraaja-ikkuna kirjanmerkillä on laatoitettu WebPositive-ikkunan viereen, mikä itse on pinottu toisen Seuraajaikkunan kanssa, mikä näyttää lähdekansion haiku. Tässä animaatiossa käyttäjä napsauttaa pinoikkunan välilehtiä tuoden ne vuorotellen etualalle.

    gui-s+t.gif -

    Connected like this, the group of windows can be moved and resized together - a nice arrangement to work in a more project centric environment. Instead of looking for the right browser window with documentation, editor and Tracker windows and maybe a related email concerning one project you are currently working on, just stack&tile them together.

    -

    Doing the actual arranging of windows is easy: Hold down OPT while dragging a window by its tab close to another window's tab or border until it's highlighted and release the mouse button.

    -

    Stack & Tile consists of two related parts.

    +

    Tällä tavalla yhdistetty ikkunoiden ryhmää voidaan siirtää ja sen kokoa voidaan muuttaa yhdessä - näppärä järjestely työskenneltäessä hankekeskeisemmässä ympäristössä. Oikean selainikkunan etsimisen sijasta dokumentaatio, editori ja seuraajaikkunat ja ehkä hankkeeseen liittyvät sähköpostiviestit voidaan vain pinota ja laatoittaa yhteen.

    +

    Ikkunoiden todellisen järjestelyn tekeminen on helppoa. Pidä alhaalla Alt Gr/OPT-näppäintä samalla kun raahaat ikkunaa välilehdestä toisen ikkunan välilehden tai reunan viereen, kunnes se korostuu ja vapauta sitten hiiren painike.

    +

    Pino ja laatoitus sisältää kaksi asiaan littyvää osaa.

    -
    gui-stacking.png

    "Stacking" is putting windows on top of each other, automatically moving the yellow tabs into position.
    -While holding OPT, tabs change color when they overlap; drop the window to establish the stacking.

    +

    "Pinoaminen" on ikkunoiden laittamista toistensa päälle, jolloin keltaiset välilehdet siirtyvät automaattisesti oikeaan paikkaan.
    +Kun pidetään alhaalla Alt Gr/OPT-painiketta, välilehdet vaihtavat väriä, kun niiden päälle siirretään ikkuna; pudota sitten ikkuna pinoamisen aloittamiseksi.

    -
    gui-tilinging.png

    "Tiling" means gluing windows horizontally or vertically together.
    -Again, while holding OPT, the borders that'll fuse together when you drop the window change color when brought near each other.

    -

    Separation is done in the same way, by holding OPT while dragging a window by its tab out of the group.

    +

    "Laatoittaminen" tarkoittaa ikkunoiden liimaamista vaakasuorassa tai pystysuorassa yhteen.
    +Pidä taas alhaalla painiketta Alt Gr/OPT, ja ne reunat, jotka hitsautuvat yhteen, vaihtavat väriä, kun pudotat ikkunan lähelle toista ikkunaa.

    +

    Ikkunoiden erottaminen tehdään samalla tavalla, pitämällä Alt Gr/OPT-näppäin alhaalla samalla kun ikkuna vedetään välilehdestä kiinnipitäen pois ryhmästä.

    index -Open and save panels

    -

    When opening or saving a file from any application, a panel like this opens:

    +Avataan ja tallennetaan paneeleja +

    Kun avataan tai tallennetaan tiedostoa mistä tahansa sovelluksesta, avautuu tämän näköinen paneeli:

    open-save.png -

    It has all the usual things: A list of files of the current folder to choose from, in case of a save panel, a text field to enter a filename and a pop-up menu for different file formats and their settings.
    -You can enter parent folders with the pop-up menu above the file listing.

    -

    If you already have a Tracker window with the location for a file open, you can simply drag either any file or the folder-representation (i.e. the symbol to the far right in its menu bar) into the panel. This changes the panel to that new location.

    +

    Siinä on kaikki tavalliset asiat: Nykyisen kansion tiedostoluettelo, josta voi valita tiedoston, tiedoston tallennustapauksessa tekstikenttä tiedostonimen kirjoittamista varten ja ponnahdusvalikko eri tiedostomuotoja ja niiden asetuksia varten.
    Voit siirtyä äitihakemistoon ponnahdusvalikosta tiedostoluettelon yläpuolelta.

    +

    Jos sinulla on jo Seuraaja-ikkuna tiedoston avaussijainnissa, voit yksinkertaisesti raahata minkä tahansa tiedoston tai kainsio-esityksen (toisin sanoen symbolin valikkopalkin oikealla puolella) paneeliin. Tämä vaihtaa paneelin uuteen paikkaa.

    index -Keyboard shortcuts

    -

    Many shortcuts in open and save panels are the same used in Tracker. Besides the commands that are also available through the File menu, there are a few not that obvious:

    +Näppäimistön pikanäppäimet +

    Monet pikanäppäinmäärittelyt avaus- ja sulkemispaneelissa ovat samat kuin Seuraajassa käytetyt. Sitäpaitsi komennoissa, jotka ovat myös käytettävissä Tiedosto-valikion kautta, on muutamia jotka eivät ole itsestäänselviä:

    - - - - - - + + + + + +
    ALT N Creates a new folder.
    ALT E Lets you rename the selected entry.
    ALT Moves into the parent folder.
    ALT or ENTER Moves into the selected folder.
    ALT D Takes you to your Desktop.
    ALT H Takes you to your Home folder.
    ALT N Luo uuden kansion.
    ALT E Sallii sinun nimetä uudelleen valitun kohteen.
    ALT Siirtää äitikansioon.
    ALT tai ENTER Siirtää valittuun kansioon.
    ALT D Siirtää sinut työpöydällesi.
    ALT H Siirtää sinut kotikansioosi.

    index -Favorites and recent folders

    -

    The Favorites menu in open and save panels provides recently visited folders and favorite locations that you can set up yourself. As indicated by the little arrow, you can also use these locations to navigate further down the hierarchy via submenus.

    +Suosikit ja äskettäiset kansiot +

    Suosikit-valikko avaus- ja sulkemispaneelissa tarjoaa äskettäin vieraillut kansiot ja suosikkisijainnit, jotka voit asettaa itse. Kuten pienellä nuolella ilmaistaan, voit käyttää myös näitä sijainteja navigoidaksesi kauemmas alaspäin alivalikkojen hierarkkiassa.

    favorites.png -

    To add a Favorite, you simply navigate to your destination and choose Favorites | Add current folder. From now on it will appear in every open/save panel. To remove a Favorite, choose Favorites | Configure favorites... and delete its entry.
    -All Favorites are kept in /boot/home/config/settings/Tracker/Go/. So you might as well add and remove links to files and folders there directly.

    +

    Suosikin lisäämiseksi navigoit yksinkertaisesti haluamaasi kohteeseen ja valitset Suosikit | Lisää nykyinen kansio. Tästä alkaen se esiintyy jokaisessa avaus- ja tallentamispaneelissa. Suosikin poistamiseksi valitse Suosikit | Aseta suosikit... ja poista haluamasi suosikkirivi.
    Kaikki suosikit pidetään kansiossa /boot/home/config/settings/Tracker/Go/. Joten pystyisit myös lisäämään ja poistamaan linkkejä tiedostoihin ja kansioihin suoraan sieltä.

    index -Replicants

    -

    Replicants are small self-contained parts of applications that can be integrated into other programs. Provided Deskbar's option to Show replicants is activated, you'll recognize a replicantable part of an application by its small handle, normally in the bottom right corner:

    +Kopiot +

    Kopiot ovat pieniä itsensä sisältäviä sovellusosia, jotka on integroitu toisiin sovelluksiin. Edellyttäen, että Seuraajan valitsin Näytä kopiot on aktivoitu, tunnistat sovelluksen kopio-osan pienestä kahvasta, joka on normaalisti oikeassa alakulmassa:

    replicant.png -

    The most prominent place that accepts Replicants is the Desktop: You simply drag & drop the little handle onto it. From now on it's part of the Desktop and the Replicant's originating app doesn't have to be started for it to work.
    -A right-click on a Replicant handle offers a context menu to show the originating app's About window and to Remove replicant.

    -
    Should you experience difficulties with a Replicant on the Desktop and just can't get rid of it, delete ~/config/settings/Tracker/tracker_shelf. Unfortunately, this will remove all Replicants from the Desktop.
    -

    Examples for replicatable applications are the graphs of the ActivityMonitor, the Workspaces applet or DeskCalc.

    +

    Huomioonherättävin paikka, joka hyväksyy Kopiot on Työpöytä. Yksinkertaisesti rahaat ja pudotat pienen kahvan sille. Siitä alkaen se on osa Työpöytää ja sovellus, josta Kopio on lähtöisin, ei tarvitse käynnistyä toimiakseen.
    Hiiren oikean painikkeen painallus Kopiokahvassa tarjoaa asiayhteysvalikon, joka näyttää alkuperäsovelluksen Ohjelmasta-ikkunan ja Poista kopio-valikon.

    +
    Jos koet vaikeuksia Kopion kanssa Työpöydällä ja et pääse niistä eroon, poista ~/config/settings/Tracker/tracker_shelf. Valitettavasti tämä poistaa kaikki Kopiot Työpöydältä.
    +

    Esimerkkejä kopioitavista sovelluksista ovat Aktiviteettivalvonta-ohjelman graafit, Työtilat-sovelma tai Työpöytälaskin.

    diff --git a/docs/userguide/fi/images/apps-images/activitymonitor.png b/docs/userguide/fi/images/apps-images/activitymonitor.png index 94ee224e90..9be545c5f7 100644 Binary files a/docs/userguide/fi/images/apps-images/activitymonitor.png and b/docs/userguide/fi/images/apps-images/activitymonitor.png differ diff --git a/docs/userguide/fi/images/apps-images/bootmanager-1.png b/docs/userguide/fi/images/apps-images/bootmanager-1.png index 254f731d81..f6fef56927 100644 Binary files a/docs/userguide/fi/images/apps-images/bootmanager-1.png and b/docs/userguide/fi/images/apps-images/bootmanager-1.png differ diff --git a/docs/userguide/fi/images/apps-images/cdplayer.png b/docs/userguide/fi/images/apps-images/cdplayer.png index c9b46b0710..7594f14e43 100644 Binary files a/docs/userguide/fi/images/apps-images/cdplayer.png and b/docs/userguide/fi/images/apps-images/cdplayer.png differ diff --git a/docs/userguide/fi/images/apps-images/charactermap.png b/docs/userguide/fi/images/apps-images/charactermap.png index 0d13149de8..c907e2efce 100644 Binary files a/docs/userguide/fi/images/apps-images/charactermap.png and b/docs/userguide/fi/images/apps-images/charactermap.png differ diff --git a/docs/userguide/fi/images/apps-images/cli-alert.png b/docs/userguide/fi/images/apps-images/cli-alert.png index a372778720..6b4b9cd4c1 100644 Binary files a/docs/userguide/fi/images/apps-images/cli-alert.png and b/docs/userguide/fi/images/apps-images/cli-alert.png differ diff --git a/docs/userguide/fi/images/apps-images/cli-desklink.png b/docs/userguide/fi/images/apps-images/cli-desklink.png index b56fd0c53f..ebadd29074 100644 Binary files a/docs/userguide/fi/images/apps-images/cli-desklink.png and b/docs/userguide/fi/images/apps-images/cli-desklink.png differ diff --git a/docs/userguide/fi/images/apps-images/cli-filepanel.png b/docs/userguide/fi/images/apps-images/cli-filepanel.png index d9f7b81490..238c01beda 100644 Binary files a/docs/userguide/fi/images/apps-images/cli-filepanel.png and b/docs/userguide/fi/images/apps-images/cli-filepanel.png differ diff --git a/docs/userguide/fi/images/apps-images/deskcalc.png b/docs/userguide/fi/images/apps-images/deskcalc.png new file mode 100644 index 0000000000..5cfc932a45 Binary files /dev/null and b/docs/userguide/fi/images/apps-images/deskcalc.png differ diff --git a/docs/userguide/fi/images/apps-images/expander-preferences.png b/docs/userguide/fi/images/apps-images/expander-preferences.png index 3288945617..f613496250 100644 Binary files a/docs/userguide/fi/images/apps-images/expander-preferences.png and b/docs/userguide/fi/images/apps-images/expander-preferences.png differ diff --git a/docs/userguide/fi/images/apps-images/expander.png b/docs/userguide/fi/images/apps-images/expander.png index 2590f08053..759b8b2445 100644 Binary files a/docs/userguide/fi/images/apps-images/expander.png and b/docs/userguide/fi/images/apps-images/expander.png differ diff --git a/docs/userguide/fi/images/apps-images/installer.png b/docs/userguide/fi/images/apps-images/installer.png index 0106866921..5d038292a2 100644 Binary files a/docs/userguide/fi/images/apps-images/installer.png and b/docs/userguide/fi/images/apps-images/installer.png differ diff --git a/docs/userguide/fi/images/apps-images/magnify.png b/docs/userguide/fi/images/apps-images/magnify.png index 6aae6df4c7..51990eb5c6 100644 Binary files a/docs/userguide/fi/images/apps-images/magnify.png and b/docs/userguide/fi/images/apps-images/magnify.png differ diff --git a/docs/userguide/fi/images/apps-images/webpositive-settings.png b/docs/userguide/fi/images/apps-images/webpositive-settings.png index 2a6123a735..49cef30f44 100644 Binary files a/docs/userguide/fi/images/apps-images/webpositive-settings.png and b/docs/userguide/fi/images/apps-images/webpositive-settings.png differ diff --git a/docs/userguide/fi/images/apps-images/webpositive.png b/docs/userguide/fi/images/apps-images/webpositive.png index 17f776e5d8..d419d5a5e1 100644 Binary files a/docs/userguide/fi/images/apps-images/webpositive.png and b/docs/userguide/fi/images/apps-images/webpositive.png differ diff --git a/docs/userguide/fi/images/deskbar-images/configure.png b/docs/userguide/fi/images/deskbar-images/configure.png index 58baf84fe3..8c93719336 100644 Binary files a/docs/userguide/fi/images/deskbar-images/configure.png and b/docs/userguide/fi/images/deskbar-images/configure.png differ diff --git a/docs/userguide/fi/images/filesystem-layout-images/achtung-system.png b/docs/userguide/fi/images/filesystem-layout-images/achtung-system.png index f24c253bc8..fbcebee00c 100644 Binary files a/docs/userguide/fi/images/filesystem-layout-images/achtung-system.png and b/docs/userguide/fi/images/filesystem-layout-images/achtung-system.png differ diff --git a/docs/userguide/fi/images/filesystem-layout-images/achtung-user.png b/docs/userguide/fi/images/filesystem-layout-images/achtung-user.png index 9a77cfbb9d..fa6d1cfa24 100644 Binary files a/docs/userguide/fi/images/filesystem-layout-images/achtung-user.png and b/docs/userguide/fi/images/filesystem-layout-images/achtung-user.png differ diff --git a/docs/userguide/fi/images/filetypes-images/filetype-addon-stylededit.png b/docs/userguide/fi/images/filetypes-images/filetype-addon-stylededit.png index 928f02c631..bca197b6e2 100644 Binary files a/docs/userguide/fi/images/filetypes-images/filetype-addon-stylededit.png and b/docs/userguide/fi/images/filetypes-images/filetype-addon-stylededit.png differ diff --git a/docs/userguide/fi/images/filetypes-images/filetype-addon.png b/docs/userguide/fi/images/filetypes-images/filetype-addon.png index 15180be2d6..e7e26b2891 100644 Binary files a/docs/userguide/fi/images/filetypes-images/filetype-addon.png and b/docs/userguide/fi/images/filetypes-images/filetype-addon.png differ diff --git a/docs/userguide/fi/images/gui-images/resizing.png b/docs/userguide/fi/images/gui-images/resizing.png index 2a2ff48320..8e27076d3e 100644 Binary files a/docs/userguide/fi/images/gui-images/resizing.png and b/docs/userguide/fi/images/gui-images/resizing.png differ diff --git a/docs/userguide/fi/images/prefs-images/appearance-antialiasing.png b/docs/userguide/fi/images/prefs-images/appearance-antialiasing.png index ac7bca3305..fd250fbe77 100644 Binary files a/docs/userguide/fi/images/prefs-images/appearance-antialiasing.png and b/docs/userguide/fi/images/prefs-images/appearance-antialiasing.png differ diff --git a/docs/userguide/fi/images/prefs-images/appearance-colors.png b/docs/userguide/fi/images/prefs-images/appearance-colors.png index 993ec6d31c..ee3b47963f 100644 Binary files a/docs/userguide/fi/images/prefs-images/appearance-colors.png and b/docs/userguide/fi/images/prefs-images/appearance-colors.png differ diff --git a/docs/userguide/fi/images/prefs-images/appearance-decorators.png b/docs/userguide/fi/images/prefs-images/appearance-decorators.png new file mode 100644 index 0000000000..0710e0342c Binary files /dev/null and b/docs/userguide/fi/images/prefs-images/appearance-decorators.png differ diff --git a/docs/userguide/fi/images/prefs-images/appearance-fonts.png b/docs/userguide/fi/images/prefs-images/appearance-fonts.png new file mode 100644 index 0000000000..8a0d4f96ee Binary files /dev/null and b/docs/userguide/fi/images/prefs-images/appearance-fonts.png differ diff --git a/docs/userguide/fi/images/prefs-images/datatranslations.png b/docs/userguide/fi/images/prefs-images/datatranslations.png index b7600e7e68..91944c65b6 100644 Binary files a/docs/userguide/fi/images/prefs-images/datatranslations.png and b/docs/userguide/fi/images/prefs-images/datatranslations.png differ diff --git a/docs/userguide/fi/images/prefs-images/e-mail-accounts.png b/docs/userguide/fi/images/prefs-images/e-mail-accounts.png new file mode 100644 index 0000000000..17694e831e Binary files /dev/null and b/docs/userguide/fi/images/prefs-images/e-mail-accounts.png differ diff --git a/docs/userguide/fi/images/prefs-images/e-mail-filter-header.png b/docs/userguide/fi/images/prefs-images/e-mail-filter-header.png index ac27616d55..5ef30a2781 100644 Binary files a/docs/userguide/fi/images/prefs-images/e-mail-filter-header.png and b/docs/userguide/fi/images/prefs-images/e-mail-filter-header.png differ diff --git a/docs/userguide/fi/images/prefs-images/e-mail-filter-notification.png b/docs/userguide/fi/images/prefs-images/e-mail-filter-notification.png index 2397ba6937..3aed1fa6d1 100644 Binary files a/docs/userguide/fi/images/prefs-images/e-mail-filter-notification.png and b/docs/userguide/fi/images/prefs-images/e-mail-filter-notification.png differ diff --git a/docs/userguide/fi/images/prefs-images/e-mail-filter-spam.png b/docs/userguide/fi/images/prefs-images/e-mail-filter-spam.png index 8fc85e5b28..b9946e29f0 100644 Binary files a/docs/userguide/fi/images/prefs-images/e-mail-filter-spam.png and b/docs/userguide/fi/images/prefs-images/e-mail-filter-spam.png differ diff --git a/docs/userguide/fi/images/prefs-images/screensaver-fade.png b/docs/userguide/fi/images/prefs-images/screensaver-fade.png index cdb2a2e5e3..c2dc3e410b 100644 Binary files a/docs/userguide/fi/images/prefs-images/screensaver-fade.png and b/docs/userguide/fi/images/prefs-images/screensaver-fade.png differ diff --git a/docs/userguide/fi/images/prefs-images/screensaver-modules.png b/docs/userguide/fi/images/prefs-images/screensaver-modules.png index ebeac24d1e..1ab691b411 100644 Binary files a/docs/userguide/fi/images/prefs-images/screensaver-modules.png and b/docs/userguide/fi/images/prefs-images/screensaver-modules.png differ diff --git a/docs/userguide/fi/images/prefs-images/time-time.png b/docs/userguide/fi/images/prefs-images/time-time.png index 4b60a7136d..837e903cdf 100644 Binary files a/docs/userguide/fi/images/prefs-images/time-time.png and b/docs/userguide/fi/images/prefs-images/time-time.png differ diff --git a/docs/userguide/fi/images/prefs-images/time-timezone.png b/docs/userguide/fi/images/prefs-images/time-timezone.png index 4ddf6df643..f5217a4bbe 100644 Binary files a/docs/userguide/fi/images/prefs-images/time-timezone.png and b/docs/userguide/fi/images/prefs-images/time-timezone.png differ diff --git a/docs/userguide/fi/images/prefs-images/touchpad.png b/docs/userguide/fi/images/prefs-images/touchpad.png index b7f7365b9d..0892ae9b03 100644 Binary files a/docs/userguide/fi/images/prefs-images/touchpad.png and b/docs/userguide/fi/images/prefs-images/touchpad.png differ diff --git a/docs/userguide/fi/images/prefs-images/virtualmemory.png b/docs/userguide/fi/images/prefs-images/virtualmemory.png index 19f66bcb1c..23386f816d 100644 Binary files a/docs/userguide/fi/images/prefs-images/virtualmemory.png and b/docs/userguide/fi/images/prefs-images/virtualmemory.png differ diff --git a/docs/userguide/fi/images/workshop-wlan-images/join-network.png b/docs/userguide/fi/images/workshop-wlan-images/join-network.png new file mode 100644 index 0000000000..2fedecda91 Binary files /dev/null and b/docs/userguide/fi/images/workshop-wlan-images/join-network.png differ diff --git a/docs/userguide/fi/images/workshop-wlan-images/join-status.gif b/docs/userguide/fi/images/workshop-wlan-images/join-status.gif new file mode 100644 index 0000000000..dea116d418 Binary files /dev/null and b/docs/userguide/fi/images/workshop-wlan-images/join-status.gif differ diff --git a/docs/userguide/fi/index.html b/docs/userguide/fi/index.html index eddd16fd56..fcc0e928fa 100644 --- a/docs/userguide/fi/index.html +++ b/docs/userguide/fi/index.html @@ -9,6 +9,8 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> @@ -20,7 +22,7 @@
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.

    Hakemisto

    -

    Attributes and Queries are key features of Haiku. While attributes are useful on their own, to display additional information on a file, for a query on them, they need to be indexed. It puts them into a lookup table, which in turn makes queries lightning fast.
    -The index is part of the filesystem and is kept for every volume/partition separately.

    +

    Attribuutit ja Kyselyt ovat Haikun avainominaisuuksia. Kun attribuutit ovat hyödyllisiä sellaisenaan, lisätietojen näyttämiseksi tiedostosta, niiden kyselemiseksi attribuutit on indeksoitava. Se laittaa ne hakutauluun, joka vuorostaan tekee kyselyt salamannopeiksi.
    +Indeksi on tiedostojärjestelmän osa ja se pidetään jokaisella taltiolla tai osiolla erikseen.

    -

    -Indexing commands in Terminal

    -

    There are several commands to manage the index:

    +

    Indeksointikomennot Pääteikkunassa

    +

    Indeksin käsittelemiseen on useita komentoja:

      -
    • lsindex - Displays the indexed attributes on the current volume/partition.
      -These are the attributes that are indexed by default:
    • +
    • lsindex - Näyttää indeksoidut attribuutit nykyiseltä taltiolta/osiolta.
      +Nämä ovat oletuksena indeksoidut attribuutit:
     ~ ->lsindex 
     BEOS:APP_SIG 
    @@ -104,60 +106,59 @@ name
     size 
     
      -
    • mkindex - Adds an attribute to the index of a volume/partition.
    • +
    • mkindex - Lisää attribuutin taltion/osion indeksiin.
    -
    Usage: mkindex [options] <attribute> 
    -Creates a new index for the specified attribute. 
    +
    Käyttö: mkindex [valitsimet] <attribuutti> 
    +Luo uuden indeksin määrätylle attribuutille. 
      
    -  -d, --volume=PATH     a path on the volume to which the index will be added, 
    -                        defaults to current volume. 
    -  -t, --type=TYPE       the type of the attribute being indexed.  One of "int", 
    -                        "llong", "string", "float", or "double". 
    -                        Defaults to "string". 
    -      --copy-from       path to volume to copy the indexes from. 
    -  -v, --verbose         print information about the index being created 
    +  -d, --volume=POLKU    polku taltioon, johon indeksi lisätään, 
    +                        oletuksena nykyinen taltio. 
    +  -t, --type=TYYPPI      indeksoitavan attribuutin tyyppi.  Yksi seuraavista: "int", 
    +                        "llong", "string", "float", tai "double". 
    +                        Oletus on "string". 
    +      --copy-from       polku taltioon, josta indeksit kopioidaan. 
    +  -v, --verbose         tulosta tiedot luodusta indeksistä 
     
     
    -

    Only new files with that attribute come automatically into the index!
    -Existing files have to be added manually by copying them and deleting the originals after that. Alternatively you can use the command reindex. +

    Vain uudet tiedostot, joilla on attribuutti, indekstoidaan automaattisesti!
    +Olemassa olevat tiedostot on lisättävä manuaalisesti kopioimalla ne ja poistamalla alkuperäiset sen jälkeen. Vaihtoehtoisesti voit käyttää komentoa reindex.

      -
    • reindex - Puts the attributes of existing files into the newly created index of a volume/partition.
    • +
    • reindex - Laittaa olemassa olevien tiedostojen attribuutit vasta luotuun taltion/osion indeksiin.
    -
    Usage: reindex [-rvf] attr <list of filenames and/or directories> 
    -  -r    enter directories recursively
    -  -v    verbose output
    -  -f    create/update all indices from the source volume,
    -        "attr" is the path to the source volume
    +
    Käyttö: reindex [-rvf] attr <tiedostonimien ja/tai hakemistojen luettelo> 
    +  -r    liiku hakemistoista rekursiivisesti
    +  -v    tulosta laveasti
    +  -f    luo/päivittää kaikki indeksit lähdetaltiosta,
    +        "attr" on polku lähdetaltioon
     
     
      -
    • rmindex - Removes an attribute from the index of a volume/partition.
    • +
    • rmindex - Poistaa attribuutin taltion/osion indeksistä.
    -
    Usage: rmindex [OPTION]... INDEX_NAME 
    +
    Käyttö: rmindex [VALITSIN]... INDEKSI_NIMI 
      
    -Removes the index named INDEX_NAME from a disk volume.  Once this has been 
    -done, it will no longer be possible to use the query system to search for 
    -files with the INDEX_NAME attribute. 
    +Poistaa indeksin nimeltään INDEKSI_NIMI levytaltiosta.  Heti kun tämä on tehty, ei ole enää mahdollista käyttää kyselyjärjestelmää tiedostojen 
    +etsimiseen INDEKSI_NIMI-attribuutilla. 
      
    -  -d, --volume=PATH     a path on the volume from which the index will be 
    -                         removed 
    -  -h, --help            display this help and exit 
    -  -p, --pattern         INDEX_NAME is a pattern 
    -  -v, --verbose         print information about the index being removed 
    +  -d, --volume=POLKU    polku taltioon, josta indeksi 
    +                         poistetaan 
    +  -h, --help            näytä opaste ja poistu 
    +  -p, --pattern         INDEKSI_NIMI on malli 
    +  -v, --verbose         tulosta tiedot poistettavasta indeksistä 
      
    -INDEX_NAME is the name of a file attribute. 
    +INDEKSI_NIMI on tiedostoattribuutin nimi. 
      
    -If no volume is specified, the volume of the current directory is assumed.
    +Jos taltiota ei ole määritelty, otaksutaan taltio, jossa nykyinen hakemisto sijaitsee.
    diff --git a/docs/userguide/fi/keyboard-shortcuts.html b/docs/userguide/fi/keyboard-shortcuts.html index 895af83ddc..86a3c65775 100644 --- a/docs/userguide/fi/keyboard-shortcuts.html +++ b/docs/userguide/fi/keyboard-shortcuts.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Shortcuts and key combinations + Pikanäppäimet ja näppäinyhdistelmät
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    Shortcuts and key combinations

    +

    Pikanäppäimet ja näppäinyhdistelmät

    -

    By default, Haiku's shortcut key, to invoke commands from menus for example, is not the usual CTRL key, but ALT instead. This has historical reasons, because the BeOS was inspired somewhat by MacOS. After you get used to it, it actually has advantages as e.g. ALT C and ALT V integrate seamlessly into the bash shell of the Terminal, where CTRL C quits the running process.

    -

    In any case, you can switch to the maybe more familiar CTRL key in the Keymap preferences. The user guide always describes the default configuration with the command key being ALT.

    -

    If you're in doubt which keys are the OPT or MENU keys on your particular keymap/keyboard-layout, again use the Keymap preferences. There you can see what keystroke is sent when you press a key on your keyboard.

    +

    Haikun oletuspikanäppäin esimerkiksi komentojen kutsumiseksi valikosta ei ole tavallinen CTRL-näppäin, vaan sen sijaan ALT-näppäin. Tällä on historiallisia syitä MacOS antoi vaikutteita BeOS-käyttöjärjestelmään. Kun siihen tottuu, siitä on etua, esim.: ALT C ja ALT V integroituvat saumattomasi Pääteikkunan bash-komentotulkkiin, missä CTRL C poistuu suoritettavasta prosessista.

    +

    Joka tapauksessa voit vaihtaa tutumpaan CTRL-näppäimeen Näppäimistökuvaus-sovelluksessa. Käyttöopas kuvaa oletusasetuksen, jossa komentonäppäin on ALT.

    +

    Jos sinulla on epäilystä siitä, että mikä näppäin Alt Gr tai MENU tietyssä näppäinkuvauksessa tai näppäimistöasettelusssa, käytä taas Näppäimistökuvaus-sovellusta. Siellä näet, että mikä näppäinlyönti lähetetään, kun painat näppäimistön näppäintä.

    index -General shortcuts

    -

    Here's a table of many of the most commonly used shortcuts that are always available, even if there isn't a corresponding menu:

    +Yleiset pikanäppäimet +

    Tässä on luettelo monista yleisesti käytetyistä pikanäppäimistä, jotka ova käytettävissä, vaikka niille ei ole aina vastaavaa valikkoa:

    - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + +
    ALT FxSwitches to Workspace X (Fx is the function key corresponding to that workspace). Take the active window with you by adding SHIFT
    CTRL ALT / / / Navigates spatially the rows/columns of the available workspaces. Add SHIFT to take the active window with you.
    OPTHolding OPT while dragging a window near another window's tab or border will stack or tile them (see chapter GUI).
    CTRL ALT + left mouseClick and drag with left mouse button to move a window (see chapter GUI).
    CTRL ALT + right mouseClick and drag with right mouse button to resize a window (see chapter GUI).
    CTRL ALT ZZooms a window to an alternative size (maximum size for most applications).
    CTRL ALT MMinimizes the active window.
    CTRL ALT HHides (minimizes) all windows of the active application.
    CTRL ALT FPulls the active window to the front (only applicable with the mouse setting Focus Follows Mouse).
    CTRL ALT BSends the active window to the back.
    CTRL TABHold down to bring up the Twitcher.
    CTRL ALT DELOpens the Team Monitor.
    ALT ESCEnters the menu bar (leave with ESC).
    ALT CCopies the selection to the clipboard.
    ALT XCuts the selection to the clipboard.
    ALT VPastes the clipboard's contents.
    ALT WCloses the active window.
    ALT QQuits an application.
    PRINTTakes a screenshot with zero delay and launches the Screenshot panel.
    SHIFT PRINTTakes a screenshot silently (without opening the panel), while still respecting the last used settings.
    CTRL PRINTAlso takes a screenshot silently with the saved settings, but instead of saving it as a file, it's just copied to the clipboard.
    ALT FxVaihtaa Työtila X:ään (Fx on funktionäppäin, joka vastaa työtilaa). Ota aktiivi ikkuna mukanasi lisäämällä yhdistelmään VAIHTO-näppäimen
    CTRL ALT / / / Navigoi avaruudellisesti käytettävissä olevien työtilojen rivejä tai sarakkeita. Lisää yhdistelmään VAIHTO niin saat aktiivin ikkunan mukanasi.
    Alt Gr/OPTNäppäimen Alt Gr pitäminen alhaalla raahattaessa ikkuna lähelle toisen ikkunan välilehteä tai reunaa aiheuttaa niiden pinoamisen tai asettumisen rinnakkaisiksi tiiliksi (katso kappale Haikun graafinen käyttöliittymä).
    CTRL ALT + hiiren ykköspainikeNapsauttaminen ja raahaaminen hiiren ykköspainikkeella siirtää ikkunan (see chapter Haikun graafinen käyttöliittymä).
    CTRL ALT + hiiren kakkospainikeNapsauttaminen ja raahaaminen hiiren kakkospainikkeella muuttaa ikkunan koon (see chapter Haikun graafinen käyttöliittymä).
    CTRL ALT ZLoitontaa tai lähentää ikkunan toisen kokoiseksi (useimmissa sovelluksissa enimmäiskokoon).
    CTRL ALT MMinimoi aktiivin ikkunan.
    CTRL ALT HPiilottaa (minimoi) aktiivin sovelluksen kaikki ikkunat.
    CTRL ALT FVetää aktiivin ikkunan päällimmäiseksi (käytössä vain hiiriasetuksella Kohdistus seuraa hiirtä).
    CTRL ALT BLähettää aktiivin ikkunan taustalle.
    CTRL TABAlhaalla pitäminen tuo näkyviin Vaihtaja-sovelluksen.
    CTRL ALT DELAvaa Ryhmävalvonta-sovelluksen.
    ALT ESCSiirtyy valikkopalkkiin (poistuu ESC-näppäimellä).
    ALT CKopioi valinnan leikepöydälle.
    ALT XLeikkaa valinnan leikepöydälle.
    ALT VLiittää leikepöydän sisällön.
    ALT WSulkee aktiivin ikkunan.
    ALT QSulkee sovelluksen.
    PrtScrOttaa näytönkaappauksen viipeellä nolla ja käynnistää Näytönkaappaus-paneelin.
    VAIHTO PrtScrOttaa näytönkaappauksen hiljaa (avaamatta paneelia) samalla kun sovellus yhä kunnioittaa viimeksi käytettyjä asetuksia.
    CTRL PrtScrMyös tämä ottaa näytönkaappauksen hiljaa talletuilla asetuksilla, mutta tiedostoon tallentamisen sijasta kopioi sen vain leikepöydälle.

    index -Shortcuts for Tracker navigation

    -

    Additionally to the general shortcuts, here are some more for navigating with Tracker:

    +Seuraaja-navigoinnin pikanäppäimet +

    Lisäksi Seuraaja-navigoinnissa on joitakin yleisiä pikanäppäimiä:

    - - - - - - + + + + + +
    ALT Opens the parent folder.
    ALT or ENTEROpens the selected folder.
    OPTHolding it while opening a folder will automatically close the parent folder. This also works when navigating with the mouse.
    MENUOpens the Deskbar menu (leave with ESC).
    ALT ZUndo last action. The undo history is only limited by the available memory. Note, this only works for actions on the file itself, changed attributes and permission settings can't be undone with this. Also, once a file is removed from Trash it's gone for good.
    ALT SHIFT ZRedo the action you just reverted with ALT Z.
    ALT Avaa ylätason kansion.
    ALT tai ENTERAvaa valitun kansion.
    Alt Gr/OPTPitämällä näppäintä alhaalla kansiota avatessa ylemmän tason kansio sulkeutuu automaattisesti. Tämä toimii myös navigoitaessa hiirellä.
    MENUAvaa Työpöytäpalkin (poistuu ESC-näppäimellä).
    ALT ZPeru viimeisin toiminto. Perumishistoriaa rajoittaa vain käytettävissä oleva muisti. Huomaa, tämä toimii vain itse tiedostotoiminnoille, muuttuneet attribuutit ja käyttöoikeusasetukset ei voida perua tällä. Myös kun tiedoston on siirretty Roskakoriin, niin se on mennyt iäksi.
    ALT VAIHTO ZTee juuri palautettu toiminto uudelleen näppäimillä ALT Z.

    index -Shortcuts in Terminal

    +Pikanäppäimet pääteikkunassa - - - - - - - - - - - - - - - + + + + + + + + + + + + + + +
    ALT NOpens another Terminal session in a new window.
    ALT TOpens another Terminal session in a new tab.
    ALT 1, 2, 3 ...Switches to the corresponding tab.
    ALT TABSwitches to the next Terminal window.
    SHIFT / Switches to the tab to the left/right.
    ALT SHIFT / Moves the current tab left/right.
    ALT + / -Increase/Decrease font size.
    ALT ENTEREnter/leave fullscreen mode.
    SHIFT / Scrolls the Terminal output up/down one line.
    SHIFT Page↑ / Page↓ Scrolls the Terminal output up/down one page.
    TABTab-completion. After entering a few letters, press TAB once to auto-complete a filename or path. If there is more than one match, it stops where the name starts to differ and you have to provide some more letters to further distinguish them. You can also press TAB twice to have all matches listed.
    / Moves up or down in a history of all previously entered commands.
    CTRL RBash history. All the commands you enter -are stored in the file ~/.bash_history. Press CTRL R and start to enter a command and you'll be provided with the first match from the bash history. Keep pressing CTRL R until you find the right command line and press ENTER to execute it.
    CTRL CStops the currently running command.
    CTRL DCloses the current Terminal session.
    ALT NAvaa toisen Pääteikkunaistunnon uudessa ikkunassa.
    ALT TAvaa toisen Pääteikkunaistunnon uudessa välilehdessä.
    ALT 1, 2, 3 ...Vaihtaa vastaavaan välilehteen.
    ALT SARKAINVaihtaa seuraavaan Pääteikkuna-ikkunaan.
    VAIHTO / Vaihtaa välilehteen vasemmalla tai oikealla.
    ALT VAIHTO / Siirtää nykyisen välilehden vasemmalle tai oikealle.
    ALT + / -Kasvattaa tai pienentää kirjasinkokoa.
    ALT ENTERKokoruutunäyttöön siirtyminen tai siitä poistuminen.
    SHIFT / Vierittää Pääteikkunan tulostuksen rivin ylöspäin tai alaspäin.
    VAIHTO PgUp / PgDnVierittää Pääteikkunan tulosteen sivun ylöspäin tai alaspäin.
    SARKAINSarkain-täydentäminen. Paina muutaman kirjaimen kirjoittamisen jälkeen SARKAIN-näppäintä kerran, mikä täydentää tiedostonimen tai -polu. Jos on useampia kuin yksi täsmäys, se pysähtyy siellä, missä nimi eroaa ja sinun on tarjottava lisäkirjaimia niiden jatkoerottelemiseksi. Voit myös painaa SARKAIN-näppäintä kahdesti saadaksesi luettelon kaikista täsmäävistä.
    / Siirtyy ylös tai alas kaikkien aiemmin kirjoitettujen komentojen historiassa.
    CTRL RBash-historia. Kaikki kirjoitetut komennot tallennetaan tiedostoon ~/.bash_history. Paina näppäimiä CTRL R ja aloita komennon kirjoittaminen, ja sinulle tarjotaan esimmäistä täsmäystä bash-historiasta. Pidä näppäimet CTRL R alhaalla kunnes löydät oikean komentorivikomennon ja painat ENTER-näppäintä sen suorittamiseksi.
    CTRL CPysäyttää parhaillaan suoritettavan komennon.
    CTRL DSulkee nykyisen Pääteikkuna-istunnon.

    index -Other key combinations

    -

    You can add or remove items to/from a selection by holding down a modifier key while clicking on a entry (or file in case of Tracker).

    +Muut näppäinyhdistelmät +

    Voit lisätä tai poistaa riviä valinnasta pitämällä alhaalla muunnosnäppäintä samalla kun napsautetaan riviä (tai Seuraaja-tapauksessa tiedostoa).

    - - + +
    SHIFTThis will select everything between the first selected item and the one you click on.
    ALTAdds or removes the item you're clicking on from the selection.
    VAIHTOTämä valitsee kaikki ensimmäisen valitun rivin ja parhaillaan napsautetun välillä.
    ALTLisää tai poistaa valitun rivin valinnasta.
    -

    In a Tracker window, if you just start typing, Tracker scrolls to and selects the file that best fits your incremental search. If there's no file starting with your typed letters, files that contain the search string anywhere in their name or other displayed attributes are selected. This search is not case-sensitive.
    -The letters you type appear at the bottom-left, where normally the number of items is listed. After a second it reverts back and you could start a new incremental search.
    -Instead of jumping to the first occurrence of your search string, Tracker can be configured to filter out all non-matching files. See the topic on type-ahead filtering.

    +

    Jos aloitat juuri kirjoittamisen Seuraaja-ikkunassa, Seuraaja vierittää edelleen ja valitsee tiedoston, joka parhaiten sopii askelkasvatushakuu. Jos ei ole tiedostoja, joiden nimi alkaa kirjoitetuilla kirjaimilla, näytetään tiedostot, joiden nimessä tai muussa näytetyssä attribuutissa on kirjoitetut kirjaimet missä kohtaa tahansa. Tämä haku ei ole kirjainkoosta riippuvaa.
    +Kirjoittamasi kirjaimet ilmaantuvat alhaalle vasemmalle, missä on normaalisti lueteltujen kohteiden määrä. Sekunnin kuluttua se palaa takaisin ja voisit alkaa uuden askelkasvatusetsinnän.
    +Sen sijaan että hyppäisin hakumerkkijonon ensimmäiseen ilmentymään, Seuraaja voidaan asettaa suodattamaan pois kaikki ei täsmäävät tiedostot. Katso aiheesta kirjoita eteenpäin -suodatus.

    diff --git a/docs/userguide/fi/preferences.html b/docs/userguide/fi/preferences.html index 35829d6a4e..6c3f081786 100644 --- a/docs/userguide/fi/preferences.html +++ b/docs/userguide/fi/preferences.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Preferences + Asetukset
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    Preferences

    +

    Asetukset

    -

    While a key philosophy of Haiku is to cut down on options and have sensible defaults instead, there are some things that have to be configured or can be set to individual preference. You find all panels in Deskbar's Preferences menu.

    +

    Vaikka Haikun avainfilosofia on vähentää valitsimia ja käyttää sen sijaan järkeviä oletuksia, joitakin asetuksia on tehtävä tai voidaan asettaa henkilökohtaisissa asetuksissa. Löydät kaikki paneelit Työpöytäpalkin Asetukset-valikossa.

    - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + +
    iconAppearance Configure certain aspects of the graphical interface.
    iconBackgrounds Set a color or image as background of the Desktop or any other folder.
    iconDataTranslations Settings for all supported file formats.
    iconDeskbar Configure the Deskbar.
    iconE-mail Configure your email accounts.
    iconFileTypes Add, remove and configure filetypes.
    iconFonts Set your system fonts.
    iconKeyboard Configure repeat delay and rate.
    iconKeymap Set the mapping of your keyboard.
    iconLocale Set your system language and formatting.
    iconUlkoasu Aseta graafisen käyttöliittymän tiettyjä aspekteja.
    iconTausta-asetukset Aseta Työpöydän tai minkä tahansa kansion taustan väri tai kuva.
    iconTietomuuntimet Kaikkien tuettujen tiedostomuotojen asetukset.
    iconTyöpöytäpalkki Aseta Työpöytäpalkki.
    iconSähköposti Aseta sähköpostitilisi.
    iconTiedostotyypit Lisää, poista ja aseta tiedostotyyppejä.
    iconNäppäimistö Aseta toistoviive ja -nopeus.
    iconNäppäinkuvaus Aseta näppäimistösi näppäinkuvaus.
    iconPaikallisasetukset Aseta järjestelmäkielesi ja -asetukset.
    iconMedia Audio and video settings like in/output devices and the system's audio mixer.
    iconMouse Configure your mouse.
    iconNetwork Configure your network.
    iconPrinters Add, remove and configure printers.
    iconScreen Configure resolution, depth, refresh rate and number of used Workspaces.
    iconScreenSaver Add, remove and configure a screen saver.
    iconSounds Assign sounds to different system events.
    iconTime Set time, date and timezone.
    iconTracker Configure Haiku's file manager.
    iconTouchpad Configure your touchpad.
    iconVirtualMemory Set the amount of swap space.
    Ääni- ja videoasetukset, kuten syöte-/tulostelaitteet ja järjestelmän äänisekoitin.
    iconHiiri Aseta hiiresi.
    iconVerkko Aseta verkkosi.
    iconTulostimet Lisää, poista ja aseta tulostimia.
    iconNäyttö Aseta resoluutio, syvyys, virkistystaajuus ja käytettyjen Työtilojen lukumäärä.
    iconNäytönsäästäjä Lisää, poista ja aseta näytönsäästäjä.
    iconÄänet Liittää ääniä eri järjestelmätapahtumiin.
    iconAika Aseta aika, päivämäärä ja aikavyöhyke.
    iconSeuraaja Aseta Haikun tiedostonhallinta.
    iconLevyhiiri Aseta levyhiiri.
    iconVirtuaalimuisti Aseta näennäismuistitilan määrä.
    @@ -105,9 +106,9 @@ diff --git a/docs/userguide/fi/preferences/appearance.html b/docs/userguide/fi/preferences/appearance.html index cb43843b83..417faf0141 100644 --- a/docs/userguide/fi/preferences/appearance.html +++ b/docs/userguide/fi/preferences/appearance.html @@ -4,7 +4,7 @@ - DataTranslations + Tietomuuntimet
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    datatranslations-icon_64.pngDataTranslations

    +

    datatranslations-icon_64.pngTietomuuntimet

    - +
    TyöpöytäpalkkiAsetukset
    Sijainti/boot/system/preferences/DataTranslations
    Asetukset~/config/settings/* - Every Translator creates its own settings file here after you've changes its defaults.
    -~/config/settings/system/DataTranslations settings - Stores the panel's window position.
    Asetukset~/config/settings/* - +Jokainen muunnin luo omat asetustiedostonsa tänne sen jälkeen kun olet muuttanut sen asetuksia
    ~/config/settings/system/DataTranslations settings - Tallentaa paneelin ikkunan sijainnin.
    -

    Every application has the ability to open and save every file format for which there's a Translator installed. The settings for these Translators are configured in the DataTranslations preferences.

    +

    Jokaisella sovelluksella on kyky avata ja tallentaa kaikissa niissä tiedostomuodoissa, joissa on Tietomuunnin asennettuna. Näiden muuntimien asetukset on asetettu Tietomuunninasetuksissa.


    datatranslations.png -

    Depending on its capabilities, each Translator offers different settings. At least you'll get an Info... button that opens a window with the credits and the installation path.
    -The following table gives an overview of the default Translators and their most useful options.

    +

    Muuntimen kyvyistä riippuen jokainen muunnin tarjoaa eri asetuksia. Saat vähintään Tiedot...-painikkeen, joka avaa ikkunan, jossa ilmoitetaan kehittäjätiedot ja asennuspolku.
    Seuraava taulukko esittää yhteenvedon oletusmuuntimista ja niiden hyödyllisimmistä valitsimista.

    - - - - - - - - - - - - - - - + + + + + + + + + + + + + + +
    BMP images24bit, uncompressed, no transparency
    EXR imagesILM's high dynamic-range (HDR) format
    GIF images8bit, lossless compression, transparency
    -You can reduce the filesize by limiting the number of used colors and the palette.
    -You can write images with transparency, either by automatically using the alpha channel or by setting the RGB value that will be transparent by hand.
    JPEG2000 images24bit, compressed, no transparency
    -Here, you normally only care about the output quality.
    JPEG images24bit, compressed, no transparency
    -Besides the output quality you can also set a smoothing that will lessen compression artefacts but can blur the picture a little.
    PCX images24bit, uncompressed, no transparency, PC Paintbrush Exchange format
    PNG images32bit, lossless compression, transparency
    PPM images24bit, uncompressed, no transparency, Portable PixMap format
    RAW imagesup to 48bit, uncompressed, no transparency
    RTF text filesFormatted text
    SGI images24bit, optional lossless compression, transparency
    StyledEdit filesFormatted text
    TGA images32bit, optional lossless compression, transparency
    TIFF images24bit, optional lossless compression, layers, transparency
    WonderBrush images32bit, layers, transparency, vector/pixel data
    BMP-kuvat24-bittinen, tiivistämätön, ei läpinäkyvyytt'ä
    EXR-kuvatILM:n jyrrkästi dynaaiisen alueen (HDR) -muoto
    GIF-kuvat8-bittinen, häviötön tiivistys, läpinäkyvyysVoit pienentää tiedostokokoa rajoittamalla käytettyjen värien määrää ja palettia.
    Voit tallentaa kuvat läpinäkyvyydellä joko automaattisesti käyttämällä alfa-kanavaa tai asettamalla manuaalisesti läpinäkyvän RGB-arvon.
    JPEG2000-kuvat24-bittinen, tiivistetty, ei läpinäkyvyyttä
    Tässä välität normaalisti vain tulostuslaadusta.
    JPEG-kuvat24-bittinen, tiivistetty, ei läpinäkyvyyttä
    Tulostuslaadun lisäksi voit asettaa myös pehmennyksen, joka vähentää tiivistysartefakteja, mutta voi sumentaa kuvaa hiukan.
    PCX-kuvat24-bittinen, tiivistämätön, ei läpinäkyvyyttä, PC Paintbrush -vaihtomuoto
    PNG-kuvat32-bittinen, häviötön tiivistys, läpinäkyvyys
    PPM-kuvat24-bittinen, tiivistämätön, ei läpinäkyvyyttä, siirrettävä PixMap -muoto
    RAW-kuvataina 48-bittiseen, tiivistämätön, ei läpinäkyvyyttä
    RTF-tekstitiedostotMuotoiltu teksti
    SGI-kuvat24-bittinen, valinnainen häviötön tiivistys, läpinäkyvyys
    Tyylitetty editori-tiedostotMuotoiltu teksti
    TGA-kuvat32-bittinen, valinnainen häviötön tiivistys, läpinäkyvyys
    TIFF-kuvat24-bittinen, valinnainen häviötön tiivistys, kerrokset, läpinäkyvyys
    WonderBrush-kuvat32-bittinen, kerrokset, läpinäkyvyys, vektori/pikselitiedot


    -
    Screenshots, charts, black&white drawings and other images with few used colors, as well as small pictures are best saved as GIF (up to 256 colors) or PNG (millions of colors). JPEG, for example, introduces compression artefacts without gain in smaller filesize.
    +
    Näytönkaappaukset, kaaviot, mustavalkoiset piirrokset ja muut kuvat muutamilla käytetyillä väreillä samoin kuin pienoiskuvat on paras tallentaa GIF-muodossa (aina 256 väriä) tai PNG-muodossa (miljoonia värejä). JPEG-muoto, esimerkiksi, esittelee tiivistysartefaktit ilman pienemmän tiedostokoon hyötyä.
    @@ -93,8 +91,8 @@ Besides the output quality you can also set a smoothing that will lessen compres diff --git a/docs/userguide/fi/preferences/deskbar.html b/docs/userguide/fi/preferences/deskbar.html index 0a8a70ac63..63d57054c2 100644 --- a/docs/userguide/fi/preferences/deskbar.html +++ b/docs/userguide/fi/preferences/deskbar.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Deskbar + Työpöytäpalkki
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    deskbar-icon_64.pngDeskbar

    +

    deskbar-icon_64.pngTyöpöytäpalkki

    @@ -59,7 +62,7 @@ ~/config/settings/Deskbar_security_code
    TyöpöytäpalkkiAsetukset
    Sijainti/boot/system/preferences/Deskbar


    -

    The Deskbar preference panel is also available from the Deskbar. Its settings are discussed in the topic on Deskbar.

    +

    Työpöytäpalkin asetuspaneeli on myös käytettävissä Työpöytäpalkista. Sen asetuksista keskustellaan aiheessa Työpöytäpalkki.

    @@ -67,8 +70,8 @@ - FileTypes + Tiedostotyypit
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    filetypes-icon_64.pngFileTypes

    +

    filetypes-icon_64.pngTiedostotyypit

    +~/config/settings/beos_mime/* - Tallentaa kaikki MIME-tyypit kansioina.
    TyöpöytäpalkkiAsetukset
    Sijainti/boot/system/preferences/FileTypes
    Asetukset~/config/settings/FileTypes settings
    -~/config/settings/beos_mime/* - Stores all MIME types as folders.
    -

    Please refer to topic Filetypes and the workshop Filetypes, Attributes, Index and Queries that explains most of this preference panel.

    +

    Viittaa aiheisiin Tiedostotyypit ja työpaja Tiedostotyypit, Attribuutit, Indeksi ja Kyselyt, jotka selittävät suurimman osan tästä asetuspaneelista.

    @@ -67,8 +70,8 @@ --> diff --git a/docs/userguide/fi/preferences/fonts.html b/docs/userguide/fi/preferences/fonts.html index d391ec351f..1ad66b7fb5 100644 --- a/docs/userguide/fi/preferences/fonts.html +++ b/docs/userguide/fi/preferences/fonts.html @@ -22,7 +22,7 @@
    +
    Tämän sivun kotoistaminen ei ole vielä täydellinen. Siihen asti keskeneräiset osat käyttävät englanninkielistä alkuperäistekstiä.
    + +

    Since "Fonts" moved into the Appearance panel, this is an outdated page. Do not translate!

    fonts-icon_64.pngKirjasinasetukset

    @@ -61,25 +66,25 @@


    fonts.png -

    Haiku määrittelee kolme vakiokirjasinta eri tarkoituksiin. Asetat pelkän, vahvennetun ja kiinteän kirjasintyypin ja koon, jota käytetään kautta järjestelmän. Näiden lisäksi on myös erillinen asetus valikoissa käytettävistä kirjasimista.

    +

    Haiku määrittää kolme vakiokirjasinta eri tarkoituksiin. Asetat pelkän, vahvennetun ja kiinteävälisen kirjasimen tyypit ja koot siten kuin haluat käyttää niitä koko järjestelmässä. Niiden lisäksi on erilliset asetukset valikoissa käytetyille kirjasimille.

    - - + +
    Oletukset nollaa kaikki oletusarvoihin.
    Palauta tuo takaisin asetukset, jotka olivat aktiivisia, kun käynnistit Kirjasinasetukset.
    Oletukset nollaa kaikki oletusarvoihin.
    Palauta tuo takaisin asetukset, jotka olivat aktiivisia, kun käynnistit Kirjasinasetukset.

    index Uusien kirjasimien asentaminen

    -

    Asennat uudet kirjasimet kopioimalla ne niiden vastaavaan käyttäjäkansioon, toisin sanoen /boot/common/data/fonts/ tai /boot/home/config/data/fonts/ (katso aihetta Tiedostojärjestelmäasettelu).

    +

    Asennat uudet kirjasimet kopioimalla ne vastaavaan käyttäjäkansioon, esim.: /boot/common/data/fonts/ tai /boot/home/config/data/fonts/ (katso aihe Tiedostojärjestelmäasettelu).

    diff --git a/docs/userguide/fi/preferences/keyboard.html b/docs/userguide/fi/preferences/keyboard.html index 3a16924fce..40a517884f 100644 --- a/docs/userguide/fi/preferences/keyboard.html +++ b/docs/userguide/fi/preferences/keyboard.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Keyboard + Näppäimistö
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    keyboard-icon_64.pngKeyboard

    +

    keyboard-icon_64.pngNäppäimistö

    @@ -59,10 +62,10 @@
    TyöpöytäpalkkiAsetukset
    Sijainti/boot/system/preferences/Keyboard


    keyboard.png -

    Set the repeat rate and the delay until a held down key starts to repeat. You can test your settings in the text field at the bottom.

    +

    Aseta toistonopeus ja viive siihen, kunnes näppäimen alaspainallus käynnistää toiston. Voit testata asetuksiasi tekstikentässä alhaalla.

    - +
    Oletukset nollaa kaikki oletusarvoihin.
    Palauta brings back the settings that were active when you started the Keyboard preferences.
    Palauta palauttaa asetukset, jotka olivat voimassa kun käynnistit Näppäimistöasetukset.
    @@ -71,9 +74,9 @@ diff --git a/docs/userguide/fi/preferences/keymap.html b/docs/userguide/fi/preferences/keymap.html index 9a90ea1c40..2b717a6625 100644 --- a/docs/userguide/fi/preferences/keymap.html +++ b/docs/userguide/fi/preferences/keymap.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Keymap + Näppäimistökuvaus
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    keymap-icon_64.pngKeymap

    +

    keymap-icon_64.pngNäppäimistökuvaus

    -
    TyöpöytäpalkkiAsetukset
    Sijainti/boot/system/preferences/Keymap
    Asetukset~/config/settings/Keymap/* - Location of user modified keymaps.
    +
    Asetukset~/config/settings/Keymap/* - Käyttäjän muokkaamien näppäimistökuvausten sijainti.
    ~/config/settings/Key_map


    keymap.png -

    To the right, the Keymap window shows a representation of your keyboard. When you press a key, the corresponding key is darkened and the assigned symbol is entered into the Sample and Clipboard text field at the bottom. From there you can also copy and paste it into a document.
    -Thus, the Keymap preferences are not only for configuring your local keymap, but are also useful when looking for a special symbol used in other languages. For example, you can switch the keymap to "French", find the "ç" and copy it into your mail to François. (Though you'll find the "cedil" also in other keymaps...)

    -

    Pressing modifier keys like SHIFT, CONTROL or OPTION changes the displayed keyboard accordingly.

    -

    Then there are the keys that are marked with a blue background. These keys are called Dead Keys that can change the key you press after that. If you click on such a blue key with your mouse, those changeable keys light up yellow. Click again and everything's back to normal. Examples are é, ñ, ó or ë.

    -

    Below the keyboard representation are two more options:

    +

    Yllä olevan kuvan oikealla puolella Näppäimistökuvaus-ikkuna näyttää esityksen näppäimistöstäsi. Kun painat näppäintä, vastaava painike kuvassa tummenee ja siihen liitetty symboli siirtyy Näyte ja leikepöytä-tekstikenttään alhaalla. Sieltä voit myös kopioida ja liittää sen asiakirjaan.
    +Siten Näppäimistökuvaus-asetukset eivät ole paikallisen näppäimistön asetukseen, vaan se on hyödyllinen etsittäessä tiettyä symbolia muissa kielissä. Esimerkiksi voit vaihtaa näppäimistöksi "French", löytää merkin "ç" ja kopioida sen sähköpostiviestiisi Françoisille. (Vaikka löydät ehkä "cedil":n myös muista näppäimistökuvauksista...)

    +

    Muuntonäppäimen kuten VAIHTO, CONTROL tai OPTION painaminen vaihtaa näytettyä näppäimistöä sitä vastaavasti.

    +

    Sitten näkyvissä on myös näppäimiä, joissa on sininen tausta. Näitä näppäimiä kutsutaa Kuolleiksi näppäimiksi, jotka voivat muuttaa näppäintä, jota painat seuraavaksi. Jos napsautat sellaista näppäintä hiirellä, muutettavat näppäimet näkyvät keltaisena. Napsauta uudelleen ja kaikki palautuu normaaliksi. Esimerkkejä ovat é, ñ, ó tai ë.

    +

    Alla näppäimistöesitykseen on kaksi lisävalitsinta:

    - - + +
    Select dead keys for setting the above mentioned blue keys.
    Switch shortcut key... for using the shortcut key in Windows/Linux mode, i.e. CONTROL (normally CTRL) or Haiku mode, i.e. COMMAND (normally ALT).
    Valitse kuolleet näppäimet yllä mainittujen sinisten näppäinten asettamiseksi.
    Vaihda pikanäppäimet... pikanäppäinten käyttämiseksi Windows-/Linux-tilassa, esimerkiksi. CONTROL (normaalisti CTRL) tai Haiku-tilassa, esimerkiksi COMMAND (normaalisti ALT).
    -

    The lists on the left offer the available pre-configured keymaps of the system, and below that, if available, user-defined maps. You can change a keymap via drag&drop in the keyboard representation: a left-click-drag copies a key, a right-click-drag exchanges the two keys.
    -When you're done you can save the result from the menu File | Save.... Your modified map will only appear in the user-defined list if it's stored in ~/config/settings/Keymap/. Otherwise you'll have to manually load it via File | Open....

    -

    To better match the Keymap panel to your physical keyboard, there are several different settings available from the Layout menu.

    -

    The font used in the keyboard representation is set from the Font menu. Note, that it may or may not contain all symbols for a specific keymap.

    -

    Finally, there's a Revert button to bring back the settings that were active when you started the Keymap preferences.

    +

    Vasemmalla näkyvät luettelot tarjoavat järjestelmän esiasetetut näppäimistökuvaukset ja alla on, jos niitä on saatavilla, käyttäjän määrittelemät kuvaukset. Voit vaihtaa näppäimistökuvausta raahaamalla ja pudottamalla näppäimistökuvauksessa: hiiren ykköspainike kopioi näppäimen ja hiiren kakkospainike vaihtaa kaksi näppäintä keskenään.
    +Kun omat muutoksesi ovat valmiita, voit tallentaa tuloksen valikosta Tiedosto | Tallenna.... Muokattu kuvauksesi ilmaantuu käyttäjämääriteltyyn luetteloon, jos se on tallennettu hakemistoon ~/config/settings/Keymap/. Muussa tapauksessa sinun on ladattava se manuaalisesti valikon Tiedosto | Avaa... kautta.

    +

    Jotta Näppäimistökuvaus täsmäisi paremmin fyysiseen näppäimistöösi, käytettävissä on useita erilaisia asetuksia Ulkoasu-valikossa.

    +

    Käytetyn näppäimistöesityksen kirjasimet asetetaan valikosta Kirjasin. Huomaa, määritellyssä kirjasimessa ei aina välttämättä ole tietyn näppäimistökuvauksen kaikkia merkkejä.

    +

    Lopuksi käytettävissä on Palauta-painike, joka palauttaa asetukset sellaisiksi, kuin ne olivat Näppäimistöasetukset-sovelluksen käynnistyessä.

    index -Advanced keymap manipulation

    -

    There's another method to customize your keymap besides the Keymap preference panel. It involves editing a text file containing loads of hex values, which may appear daunting on first sight, but isn't really that impossible to grasp.

    -

    You can dump the current keymap with a command in Terminal:

    +Edistynyt näppäimistökuvausmanipulointi +

    Näppäimistökuvausasetusten lisäksi on myös toinen tapa räätälöidä näppäimistökuvaustasi. Se sisältää heksadesimaaliarvoja sisältävän tekstitiedoston muokkaamisen, mikä voi tuntua ensi silmäykseltä pelottavalta, mutta ei lopulta ole mahdotonta tajuta.

    +

    Voit vedostaa nykyisen näppäimistökuvauksesi komennolla Pääteikkunassa:

    keymap -d > MyKeymap
    -

    The generated text file can then be opened in a text editor. Make sure to use a fixed font in that editor or you'll never grok that file...
    -At the beginning of that file, you'll find a legend of a stylized keyboard with the hex value corresponding to each key. Below that are the actual assignments of every value. You can do all the customizing that's also available from the Keymap preference panel, and then some. If you happen to have some special keys on your keyboard, you may be able to activate them. That is, use them as ordinary keys or like an option or control key. You won't be able to, for example, have your multimedia keys de/increase the volume or start some application. For this you can use e.g. SpicyKeys.

    -

    When you're finished, you'll save the file and have your system load the modified keymap with this command:

    +

    Tuotettu tekstitiedosto voidaan avata tekstieditorilla. Varmista, että käytät tasavälisiä kirjasimia tuossa editorissa tai et saa tuota tiedostoa koskaan oikein...
    +Tuon tiedoston alusta löydät tyylitellyn näppäimistön selitteen, jossa jokaista näppäintä vastaa heksadesimaaliarvo. Sen alla on jokaisen jokaisen arvon todelliset liittämiset. Voit tehdä kaikki räätälöinnit, jotka ovat myös saatavilla Näppäimistökuvausasetusten paneelissa, jo vielä jotain muuta. Jos näppäimistössä sattuu olemaan joitain erikoisnäppäimiä, voit ehkä kokeilla niiden aktivoimista. Se tarkoittaa, että voit käyttää niitä tavallisina näppäiminä tai muuntonäppäiminä, kuten Alt- tai Ctrl-näppäimiä. Et kykene esimerkiksi käyttämään multimedianäppäimisiä pienentämään tai suurentamaan äänen voimakkuutta tai käynnistämään jonkun sovelluksen. Tätä varten voit käyttää esimerkiksi SpicyKeys.

    +

    Kun olet valmis, tallenna tiedosto ja järjestelmä lataa muokatun näppäimistökuvauksen tällä komennolla:

    keymap -s < MyKeymap
    -

    If you'd like to import this keymap into the Keymap panel, you have to compile it first to a binary format:

    +

    Jos haluat viedä tämän näppäimistökuvauksen Näppäimistökuvaus-paneeliin, se on ensin käännettävä binaarimuotoon:

    keymap -c < MyKeymap
    -

    This will produce a file keymap.out which you can load into Keymap via its Open... menu. By the way, the keymap command is able to load this binary format as well: keymap -l < keymap.out

    -

    This is the dumped file (the rightmost keys of the stylized keyboard are cut-off for a nicer display on this page):

    +

    Tämä tuottaa tiedoston keymap.out, jonka voit ladata Näppämistökuvaukseen sen Avaa...-valikosta. Keymap-komento kykenee lataamaan tämän binaarimuodon myös seuraavalla tavalla: keymap -l < keymap.out

    +

    Tämä on vedostettu tiedosto (tyylitetyn näppäimistön oikeanpuoleisimmat näppäimet on leikattu pois, jotta teksti näkyisi nätimmin tällä sivulla):

    #!/bin/keymap -s
     #
    @@ -370,9 +373,9 @@ TildeTab = Normal Shift Option Option-Shift CapsLock CapsLock-Shift CapsLock-Opt
     
     
     
    diff --git a/docs/userguide/fi/preferences/locale.html b/docs/userguide/fi/preferences/locale.html
    index aa369c8c07..e64106fae8 100644
    --- a/docs/userguide/fi/preferences/locale.html
    +++ b/docs/userguide/fi/preferences/locale.html
    @@ -10,18 +10,20 @@
      * Authors:
      *		Humdinger 
      *		Gerard Stanczak (Google Code-In student)
    + * Translators:
    + *		Karvjorm
      *
     -->
     	
     	
     	
    -	Locale
    +	Paikallisasetukset
     	
     
     
     
     
     
     
     
     
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    mouse-icon_64.pngMouse

    +

    mouse-icon_64.pngHiiri

    @@ -59,20 +62,20 @@
    TyöpöytäpalkkiAsetukset
    Sijainti/boot/system/preferences/Mouse


    mouse.png -

    First you set your type of mouse: 1, 2 or 3 button mouse. You can simulate the 2nd (=right) mouse button by holding down CTRL while left-clicking. For the 3rd (=middle) mouse button, it's CTRL ALT and a left-click.

    -

    You can rearrange the mouse buttons by clicking on them and choosing their new meaning from the pop-up menu.

    -

    With the sliders to the right, you adjust double-click speed, mouse speed and acceleration. The test area below the mouse graphics can be used to check if the double-click speed meets your taste: if double-clicking a word doesn't select it, it's set too fast (or you'll have to get used to clicking quicker....

    -

    There are three Focus modes that determine how windows react to clicks:

    +

    Asetat ensimmäisenä hiiresi tyypin: 1-, 2- tai 3-painikkeinen hiiri. Voit matkia 2. (=oikeaa) hiiren painiketta pitämällä alhaalla CTRL-näppäintä samalla kun napsautat vasemmalla painikkeella. Hiiren 3. (=keskimmäinen) painiketta varten voit käyttää CTRL- ja ALT-näppäintä sekä hiiren vasenta painiketta.

    +

    Voit järjestää uudelleen hiiren painikkeet napsauttamalla niitä ja valitsemalla uusi merkitys ponnahdusvalikosta.

    +

    Oikealla olevilla liukukytkimillä voit säätää kaksoisnapsautuksen nopeutta, hiiren nopeutta ja kiihtyvyyttä. Testialuealuetta hiiren graafisen kuvan alla voidaan käyttää tarkistamaan, että kaksoisnapsautusnopeus vastaa omaa makuasi: jos kaksoisnapsautus ei valitse sitä se asettuu liian nopeasti (tai sinun on totuttava napsauttamaan nopeammin....

    +

    Ikkunat reagoivat hiiren napsautuksiin kolmen Kohdistustila-valikon määrittelyn mukaisesti:

    - - - + + +
    Click to focus and raise This is the default setting: you click a window and it gets focus and is raised to the top.
    Click to focus Clicking a window only gives it the focus, but won't raise it automatically. To do that, you'd have to either click on its title tab or border or click anywhere while holding the window management keys CTRL ALT.
    Focus follows mouseThe window under the mouse pointer automatically gets the focus. Actually raising it, is done as described in the Click to focus mode.
    Napsauta kohdistusta ja nostoa varten Tämä on oletusasetus: napsautat ikkunaa, se saa kohdistuksen ja nousee päällimmäiseksi.
    Napsauta kohdistamista varten Ikkunan napsauttaminen antaa sille kohdistuksen, mutta ei nosta sitä automaattisesti. Sen tekemiseksi sinun on joko napsautettava sen otsaketta tai rajaa tai napsauttaa mihin tahansa pitäen samalla ikkunan hallintanäppäimiä CTRL ALT alhaalla.
    Kohdistin seuraa hiirtäHiiren kohdistimen alla oleva ikkuna saa automaattisesti kohdistuksen. Sen todellinen nostaminen päällimmäiseksi tapahtuu, kuten on kuvatu valikossa Napsauta kohdistamista varten
    -

    Activating Accept first click relieves you of having to first put the focus on an inactive window in order to trigger widgets like a button or menu. This bears the risk of unintentionally closing a window, for example, by accidentally hitting the close button when aiming for the window tab. On the other hand it speeds up your workflow considerably.

    -

    All settings are immediately applied.

    +

    Aktivoimalla Hyväksy ensimmäinen napsautus vapauttaa sinut laittamasta ensin kohdistuksen epäaktiiviin ikkunaan, jotta voit aktivoida käyttöliittymäkomponentin kuten painikkeen tai valikon. Tämä sisältää riskin ikkunan sulkemisesta tahattomasti, esimerkiksi lyömällä vahingossa sulje-painiketta, kun tähdätään ikkunan välilehteen. Toisaalta se nopeuttaa työnkulkuasi merkittävästi.

    +

    Kaikki asetukset toteutetaan välittömästi.

    - +
    Oletukset nollaa kaikki oletusarvoihin.
    Palauta brings back the settings that were active when you started the Mouse preferences.
    Palauta tuo takaisi asetukset, jotka olivat voimassa Hiiriasetus-sovellusta käynnistettäessä.
    @@ -81,8 +84,8 @@ diff --git a/docs/userguide/fi/preferences/network.html b/docs/userguide/fi/preferences/network.html index c2b11c3f97..58646721d5 100644 --- a/docs/userguide/fi/preferences/network.html +++ b/docs/userguide/fi/preferences/network.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Network + Verkkoasetukset
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    network-icon_64.pngNetwork

    +

    network-icon_64.pngVerkkoasetukset

    @@ -59,11 +62,11 @@
    TyöpöytäpalkkiAsetukset
    Sijainti/boot/system/preferences/Network


    network.png -

    At the top, you choose which network adapter to configure.

    -

    Then you specify if you get your network automatically (via DHCP) or if you're using static addresses. If it's the latter, you'll have to fill out IP Address, Netmask, Gateway and DNS Servers yourself. Otherwise the panel will show the addresses currently set with DHCP.

    +

    Ylimpänä valitset asetettavan verkkoadapterin.

    +

    Sitten määrität, että haetaanko verkko automaattisesti (DHCP:n kautta) vai käytetäänkö staattisia osoitteita. Jälkimmäisessä tapauksessa on täytettävä IP-osoite, verkkopeite, yhdyskäytävä ja omat DNS-palvelimesi. Muussa tapauksessa paneeli näyttää DHCP:n asettamat nykyiset osoitteet.

    - - + +
    Palauta brings back the settings that were active when you started the Network preferences.
    Käytä sets the entered configuration.
    Palauta palauttaa takaisin ne asetukset, jotka olivat voimassa, kun Verkkoasetukset-sovellus käynnistettiin.
    Käytä ottaa kirjoitetun asetuksen käyttöön.
    @@ -72,9 +75,9 @@ diff --git a/docs/userguide/fi/preferences/printers.html b/docs/userguide/fi/preferences/printers.html index 7a2d74deb2..f1f2768de7 100644 --- a/docs/userguide/fi/preferences/printers.html +++ b/docs/userguide/fi/preferences/printers.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Printers + Tulostimet
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    printers-icon_64.pngPrinters

    +

    printers-icon_64.pngTulostimet

    TyöpöytäpalkkiAsetukset
    Sijainti/boot/system/preferences/Printers
    Asetukset~/config/settings/printers/*
    -

    Documentation is still missing. If you want to work on it, please announce it on the Documentation mailing list to avoid duplication.

    +

    Dokumentaatio puuttuu yhä. Jos haluat tehdä sen kanssa työtä, ilmoita siitä Dokumentaation sähköpostilistalla kaksinkertaisen työn välttämiseksi.

    @@ -65,9 +68,9 @@ diff --git a/docs/userguide/fi/preferences/screen.html b/docs/userguide/fi/preferences/screen.html index af95825fd7..1bc32ade5e 100644 --- a/docs/userguide/fi/preferences/screen.html +++ b/docs/userguide/fi/preferences/screen.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Screen + Näyttöasetukset
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    screen-icon_64.pngScreen

    +

    screen-icon_64.pngNäyttöasetukset

    +~/config/settings/kernel/drivers/vesa - Vain kun suoritetaan VESA-tilassa.
    +~/config/settings/Screen_data - Tallentaa paneelin ikkunasijainnin.
    TyöpöytäpalkkiAsetukset
    Sijainti/boot/system/preferences/Screen
    Asetukset~/config/settings/system/app_server/workspaces
    -~/config/settings/kernel/drivers/vesa - Only when running in VESA mode.
    -~/config/settings/Screen_data - Stores the panel's window position.
    -

    Each of your workspaces can have its own resolution, color depth and refresh rate.

    +

    Jokaisella työtilallasi voi ola oma resoluutio, värisyvyys ja virkistystaajuus.

    screen.png -

    The top menu specifies if your changes are applied only to the current or to all workspaces. Depending on your graphics card, the other menus contain all supported resolution, color depth and refresh rate settings.

    -

    After clicking on Apply, the graphics mode is changed and an alert appears, asking you to keep or cancel the changes. If you don't answer that alert, the graphics mode reverts after 12 seconds to the previous setting. Maybe you couldn't see the alert because your monitor didn't support the setting.

    -

    To the left, you see a representation of your screen with the manufacturer and model it reports and it's resolution in dots per inch (dpi). Hovering the mouse pointer over it shows a tooltip with the name of graphics card if it's supported by a driver. Otherwise it says "VESA", the quick fallback solution that works with pretty much every hardware.

    -

    Revert brings back the setting that was active when you started the Screen preferences.

    -
    While Haiku's VESA mode performs very well, you may experience some limitations. You may not be able to drive your widescreen display in its native resolution, resulting in a somewhat blurred picture. There may also be limitations with regard to available color depths and refresh rates.
    -

    To the bottom left you can set the number of workspaces and arrange them in columns and rows and open the Backgrounds preferences.

    +

    Ylimmässä valikossa määrität, että koskeeko muutokset vain nykyistä työtilaa vai kaikkia työtiloja. Grafiikkakortistasi riippuen toiset valikot sisältävät kaikki tuetut resoluutio-, värisyvyys- ja virkistystaajuusasetukset.

    +

    Painikkeen Sovella napsauttamisen jälkeen grafiikkatila vaihtuu ja näkyviin ilmaantuu hälytysikkuna, joka kysyy, että pidetäänkö vai hylätäänkö muutokset. Jos et vastaa tuohon hälytykseen, grafiikkatila palaa entisiin asetuksiin 12 sekunnin kuluttua. Et ehkä näe hälytysikkunaa, jos näyttösi ei tue asetuksia.

    +

    Vasemmalla näet näyttösi esittelyn sillä valmistajalla ja mallilla, jonka se ilmoittaa ja sen resoluution pisteinä per tuuma (dpi). Hiiren kohdistimen pitäminen sen yllä näyttää työkaluvihjeen, joka kertoo grafiikkakortin nimen ja mitä ajuria se tukee. Muussa tapauksessa se sanoo "VESA", nopea vararatkaisu, joka toimi lähes jokaisessa laitteessa.

    +

    Palauta tuo takaisin ne asetukset, jotka olivat aktiivisia, kun Näyttöasetukset-sovellus käynnistettiin.

    +
    Vaikka Haikun VESA-tila toimii oikein hyvin, saatat kokea joitakin rajoituksia. Et ehkä kykene käyttämään taulunäyttöä sen omalla resoluutiolla, mikä aiheutta hiukan hämärän kuvan. Tilassa on myös rajoituksia koskien käytettävissä olevia värisyvyyksiä ja virkistystaajuuksia.
    +

    Vasemmalla alhaalla voit asettaa työtilojen lukumäärän ja järjestää ne sarakkeisiin ja riveihin sekä avata Tausta-asetukset-sovelluksen.

    diff --git a/docs/userguide/fi/preferences/screensaver.html b/docs/userguide/fi/preferences/screensaver.html index 129c9958da..f85c334172 100644 --- a/docs/userguide/fi/preferences/screensaver.html +++ b/docs/userguide/fi/preferences/screensaver.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - ScreenSaver + Näytönsäästäjäasetukset
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    screensaver-icon_64.pngScreenSaver

    +

    screensaver-icon_64.pngNäytönsäästäjäasetukset

    TyöpöytäpalkkiAsetukset
    Sijainti/boot/system/preferences/Screensaver
    Asetukset~/config/settings/ScreenSaver_settings
    -

    The panel of the ScreenSaver preferences is split into two tabs: -

    +

    Näytönsäästäjäasetukset-paneeli on jaettu kahteen välilehteen:

    index -Fade

    +Yleinen screensaver-fade.png
    -

    The top checkbox enables/disables the screen saver.
    -With the slider below it, you control after how long an idle time the screen saver kicks in. +

    Ylin valintaruutu ottaa käyttöön tai poistaa käytöstä näytönsäästäjän.
    +Sen alla olevalla liukukytkimellä voit ohjata, kuinka pitkän odotusajan jälkeen näytönsäästäjä käynnistyy.

    -

    The next two sliders are only usable after you activated their checkboxes:
    -One slider determines after how many minutes the screen is powered off.
    -The other, after how many minutes you need a password to unlock your machine. -

    -

    By clicking into different corners of the two screens at the bottom, you tell the system when to immediately start the screen saver or when to prevent it from kicking in when you rest the mouse in the indicated corner. Click in the middle of the screens to disable that feature again. +

    Kaksi seuraavaa liukukytkintä ovat käytettävissä vain jos ne aktivoidaan valintaruuduilla:
    +Yksi liukukytkin määrittää, että kuinka monen minuutin kuluttua näyttö sammutetaan.
    +Toinen liukukytkin määrittää, kuinka monen minuutin kuluttua tietokoneistunto pitää käynnistää salasanalla.

    +

    Napsauttamalla kahden näytön eri kulmiin alhaalla kerrot järjestelmälle, milloin sen on käynnistettävä näytönsäästäjä heti ja milloin estää sen käynnistymisen kun hiiren kohdistin on osoitetun kulman päällä. Näytön keskustaan napsauttaminen ottaa tämän ominaisuuden pois käytöstä.

    index -Screensavers

    +Näytönsäästäjät screensaver-modules.png
    -

    The second tab shows a list of all installed screen savers and their individual settings. You can test your settings with the Test button below the list and add more screen savers with the Add... button beside it. Another way to install new screen savers is by a simple drag&drop into the list. Of course, you can also copy/delete its file in its respective user folder, i.e. /boot/common/add-ons/Screen Savers/ or /boot/home/config/add-ons/Screen Savers/ (see topic Filesystem layout). +

    Toinen välilehti näyttää asennettujen näytönsäästäjien luettelon ja niiden yksilölliset asetukset. Voit testata niitä luettelon alapuolella olevalla Testaa-painikkeella ja lisätä näytönsäästäjiä viereisellä Lisää...-painikkeella. Toinen tapa asentaa näytönsäästäjä on yksinkertaisesti raahata ja pudottaa se luetteloon. Tietysti voit kopioida tai poistaa tiedoston vastaavasta käyttäjäkansiosta, toisin sanoen /boot/common/add-ons/Screen Savers/ tai /boot/home/config/add-ons/Screen Savers/ (katso aihe Tiedostojärjestelmäsijoittelu).

    @@ -88,9 +89,9 @@ The other, after how many minutes you need a password to unlock your machine. diff --git a/docs/userguide/fi/preferences/sounds.html b/docs/userguide/fi/preferences/sounds.html index 452954ebea..62f27d2db4 100644 --- a/docs/userguide/fi/preferences/sounds.html +++ b/docs/userguide/fi/preferences/sounds.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Sounds + Äänet
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    sounds-icon_64.pngSounds

    +

    sounds-icon_64.pngÄänet

    @@ -59,12 +62,12 @@
    TyöpöytäpalkkiAsetukset
    Sijainti/boot/system/preferences/Sounds


    sounds.png -

    You can assign sounds to certain events in the system. Just select the event from the list and choose a sound from the pop-up menu below.

    +

    Voit liittää ääniä järjestelmän tiettyihin tapahtumiin. Valitse vain tapahtuma luettelosta ja valitse ääni alla olevasta ponnahdusvalikosta.

    - -
    None will silence an event.
    Other... will open a file panel to find a new sound that isn't yet in the menu.
    -

    You can use any format that's supported by the system. If MediaPlayer can deal with it, so can any other program.
    -You can "pre-hear" an event's sound by selecting it and using the Play and Stop buttons.

    +Ei mitään hiljentää tapahtuman. +Muu... avaa tiedostopaneelin, jotta voi löytää uuden äänen, joka ei ole vielä valikossa. +

    Voit käyttää mitä tahansa muotoa, jota järjestelmä tukee. Jos Mediasoitin voi käsitellä sitä, niin silloin sitä voi käsitellä mikä tahansa ohjelma.
    +Voit "esikuunnella" tapahtuman äänen valitsemalla sen ja käyttämällä Soita- ja Pysäytä-painikkeita.

    @@ -72,9 +75,9 @@ You can "pre-hear" an event's sound by selecting it and using the
    - «  ScreenSaver  -::  Preferences  -::  Time  » + «  Näytönsäästäjäasetukset  +::  Asetukset  +::  Aika-asetukset  »
    --> diff --git a/docs/userguide/fi/preferences/time.html b/docs/userguide/fi/preferences/time.html index 3ce570c3fa..7d27968fe6 100644 --- a/docs/userguide/fi/preferences/time.html +++ b/docs/userguide/fi/preferences/time.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Time + Aika-asetukset
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    time-icon_64.pngTime

    +

    time-icon_64.pngAika-asetukset

    +~/config/settings/timezone - Linkki nykyiseen aikavyöhykkeeseen kansiossa /boot/system/etc/timezones/*/*
    +~/config/settings/Time_settings - Tallentaa paneelin ikkunasijainnin.
    TyöpöytäpalkkiAsetukset
    Sijainti/boot/system/preferences/Time
    Asetukset~/config/settings/RTC_time_settings
    -~/config/settings/timezone - A link to the current timezone in /boot/system/etc/timezones/*/*
    -~/config/settings/Time_settings - Stores the panel's window position.
    -

    The panel of the Time preferences is split into two tabs:

    +

    Aika-asetukset-paneelit on jaettu kahteen välilehteen:

    index -Date & Time

    +Päivämäärä ja aika time-time.png -

    On the left side, you can set the day of the month by simply clicking on it in the calendar. You change the month and year by clicking on it and using the up/down arrows to the right or the cursor keys on your keyboard.

    -

    Similarly, you set the time. There are two modes for the clock:

    +

    Vasemmalla puolella voit asettaa päivämäärän ja kuukauden yksinkertaisesti napsauttamalla sitä kalenterissa. Vaihdat kuukautta ja vuotta napsauttamalla sitä ja käyttämällä oikealla nuolinäppäimiä ylös ja alas tai näppäimistösi kohdistinnäppäimiä.

    +

    Samalla tavalla asetat ajan. Siinä on kellolle kaksi tilaa:

    - - + +
    Local time to display your local time.
    GMT to display Greenwich Mean Time.
    Paikallisaika paikallisen aikasi näyttämiseen.
    Greenwichin aika Greenwichin ajan näyttämiseen.

    index -Timezone

    +Aikavyöhyke time-timezone.png -

    Simply find and choose your location from the pop-up menu and the list of cities and press Set time zone to set your zone.

    -

    Revert brings back the settings that were active when you started the Time preferences.

    +

    Valitse yksinkertaisesti sijaintisi ponnahdusvalikosta ja kaupunkien luettelosta ja paina aikavyöhykkeesi Aseta aikavyöhyke-painiketta.

    +

    Palauta tuo takaisin asetuset, jotka olivat voimassa Aika-asetukset-sovellusta käynnistettäessä.

    diff --git a/docs/userguide/fi/preferences/touchpad.html b/docs/userguide/fi/preferences/touchpad.html index 88de68b0c3..cd36f4dc2f 100644 --- a/docs/userguide/fi/preferences/touchpad.html +++ b/docs/userguide/fi/preferences/touchpad.html @@ -9,18 +9,20 @@ * * Authors: * [Insert your name and address here] + * Translators: + * Karvjorm * --> - Touchpad + Levyhiiri
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    tracker-icon_64.pngTracker

    +

    tracker-icon_64.pngSeuraaja

    TyöpöytäpalkkiAsetukset
    Sijainti/boot/system/preferences/Tracker
    Asetukset~/config/settings/Tracker/TrackerSettings


    -

    The Tracker preference panel is also available from every Tracker window with the menu Window | Preferences....
    -Its functions are discussed in the topic on Tracker.

    +

    Seuraaja-asetuspaneeli on myös saatavilla jokaisesta Seuraajaikkunasta valikolla Ikkuna | Asetukset....
    +Sen toiminnoista keskustellaan aiheessa Seuraaja.

    @@ -67,9 +70,9 @@ Its functions are discussed in the topic on
    - «  Time  -::  Preferences  -::  Touchpad  » + «  Aika-asetukset  +::  Asetukset  +::  Levyhiiri  »
    --> diff --git a/docs/userguide/fi/preferences/virtualmemory.html b/docs/userguide/fi/preferences/virtualmemory.html index f911fe4af4..67a32db885 100644 --- a/docs/userguide/fi/preferences/virtualmemory.html +++ b/docs/userguide/fi/preferences/virtualmemory.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - VirtualMemory + Virtuaalimuistiasetukset
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    virtualmemory-icon_64.pngVirtualMemory

    +

    virtualmemory-icon_64.pngVirtuaalimuistiasetukset

    +~/config/settings/VM_data - Tallentaa paneelin ikkunan sijainnin.
    TyöpöytäpalkkiAsetukset
    Sijainti/boot/system/preferences/VirtualMemory
    Asetukset~/config/settings/kernel/drivers/virtual_memory
    -~/config/settings/VM_data - Stores the panel's window position.
    -

    Virtual memory let's the system swap out memory to harddisk, if the RAM can be used more sensibly for other things. So, even if you have lots of RAM, providing virtual memory is never a bad idea.

    +

    Virtuaalimuisti sallii käyttää levyn näennäismuistia, jos RAM-muistia voidaan käyttää herkemmin muihin asioihin. Jopa silloin kun RAM-muistia on runsaasti, virtuaalimuistin tarjoaminen ei ole koskaan huono ajatus.

    virtualmemory.png -

    You can set the size to even more than your physical memory size if needed. With today's huge harddisks, assigning the physical memory size shouldn't be a problem. Still, you can quickly adjust the size if your free space ever runs low. In that case you should also have a look at DiskUsage to find out what's eating up your diskspace.

    -

    Normally, the swap file's written to your boot partition. If you often run into disk thrashing due to the virtual memory system swapping memory in and out, you can try to use a separate harddisk for you swap file. Simply another partition on the same harddisk with your system/data won't help.
    -Upgrading your RAM is of course the most effective way to go...

    +

    Tarvittaessa voit asettaa koon jopa suuremmaksi kun fyysinen muistisi. Nykyisillä valtavilla kiintolevyillä liitetyn fyysisen muistin koko ei ole pulma. Siti voit nopeasti säätää kokoa, jos vapaa tila joskus loppuu. Siinä tapauksessa kannattaa katsoa Levyasemakäyttö-sovelluksella, että mikä syö levytilaasi.

    +

    Normaalisti näennäistiedosto kirjoitetaan alkulatausosiollesi. Jos usein törmäät levyn roskaantumiseen siksi, että virtuaalimuistijärjestelmä lisää ja poistaa muistia, voit kokeilla näennäismuistille erillistä kiintolevyä. Saman kiintolevyn toinen osio järjestelmällesi tai tiedoillesi ei yksinkertaisesti auta.
    +RAM-muistin kasvattaminen olisi tietysti tehokkain tapa...

    - +
    Oletukset nollaa kaikki oletusarvoihin.
    Palauta brings back the settings that were active when you started the VirtualMemory preferences.
    Palauta palauttaa takaisin asetukset, jotka olivat voimassa kun Virtuaalimuistiasetukset-sovellus käynnistettiin.
    @@ -73,8 +76,8 @@ Upgrading your RAM is of course the most effective way to go...

    diff --git a/docs/userguide/fi/queries.html b/docs/userguide/fi/queries.html index 2fa59a8233..a2dc22d73e 100644 --- a/docs/userguide/fi/queries.html +++ b/docs/userguide/fi/queries.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Queries + Kyselyt
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    Hakemisto
    - The Find window
    - Basic queries - "by Name"
    - Advanced queries - "by Attribute"
    - Even more advanced queries - "by Formula"
    - The result window
    - Query Templates + Etsintäikkuna
    + Peruskyselyt - "nimellä"
    + Kehittyneemmät kyselyt - "attribuutilla"
    + Vielä edistyneemmät kyselyt - "kaavalla"
    + Tulosikkuna
    + Kyselymallinteet
    -

    Queries

    +

    Kyselyt

    -

    A query is a file search based on file attributes and can be performed within Tracker or in Terminal. Queries are saved in /boot/home/queries/ and by default last seven days before being purged. Note, these aren't static result lists of your search, but are the query formulas which trigger a new search whenever you open them.
    -Even better, you don't have to double-click to re-do a query. You can drill down a saved query just like any folder by right-clicking on it and navigating through the submenus.

    +

    Kysely on tiedostoattribuutteihin perustuva tiedostohaku ja se voidaan suorittaa Seuraajassa tai Pääteikkunassa. Kyselyt tallennetaan kansioon /boot/home/queries/ ja säilytetään oletuksena viimeiset seitsemän päivää ennen tyhjentämistä. Huomaa, että nämä eivät ole hakusi staattisia tuloksia, vaan kyselylomakkeita, jotka liipaisevat uuden haun aina avattaessa.
    +Mikä parempaa, sinun ei tarvitse kaksoisnapsauttaa kyselyn tekemiseksi uudelleen. Voit porautua tallennettuuun kyselyyn aivan kuin mihin tahansa kansioon napsauttamalla hiiren kakkospainikkeella ja navigoimalla alivalikoiden lävitse.

    index -The Find window

    -

    You start a query by invoking the Find... menu either from the Deskbar menu or any Tracker window or the Desktop (which is actually a fullscreen Tracker window). The shortcut is ALT F. You're presented with the Find window:

    +Etsintäikkuna +

    Aloitat haun kutsumalla Etsi...-valikkoa joko Työpöytäpalkista tai mistä tahansa Seuraaja-ikkunasta tai Työpöydältä (mikä on itse asiassa kokonäytön kokoinen Seuraaja-ikkuna). Pikanäpppäin on ALT F. Sinulle esitellään Haku-ikkuna:

    basic-query.png
      -
    1. Select recent or saved queries or save the current search parameters as Query Template.

    2. -
    3. Narrow down your search from All files and folders to specific file types.

    4. -
    5. Define the search method:
        -
      • by Name - a basic search by file or folder name
      • -
      • by Attribute - an advanced search, you specify search terms for one or more attributes
      • -
      • by Formula - an even more advanced search, you can fine-tune a complex query term
    6. -
    7. Select which drives to search on.

    8. -
    9. Enter the search term.

    10. -
    11. The expander hides/unhides the additional options.

    12. -
    13. Uncheck the Temporary checkbox if you don't want this query self-destruct after 7 days.

    14. -
    15. Check if your query is supposed to Include trash.

    16. -
    17. Optionally, enter a name for this query if you want to save it.

    18. -
    19. You can drag&drop the icon anywhere to save a query. Doing that with the right mouse button, offers the option to save as template.

    20. +
    21. Valitse nykyiset tai tallennetut kyselyt tai tallenna nykyiset hakuparametrit Kyselymallinteena.

    22. +
    23. Kavenna etsintäaluetta valikosta Kaikki tiedostot ja kansiot tiettyyn tiedostotyyppiin.

    24. +
    25. Määritä hakumenetelmä:
        +
      • Nimellä - perushaku tiedosto- tai kansionimellä
      • +
      • Attribuutilla - edistynyt haku, määritä hakutermeiksi yksi tai useampia attribuutteja
      • +
      • Kaavalla - vieläkin edistyneempi haku, voit hienosäätää mutkikkaita hakutermejä
    26. +
    27. Valitse levyasema, jolta etsitään.

    28. +
    29. Kirjoita hakutermi.

    30. +
    31. Laajentaja piilottaa/paljastaa lisävalitsimet.

    32. +
    33. Ota pois valintaruutu Tilapäinen, jos et halua kyselyn katoavan automaattisesti 7 päivän jälkeen.

    34. +
    35. Valitse valintaruutu Sisällytä roskakori, jos haluat etsiä myös roskakorista.

    36. +
    37. Valinnainen, kirjoita nimi tälle kyselylle, jos haluat tallentaa sen.

    38. +
    39. Kyselyn tallentamiseksi voit raahata ja pudottaa kuvakkeen minne tahansa. Kun sen tekee hiiren kakkospainikkeella, valikko tarjoaa tallentamisen mallinteena.

    index -Basic queries - "by Name"

    -

    If you simply want to find all files and folders on your mounted disks that match a certain pattern, simply leave the search method at by Name, enter the search term into the text box and press ENTER.

    +Peruskyselyt - "nimellä" +

    Jos haluat yksinkertaisesti löytää kaikki ne tiedostot ja kansiot liitetyiltä levyiltä, jotka täsmäävät tiettyyn hakulauseeseen, jätä hakumenetelmäksi vain Nimellä, kirjoita hakutermi teksti-ikkunaan ja paina ENTER-näppäintä.

    index -Advanced queries - "by Attribute"

    -

    You can create more advanced queries by searching within the attributes of specific file types. For that to work, these attributes have to be indexed.

    +Kehittyneemmät kyselyt - "attribuutilla" +

    Voit luoda edistyneempiä kyselyjä etsimällä tiettyjen tiedostotyyppien attribuuttisen sisältä. Jotta tämä toimisi, attribuutit on indeksoitava.

    query-window.png -

    You start by setting the filetype from All files and folders to, for example, Text | E-mail and change the search method to by Attribute.

    -

    This adds a pop-up menu to the left of the textbox and the buttons Add and Remove under that. From the menu you choose which attribute to query. With Add and Remove you can query additional attributes or remove them again. These attributes can be logically linked with AND/OR.

    -

    Let's do an email query as an example:

    +

    Käynnistät tiedostotyypin asettamisen esimerkiksi valinnasta Kaikki tiedostot ja kansiot valintaan Teksti | Sähköposti ja hakumenettelyn vaihto valintaan Attribuuteilla.

    +

    Tämä lisää ponnahdusvalikon teksti-ikkunan vasemmalle puolelle ja painikkeet Lisää ja Poista sen alle. Valikosta voi valita, että mitä attribuuttia kyselee. Painikkeilla Lisää ja Poista voit kysellä lisäattribuutteja ja poistaa niitä taas. Nämä attribuutit linkitetään loogisesti binaarilogiikan AND- tai OR-tiloilla.

    +

    Tehkäämme sähköpostikysely esimerkkinä:

    query-window-filled.png -

    This is your Find window when you're looking for all emails Clara Botters has sent to you in the last two months that had in the subject "vibraphone" or "skepticality".
    -As you see, searching through time-based attributes supports some useful phrases: besides for the "last 2 months", you could also use "today", "yesterday", "Monday" or "last Monday" (which would be the Monday last week), or "last 2 minutes/hours/days/weeks".
    -A good way to cut down the number of search results.

    +

    Tämä on Haku-ikkunasi, kun etsit kaikkia niitä sähköpostiviestejä, jotka Clara Botters on lähettänyt sinulle viimeisen kahden kuukauden aikana ja joissa aiheena on "vibraphone" tai "skepticality".
    +Kuten näet, aikaperustaisten attribuuttien kautta hakeminen tukee joitakin hyödyllisiä lauseita: paitsi "viimeiset 2 kuukautta", voisit käyttää myös "tänään", "eilen", "maanantai" tai "viime maanantai" (mikä olisi maanantai viime viikolla), tai "viimeiset 2 minuuttia/tuntia/päivää/viikkoa".
    +Hyvä tapa rajoittaa hakutulosten lukumäärää.

    index -Even more advanced queries - "by Formula"

    -

    Typing in a formula query by hand is daunting and really quite unpractical. It still has its uses.

    -

    Take the above query by attribute of Clara's mails concerning vibraphones etc. If you have all the attributes and their search terms set, try switching to by Formula mode and be overwhelmed by this one line query string:

    +Vielä edistyneemmät kyselyt - "kaavalla" +

    Kaavakyselyn kirjoittaminen käsin on puuduttavaa ja todella aika epäkäytännöllistä. Mutta sillä on silti käyttöä.

    +

    Ota yllä oleva kysely attribuutilla Claran niistä sähköpostiviesteistä, jotka koskevatt vibrafonista jne. Jos sinulla on kaikki attribuutit ja niiden hakutermit asetettuna, yritä vaihtaa Kaavalla-tilaan ja saat näkyviin tämän yksirivisen kyselymerkkijonon:

    formula-query.png -

    Once more as text, edited for readability:

    +

    Vielä kerran kun teksti on muokattu luettavammaksi:

    (((((MAIL:from=="*[cC][lL][aA][rR][aA] [bB][oO][tT][tT][eE][rR][sS]*")
            &&(MAIL:when>=%2 months%))
            &&(MAIL:subject=="*[vV][iI][bB][rR][aA][pP][hH][oO][nN][eE]*"))
            ||(MAIL:subject=="*[sS][kK][eE][pP][tT][iI][cC][aA][lL][iI][tT][yY]*"))
            &&(BEOS:TYPE=="text/x-email"))
    -

    What's the use?

    +

    Mihin käyttöön?

      -
    • You could copy and paste the string into an email, forum or IRC for others to use or debug.

    • -
    • You can use this method to construct a query in Attribute mode and then switch to Formula mode, to comfortably generate a search string to use for a query in Terminal or a script.

    • -
    • You can fine tune your query by inserting parenthesis where needed, make parts case-sensitive or negate logical combinations by changing. e.g. "==" to "!=" for a NOT AND. All you need is a basic understanding of regular expressions and maybe some scripting basics.

    • +
    • Voisit kopioida ja liittää merkkijonon sähköpostiviestiin, foorumille tai IRC-kanavalle toisten käyttöön vianjäljitystä varten.

    • +
    • Voit käyttää tätä menetelmää kyselyn rakentamiseki Attribuutti-tilassa ja vaihtaa sitten Kaava-tilaan hakumerkkijonojen helpompaa tuottamista varten Pääteikkunassa tai skriptissä käyttöä varten.

    • +
    • Voit hienosäätää kyselyäsi lisäämällä lainausmerkkejä milloin tarvetta ilmenee, tekemällä osan kirjainkoosta riippuvaksi tai muuttamalla loogisen yhdistelmän negaatioksi "=="-muodosta "!="-muotoon NOT AND. Tarvitset ainoastaan säännöllisten lausekkeiden ja ehkä joidenkin skriptausperusteiden ymmärtämistä.

    index -The result window

    -

    After you start a search, the Find window will be replaced by a result window. Here is an example that queried for "server":

    +Tulosikkuna +

    Haun käynnistymisen jälkeen Etsi-ikkuna korvautuu tulosikkunalla. Tässä on esimerkki, jossa hakuterminä on "server":

    result-window.png -

    Besides the gray background, result windows work exactly like any other Tracker window. Some things are worth noting:

    +

    Lukuunottamatta harmaa taustaa tulosikkunat ovat tarkalleen samanlaisia kuin muut Seuraaja-ikkunat. Jotkut asiat ovat mainitsemisen arvoisia:

      -
    • You can open the location of a file or folder by double clicking on its path attribute.

    • -
    • With File | Edit query or ALT G you get back to your Find window to refine your query.

    • -
    • A query is live, i.e. if a file that matches your search criteria appears or disappears from your system, this change is reflected in your results in real-time.

    • +
    • Voit avata tiedoston tai kansion sijainnin kaksoisnapsauttamalla sen polkuattribuuttia.

    • +
    • Valikolla Tiedosto | Muokkaa kyselyä tai näppäimillä ALT G pääset takaisin Etsi-ikunaan ja voit parannella kyselyäsi.

    • +
    • Kysely on elossa, toisin sanoen, jos tiedosto, joka täsmää hakuukriteeriisi, ilmaantuu tai katoaa järjestelmästäsi, tämä muutos heijastuu tulokseesi ajantasaisesti.

    -

    You can assign a sensible attribute layout for query results of a specific filetype. Open a folder containing files of the filetype you'd like to create a template for and arrange the attributes how you'd like to have query results presented. Copy this layout with Attributes | Copy layout.

    -

    Open /boot/home/config/settings/Tracker/DefaultQueryTemplates, create a new folder named group/filetype, replacing the slash with an underscore, e.g. "audio_x-mp3". Open the new folder and paste in the previously copied layout with Attributes | Paste layout.

    +

    Voit liittää järkevän attribuuttiasettelun tietyn tiedostotyypin kyselytulokseen. Avaa kansio, joka sisältää ne tiedostotyyppitiedostot, joille haluat luoda mallinteen ja järjestää attribuutit siten kuin haluat kyselytuloksesi esitettävän. Kopioi tämä asettelu valikolla Attribuutit | Kopioi asettelu.

    +

    Avaa /boot/home/config/settings/Tracker/DefaultQueryTemplates, luo uusi kansio nimellä group/filetype, korvaten kauttaviivan alaviivalla, esimerkiksi "audio_x-mp3". Avaa uusi kansio ja liitä aiemmin kopioitu asettelu Attribuutit | Liitä asettelu-valikolla.

    index -Query Templates

    -

    If you double click a saved query, the file search is at once started and the result window opens immediately. However, you may not want to search with these exact search parameters, but use it as starting point to only slightly tweak the formula.
    -By using the Save query as template menu item (see (1) in screenshot at the top) or drag&dropping the icon (10) anywhere with the right mouse button, you can create just such a template. Double clicking it won't open a result window, but the Find panel, giving you the opportunity to quickly change search strings or add/remove attributes.

    -

    Wherever you choose to save query templates, they'll be listed in the Find panel's menu of recent queries.

    +Kyselymallinteet +

    Jos kaksoisnapsautat tallennettua kyselyä, tiedostohaku käynnistyy taas kerran ja tulosikkuna avautuu välittömästi. Et ehkä kuitenkaan halua etsiä tarkalleen näillä hakuparametreilla, vaan käyttää sitä vain hiukan muotoillun kaavan aloituspisteenä.
    +Käyttämällä Tallenna kysely mallinteena-valikkorivillä (katso (1) näytönkaappauksessa ylhäällä) tai raahaamalla ja pudottamalla kuvakkeen (10) minne tahansa hiiren kakkospainikkeella, voit luoda juuri sellaisen mallinteen. Sen kaksoisnapsauttaminen ei avaa tulosikkunaa, vaan Etsi-paneelin, antaen mahdollisuuden nopeasti vaihtaa hakumerkkijonoja ja lisätä tai poistaa attribuutteja.

    +

    Milloin valitset kyselyn tallentamisen mallinteena, ne luetellaan Etsi-paneelin äskettäisten kyselyjen valikossa.

    diff --git a/docs/userguide/fi/teammonitor.html b/docs/userguide/fi/teammonitor.html index 6178d00cd4..e6c7a56f5d 100644 --- a/docs/userguide/fi/teammonitor.html +++ b/docs/userguide/fi/teammonitor.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Team Monitor + Ryhmävalvonta
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    Team Monitor

    +

    Ryhmävalvonta

    -

    With CTRL ALT DEL you invoke the Team Monitor which lists all currently running programs.

    +

    Näppäimillä CTRL ALT DEL kutsut Ryhmävalvonnan, joka luettelee kaikki parhaillaan käynnissä olevat ohjelmat.

    teammonitor.png -

    Programs that were launched by the system are blue, those started by the user black.
    -Applications that are unresponsive, which is often a sign the program has crashed, are marked red. You can kill a program by selecting it and pressing the Kill application button.

    -

    You can summon a Terminal with OPT ALT T.

    -

    If your Tracker or Deskbar crashed or froze, a new button appears (you may have to kill the offending team first): Restart the desktop will restart Tracker and/or Deskbar for you.

    +

    Järjestelmän käynnistämät sovellukset ovat sinisiä, käyttäjän käynnistämät sovellukset ovat mustia.
    +Ohjelmat, jotka ovat vastaamattomia, mikä on usein merkki kaatumisesta, on merkitty punaisella. Voit yrittää sulkea ohjelman valitsemalla sen ja painamalla Poistu sovelluksesta-painiketta (tai joko DEL- tai Q)-näppäintä. Jos se ei toimi, yritä Tapa sovellus (tai sen sijaan VAIHTO DEL- tai K)-näppäintä.

    +

    Voit kutsua Pääteikkunan näppäimillä Alt Gr ALT T.

    +

    Jos Seuraaja tai Työpöytäpalkki kaatuu tai jumittuu, näkyviin ilmaantuu uusi painike (sinun on ehkä tapettava häiritsevä ryhmä ensin): Käynnistä työpöytä uudelleen Seuraajan ja Työpöytäpalkin uudelleenkäynnistämiseksi.

    @@ -66,9 +69,9 @@ Applications that are unresponsive, which is often a sign the program has crashe diff --git a/docs/userguide/fi/tracker-add-ons.html b/docs/userguide/fi/tracker-add-ons.html index 38aaf674a2..70502b2873 100644 --- a/docs/userguide/fi/tracker-add-ons.html +++ b/docs/userguide/fi/tracker-add-ons.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Tracker Add-Ons + Seuraajalisäosat
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    Tracker Add-Ons

    +

    Seuraajalisäosat

    -

    Applications can install add-ons so they can be invoked easily on a selection of files from Tracker. Only the add-ons that can handle a specific filetype are presented under Add-Ons from the context menu or the File menu of a Tracker window. Some add-ons don't necessarily need a file to work on and are thus always present.

    -

    Tracker Add-Ons, or links to applications that can act as add-ons, can be installed in three different locations (see topic Filesystem layout):

    +

    Sovellukset voivat asentaa liitännäisiä, niin että niitä voidaan kutsua helposti Seuraajasta tiedostoja valittaessa. Vain ne liitännäiset, jotka osaavat käsitellä tietyn tyyppistä tiedostoa, esitellään valikossa Liitännäiset asiayhteysvalikosssa tai Seuraaja-ikkunan Tiedosto-valikossa. Jotkut liitännäiset eivät välttämättä tarvitse tiedostoa toimiakseen ja ovat siksi aina käytettävissä.

    +

    Seuraaja-lisäosat, tai linkit sovelluksiin, jotka voivat toimia lisäosina, voidaan asentaa kolmeen eri paikkaan (see topic Tiedostojärjestelmäsijoittelu):

    - - - + + +
    /boot/system/add-ons/Tracker/    for system provided add-ons.
    /boot/common/add-ons/Tracker/    for add-ons available to every user.
    /boot/home/config/add-ons/Tracker/    for add-ons only available to yourself.
    /boot/system/add-ons/Tracker/    järjestelmän tarjoamia liitännäisiä varten.
    /boot/common/add-ons/Tracker/    jokaisen käyttäjän käytettävissä olevat liitännäiset.
    /boot/home/config/add-ons/Tracker/    sinun itsesi käytettävissä olevat liitännäiset.
    -

    The file name of an add-on can be suffixed with a dash and capital letter, and is then available via keyboard shortcut. For example, Open Target Folder-O opens with ALT OPT O.
    -Of course, you have to take care of possible shortcut collisions when deciding on a shortcut. You can't have the same for different add-ons.

    +

    Lisäosan tiedostonimessä voi olla kauttaviiva ja suuri kirjain loppuliitteenä, ja se on silloin käytettävissä pikanäppäimen avulla. Esimerkiksi, Avaa kohdekansio-O avautuu näppäimillä ALT Alt Gr O.
    +Tietysti sinun on huolehdittava mahdollisista pikanäppäinristiriidoista, kun päätät pikanäppäimestä. Sinulla ei voi olla samaa pikanäppäintä eri lisäosille.

    -

    Haiku's Tracker Add-Ons

    -

    These Tracker Add-Ons come with every Haiku installation:

    +

    Haikun seuraajalisäosat

    +

    Nämä Seuraaja-lisäosat tulevat jokaisen Haiku-asennuksen mukana:

    - - - - - - - - - - - - + + + + + + + + + + + +
    Background-BOpens the Background preferences to change the color or image of the Desktop or any folder. Invoked on an image file the Background panel is launched with that image already loaded as a potential background.
    DiskUsage-IStarts the DiskUsage application with the according folder as basis.
    FileType-FInvoked on a file, opens its specific FileType panel, otherwise the general FileTypes preferences are launched.
    Open Target Folder-OCan only be used on a linked file and opens the folder that file lives in.
    TextSearch-GStarts the TextSearch application to look for a string in the selected folder (and its subfolders).
    ZipOMatic-ZA selection of files will be added to a zip archive, invoked without a selection opens a panel to create an archive via drag&drop.
    Tausta-BAvaa Tausta-asetukset-ohjelman Työpöydän tai minkä tahansa kansion värin tai taustakuvan vaihtamiseksi. Kutsuttaessa kuvatiedostosta Tausta-asetukset-paneeli käynnistetään kuva valmiiksi ladattuna potentiaalisena taustakuvana.
    Levyasemakäyttö-IAloittaa Levyasemakäyttö-sovelluksen käyttäen nykyistä kansiota perustana.
    Tiedostotyyppi-FTiedostosta kutsuttuna avaa Tiedostotyyppi-paneelin, muussa tapausessa käynnistetään yleinen Tiedostotyypit-asetusohjelma.
    Avaa kohdekansio-OVoidaan käyttää vain linkitetyillä tiedostoilla ja avaa kansion, jossa tiedosto sijaitsee.
    Tekstihaku-GAloittaa Tekstihaku-sovelluksen merkkijonon etsimisen valitussa kansiossa (ja sen alikansioissa).
    Zip-tiivistysmaatti-ZValitut tiedostot lisätään zip-arkistoon, kutsuminen ilman valintaa avaa paneelin arkiston luomiseksi raahaamalla ja pudottamalla.
    @@ -85,9 +88,9 @@ Of course, you have to take care of possible shortcut collisions when deciding o diff --git a/docs/userguide/fi/tracker.html b/docs/userguide/fi/tracker.html index 083535ae52..c41251600d 100644 --- a/docs/userguide/fi/tracker.html +++ b/docs/userguide/fi/tracker.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Tracker + Seuraaja
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    Hakemisto
    - Mounting volumes
    - Navigating
    - Appearance
    - Tracker preferences
    - Working with files
    - Transaction status + Liitetään taltioita
    + Navigoidaan
    + Ulkoasu
    + Seuraaja-asetukset
    + Työskentely tiedostoilla
    + Tapahtumatila
    -

    Tracker

    +

    Seuraaja

    -

    The Tracker is the graphical interface to all your files. It lets you create new files and folders or find, launch or rename as well as copy or delete existing ones.

    -

    Being an application like any other (the Desktop with its icons is really just a fullscreen window in the background), Tracker appears with its windows in the Deskbar and can be quit and restarted. The easiest way to quit and restart a crashed or frozen Tracker (or a wayward Deskbar) is to call the Team Monitor.

    +

    Seuraaja on graafinen käyttöliittymä kaikille tiedostoillesi. Se sallii sinun luoda uusia tiedostoja ja kansioita sekä löytää, käynnistää ja nimetä uudelleen samoin kuin kopioida tai poistaa olemassa olevia tiedostoja ja kansioita.

    +

    Koska kyseessä on vain muiden kaltainen sovellus (Työpöytä kuvakkeineen on vain taustalla oleva kokonäyttöikkuna), Seuraaja näkyy ikkunoineen Työpöytäpalkissa ja se voidaan sulkea ja käynnistää uudelleen. Helpoin tapa poistua tai käynnistää uudelleen kaatunut tai jäätynyt Seuraaja (tai kuriton Työpöytäpalkki) on Ryhmävalvonta-sovelluksen kutsuminen.

    index -Mounting Volumes

    -

    In order to access a harddisk, CD, USB stick etc., you first have to mount the volume, that is, let the system know it's there. This is done with a right-click on the Desktop or an already mounted volume (like the boot disk) and choosing the volume from the Mount submenu. You find the same Mount menu in the Deskbar.

    +Liitetään taltioita +

    Jotta käyttäjä pääsee käsiksi kiintolevyyn, CD-levyyn, USB-tikkuun jne., käyttäjän on ensin liitettävä taltio, toisin sanoen kerrottava järjestelmälle, että se on olemassa. Tämä tehdään avaamalla Työpöydälla tai jo liitetyn taltion (kuten alkulatauslevy) päällä hiiren kakkospainikkeella Liitä-alivalikon. Löydät saman alivalikon Työpöytäpalkin Liitä-valikosta.

    drill-down.png -

    There are also Settings so you don't have to mount everything manually after every bootup.
    -The above settings will automatically mount any storage device you connect/insert and also mount all disks on bootup that were mounted previously.

    -
    Before you disconnect e.g. a harddrive or USB stick, make sure you have successfully unmounted the volume. This guarantees that all data transfer has finished. Otherwise you may lose data or corrupt the disk!
    +

    Löydät myös valikon Asetukset niin että sinun ei tarvitse liittää kaikkia manuaalisesti jokaisen alkulatauksen jälkeen.
    +Yllä oleva asetus liittää automaattisesti jokaisen tallennuslaitteen, jonka liität tai lisäät ja liittää alkulatauksen yhteydessä myös kaikki levyt, jotka oli liitetty aiemmin.

    +
    Ennen kuin poistat esimerkiksi kiintolevyn tai USB-tikun, varmistu, että olet poistanut taltion onnistuneesti. Tämä takaa, että kaikki tiedonsiirrot ovat päättyneet onnistuneesti. Muussa tapauksessa tietoja voi kadota tai levy rikkoutuu!

    index -Navigating

    -

    By default, when you double-click a folder, Tracker opens a new window while leaving the parent window open. This can quickly lead to an overcrowded desktop.
    -You can prevent that by holding down the OPT key, which automatically closes the parent window.
    -This is also true for keyboard navigation. For more on that, see topic Shortcuts and key combinations.

    -

    Moving through your folders is one of Trackers main purposes, just like the file managers on other platforms. Haiku's Tracker has some unique features that will help you doing that efficiently.

    +Navigoidaan +

    Kun oletuksena kaksoisnapsautat kansiota, Seuraaja avaa uuden ikkunan, mutta jättää ylemmän tason ikkunan avoimeksi. Tämä voi nopeasti johtaa työpöydän täyttymiseen ikkunoilla.
    +Voit estää tämä pitämällä alhaalla OPT-painiketta, mikä sulkee automaattisesti ylemmän tason ikkunan.
    +Tämä pätee myös näppäinnavigoinnissa. Katso lisätietoja aiheesta Pikanäppäimet ja näppäinyhdistelmät.

    +

    Kansioiden läpi kulkeminen on yksi Seuraajien päätarkoitus aivan kuin tiedostohallinnoilla muilla alustoilla. Haikun Seuraajassa on joitakin ainutlaatuisia ominaisuuksia, jotka opastavat sen tehokkaaseen tekemiseen.

    -indexDrilling down the submenus

    -

    Instead of double-clicking your way down folder after folder, there's a better way to drill down:

    +indexSiirrytään alas alivalikoihin +

    Sen sijaan, että kaksoisnapsautellaan kansio kansiolta alaspäin kansioiden hierarkiapuussa, on olemassa parempi tapa siirtyä alaspäin:

    drill-down.png -

    Right-click onto a folder, and at the top of the usual context menu you'll find a submenu of the current folder that let's you navigate down a level. Just move down the hierarchy until you find the file or folder you're looking for and click on it to open it. The above shows the contents of the folder /boot/home/config/.
    -If you do the above while dragging a file with you, it will be moved to where you eventually drop it.

    -

    A similar method can be used from any Tracker window:

    +

    Hiiren kakkospainikkeen napsauttaminen kansion päällä tuo näkyviin tavallisen asiayhteysvalikon, jonka ylimmäisenä on nykyisen kansion alivalikko, jonka antaa sinulle mahdollisuuden navigoida tason alaspäin. Siirrä hiiren kohdistinta vain alaspäin hierarkiassa, kunnes löydät tiedoston tai kansion, jota olet etsimässä ja avaa se napsauttamalla. Yllä näytetään kansion /boot/home/config/ sisältö.
    +Jos teet ylläkerrotun ollessasi raahaamassa tiedostoa, se siirretään sinne, minne sen mahdollisesti pudotat.

    +

    Samanlaista menetelmää voidaan käyttää mistä tahansa Seuraaja-ikkunasta:

    window-drill-down.png -

    Click on the area in the lower left, where the number of items is listed, and you'll get submenus for every level above your current location. From there you can drill down through the folders as usual.

    -

    Note, that the Desktop is always the topmost level as that is where Tracker shows mounted volumes. So, if you want to go to another disk, you first have to navigate to the top (Desktop) and cross over to your other disk from there.


    -

    You'll get the same submenu-navigating when you drag a file over a folder. After a short while of hovering, a submenu pops up and you can drill down to your destination. If you initiated the drag with the right mousebutton, you can choose between copying, moving or linking the file when you release the mouse.

    +

    Napsauta vasemmalla alhaalla olevaa aluetta, jossa on lueteltu kohteiden lukumäärä, ja saat näkyviin alivalikon, jossa näkyy kaikki nykyisen tason alapuolella olevat tasot. Sieltä voi kairautua alaspäin kansioiden lävitse kuten tavallisesti.

    +

    Huomaa, että Työpöytä on aina ylin taso, koska se on paikka, jossa Seuraaja näyttää liitetyt taltiot. Jos haluat vielä yhden levyaseman, sinun on ensin navigoitava ylimmäksi (Työpöydälle) ja hypätä siellä toiselle levylle.


    +

    Saat saman alivalikkonavigoinnin kun raahaat tiedostoa kansion päällä. Hiiren osoittimen pitäminen hetken kohteen päällä saa alivalikon ponnahtamaan näkyviin ja voit siirtyä alaspäin kohteeseesi. Jos aloita raahaamisen hiiren kakkospainikkeella, voit valita kopioinnin, siirtämisen tai tiedoston linkittämisen, joka toteutuu, kun päästät irti hiirellä.

    index -Jumping to files with type-ahead

    -

    You may be familiar with the concept from file managers of other operating systems: typing the first few letters of a filename will jump to the first file matching these starting characters. Haiku took the idea a step further. If there isn't a file starting with those letters it will jump to the first file including the string anywhere in its name. And if there's nothing with the string in its filename, the attributes are searched next.

    +Hypätään tiedostoihin nimeä kirjoitettaessa +

    Eräs konsepti on ehkä tuttu muiden käyttöjärjestelmiem tiedostohallinnasta: +tiedostonimen muutaman ensimmäisen kirjaimen kirjoittaminen aiheuttaa hyppäämisen ensimmäiseen tiedostoon, jonka nimen alusta löytyvät nuo kirjaimet. Haiku vei idean askeleen pitemmälle. Jos kirjaimia ei löydy tiedoston nimen alusta, niin se hyppää ensimmäiseen tiedostoon, jossa kirjaimet ovat missä paikassa tahansa. Ja jos kirjaimia ei löydy tiedostonimestä, niin seuraavaksi etsitään tiedostojen attribuutit.

    window-type-ahead.png -

    In the above example, there are many files starting with "Haiku logo", rendering simpler approaches to typing ahead quite useless. In Haiku however, typing "web" jumps right to its first occurence in "Haiku logo - website". The characters you enter appear in the bottom left corner where you normally find the item count of all files in the folder. A second after entering a character, the display jumps back to normal and you're ready for a new type ahead search.

    +

    Yllä olevassa esimerkissä on useita tiedostoja, jotka alkavat "Haiku logo", renderoinnin yksinkertainen eteenpäin kirjoittaminen on aika tehotonta. Haikussa kirjaimet "web" kirjoittamalla hypätään juuri sen ensimmäiseen ilmentymään tiedostossa "Haiku logo - website". Kirjoittamasi kirjaimet ilmaantuvat vasempaan alakulmaan, jossa normaalisti löytyy tiedosto- ja hakemistokohteiden lukumäärä. Sekunti kirjainten kirjoittamisen jälkeen, näyttö hyppää takaisin normaalitilaan ja olet valmis kirjoittamaan uuden haun.

    index -Type-ahead filtering

    -

    Instead of jumping to a file while typing, there's also the option to filter out all files not matching your type-ahead string. This can improve clarity dramatically, especially when dealing with crowded folders. By using SHIFT SPACE as delimiter, you can even filter on multiple strings.
    -Contrary to type-ahead jumping, the filtering will stick until you press ESC or close the window (or leave the folder if you're using Single Window Navigation).
    -This type-ahead filtering is set in the Tracker preferences.

    +Nimenkirjoitussuodatus +

    Sen sijaan, että hypätään tiedostoon nimen kirjoittamisen yhteydessä, olemassa on myös valitsin, jolla voidaan suodattaa pois kaikki tiedostot, jotka eivät täsmää kirjoittamiisi merkkeihin. Tämä parantaa selvyyttä dramaatttisesti, erityisesti kansioissa, joissa on paljon tiedostoa. Käyttämällä näppäimiä VAIHTO VÄLILYÖNTI erottimena, voit kirjoittaa jopa useita merkkijonoja.
    +Päinvastoin kuin haun eteneminen kirjoittamisen aikana, suodatus jää toteutumatta kunnes painat näppäintä ESC tai suljet ikkunan (tai poistut kansiosta, jota olet käyttänyt yhden ikkunan navigoinnissa).
    +Tämä nimenkirjoitussuodatus asetetaan Seuraaja-asetuksissa.

    index -Appearance

    +Ulkoasu window-menu.png -

    Tracker windows offer three different viewing modes from the Window menu:

    +

    Seuraaja-ikkunat tarjoavat kolme erilaista näkymätilaa Ikkuna-valikosta:

      -
    • Icon view (ALT 1) - Big icons, you can change the size from the submenu or in/decrease their size with ALT +/-.

    • -
    • Mini icon view (ALT 2) - Small icons.

    • -
    • List view (ALT 3) - A detailed list of your files enabling you to show/hide available attributes. (See topic Attributes.)

    • +
    • Kuvakenäkymä (ALT 1) - Suuret kuvakkeet, voit vaihtaa kokoa alivalikosta tai kasvattaa tai pienentää niiden kokoa näppäimillä ALT +/-.

    • +
    • Minikuvakenäkymä (ALT 2) - Pienet kuvakkeet.

    • +
    • Luettelonäkymä (ALT 3) - Tiedostojesi yksityiskohtainen luettelo, jossa voit näyttää tai piilottaa käytettävissä olevat attribuutit. (Katso aihe Attribuutit.)

    -

    The Window menu offers a number of other functions:

    +

    Ikkuna-valikko tarjoaa lukuisia muita funktioita:

      -
    • Resize window (ALT Y) - Resizes the window to its ideal size.

    • -
    • Arrange by... - Only available in Icon or Mini icon view, a submenu allows to set the sorting order to various properties:

      +
    • Muuta koko sopimaan (ALT Y) - Muuttaa ikkunan kokoa sen ihannekokoon.

    • +
    • Järjestä: - Käytettävissä vain Kuvake- tai minikuvakenäkymässä, alivalikko sallii lajittelujärjestyksen asettamisen seuraaviin ominaisuuksiin:

        -
      • Name, Real name, Size, Modified, Created, Kind, Location, Permissions

      • -
      • Reverse order - Inverts the sorting order

      • -
      • Clean up (ALT K) - Aligns all icons to an invisible grid. Hold down SHIFT and the menu becomes Clean up all which additionally sorts all icons according to the above selected criterium.

      • +
      • Nimi, Oikea nimi, Koko, Muokattu, Luotu, Tyyppi, Sijainti, Käyttöoikeudet

      • +
      • Käänteinen järjestys - Kääntää lajittelujärjestyksen päinvastaiseksi

      • +
      • Siivous (ALT K) - Tasaa kaikki kuvakkeet näkymättömän rasteriin. Pidä alhaalla näppäintä VAIHTO ja valikoksi tulee Siivoa kaikki, mikä lisäksi lajittelee kaikki kuvakkeet yllä valitun kriteerin mukaisesti.

    • -
    • Select... (SHIFT ALT A) - Select files according to a regular expression.

    • -
    • Close (ALT W) - Closes the window. Hold down SHIFT and the menu becomes Close all which closes every Tracker window.

    • -
    • Close all in workspace (ALT Q) - Closes every Tracker window in the current workspace. A useful shortcut if you forgot to hold the OPT key while clicking through folders and all those still open Tracker windows clutter your workspace.

    • +
    • Valitse... (VAIHTO ALT A) - Valitse tiedostot säännöllisten lausekkeiden mukaisesti.

    • +
    • Sulje (ALT W) - Sulkee ikkunan. Pidä alhaalla VAIHTO-näppäin ja valikoksi tulee Sulje kaikki, joka sulkee jokaisen Seuraaja-ikkunan.

    • +
    • Sulje kaikki työtilassa (ALT Q) - Sulkee jokaisen Seuraaja-ikkunan nykyisessä työtilasssa. Hyödyllinen pikanäppäin, jos unohdat pitää alhaalla Alt Gr-näppäintä kun napsauttelet kansion läpi ja kaikki yhä auki olevat Seuraaja-ikkunat sotkevat työtilaasi.

    -

    Sometimes you just want to rearrange a few icons without doing a complete Clean up (ALT K). In that case, you select these icons and start to drag them to their new location. Before you drop them there, keep ALT pressed. This will align the icons to the invisible grid.

    -

    The rest of the functions are pretty self-explanatory, leaving the Tracker preferences.

    +

    Joskus haluat vain järjestää muutaman kuvakkeen tekemättä täydellistä Siivousta (ALT K). Valitse siinä tapauksessa nämä kuvakkeet ja aloita raahaamaan niitä niiden uuteen sijaintipaikkaan. Ennen kuin pudotat ne sinne, pidä näppäin ALT painettuna. Tämä tasaa kuvakkeet näkymättömään rasteriin.

    +

    Loput funktioista ovat aika itsestäänselviä, siirrytään Seuraaja-asetuksiin.

    index -Tracker preferences

    -

    Window | Preferences... opens a panel that offers a number of settings that, where not obvious, should become clear once tried out. Since all settings are applied live, you'll immediately see the changes. -
    So, in short, the not so obvious settings:

    +Seuraaja-asetukset +

    Ikkuna | Asetukset... avaa paneelin, joka tarjoaa lukuisia asetuksia jotka, missä ei ole ilmeistä, pitäisi tulla selväksi yhdellä yrityksellä. Koska kaikki asetukset toteutetaan välittömästti, näet muutokset heti. +
    Joten lyhyesti ei niin ilmeiset asetukset:

      -
    • Desktop - Decide if all mounted disks appear directly on the Desktop or in a window after clicking a single Disk icon sitting on the Desktop.

    • -
    • Windows - You can set Single window navigation, i.e. a double-clicked folder doesn't open in its own window, but inside the already open window instead, replacing the view of it's parent folder. This is not the same as clicking while holding the OPT key, as described above, because you'll lose the per window saved position and size. +

    • Työpöytä - Päättää, että ilmaantuvatko liitetyt levyt suoraan Työpöydälle vai ikkunaan sen jälkeen kun napsautetaan yhtä Työpöydällä olevaa Levy-kuvaketta.

    • +
    • Ikkunat - Voit asettaa Yhden ikkunan navigoinnin, toisin sanoen kansion kaksoisnapsauttaminen ei avaa sitä omaan ikkunaan, vaan jo avoimen ikkunan sisälle, korvaten ylemmän tason kansionäkymän. Tämä ei ole sama kuin napsauttaminen samalla kuin pidetään Alt Gr-näppäintä, kuten yllä kuvattiin, koska menetät ikkunakohtaisen tallennetun sijainnin ja koon.

      tracker-preferences-navigator.png -

      Before you switch Tracker to Single Window Navigation mode, because that may feel more familiar to you, we recommend giving the menu based browsing a try first, as that may actually work much faster for you after getting used to. On the other hand, single window browsing offers a Navigator where you can enter or copy & paste a path name and use back, forward and up buttons.

      -

      Activating Type-ahead filtering will filter the contents of a Tracker window while you type to only display the files matching your string in their name or any currently displayed attribute. See above.

    • -
    • Trash - Set the behavior when deleting a file.

    • -
    • Volume icons - Set the color of an optional indicator of free space that's shown besides a disk's icon.

    • +

      Ennen yhden ikkunan navigointitilaan vaihtamista, koska se voi tuntua sinusta tutumpaa, suosittelemme ensin kokeilemaan valikkoperustaista selaamista, koska se voi itse asiassa olla paljon nopeampaa, kun siihen vain tottuu. Toisaalta yhden ikkunan navigointi tarjoaa Navigaattorin, jossa voit kirjoittaa tai kopioida ja liittää polkunimen sekä käyttää paluu-, eteenpäin- ja ylöspäin -painikkeita.

      +

      Activoimalla Kirjoittamisen aikainen suodatus Seuraaja-ikkuna sisältö suodatetaan samalla kun kirjoitat näyttäen vain tiedostonimet tai kaikki parhaillaan näytetyt attribuutit, jotka täsmäävät merkkijonoosi. Katso yllä.

      +
    • Roskakori - Aseta käyttäytyminen tiedostoja poistettaessa.

    • +
    • Taltiokuvakkeet - Aseta vapaan tilan valinnaisen indikaattorin väri, joka näytetään levykuvakkeen vieressä.

    -

    This panel, by the way, is also available as Tracker from Deskbar's Preferences.

    +

    Tämä paneeli on muuten käytettävissä myös Seuraajassa Työpöytäpalkin Asetukset-valikosta.

    index -Working with files

    -

    When invoked on a selected file, most of the File menu commands are also offered in the context menu by right-clicking that file.

    -

    As usual the commands are pretty clear.

    +Työskentely tiedostoilla +

    Kun kutsutaan valitun tiedoston kautta, useimmat Tiedosto-valikon komennoista tarjotaan myös asiayhteysvalikosta hiiren kakkospainikkeen napsautuksella tuohon tiedostoon.

    +

    Kuten tavallista, komennot ovat aika selviä.

      -
    • Find... - Find a file or folder. See topic Query for more info.

    • -
    • New - Create a new folder or any other file based on a template. +

    • Etsi... - Etsi tiedosto tai kansio. Katso lisätietoja aiheesta Kysely.

    • +
    • Uusi - Luo uuden kansion tai minkä tahansa muun tiedostoon perustuvan mallinteen.

      new-menu.png -

      Choosing Edit templates... opens the folder /boot/home/config/settings/Tracker/Tracker New Templates. Creating a file in that folder will offer its filetype with the file's name and other attributes as template in the New menu. Here, there's a file "Text" with the filetype text/plain. See topic Filetypes for more info.

    • -
    • Open with... - A submenu offers all applications that can handle this filetype. +

      Valitsemalla Muokkaa mallinnetta... avataan kansio /boot/home/config/settings/Tracker/Tracker New Templates. Luomalla tiedoston tuohon kansioon tarjotaan tiedostotyyppiä tiedostonimellä ja muilla attribuuteilla valikossa Uusi. Tässä siinä on tiedosto "Text" tiedostotyypillä text/plain. Katso lisätietoja aiheesta Tiedostotyypit.

    • +
    • Avaa ohjelmalla... - Alivalikko tarjoaa kaikki sovellukset, jotka voivat käsitellä tätä tiedostotyyppiä.

      open-with.png -

      The preferred application that would open the file when double-clicked, is checkmarked. This submenu lists first those applications that can handle the exact filetype, in this case it's a text file, the type text/plain. Next come all applications that can handle that supertype in general, here text/*. Last in the list are those that can deal with any file. If you don't click on an app in the submenu, but on the Open with... entry instead, a panel opens:

      +

      Ensisijainen sovellus, joka avautuu hiiren kaksoisnapsautuksella, on merkitty aktiiviksi. Tämä alivalikko luettelee ensin ne sovellukset, jotka pystyvät käsittelemään tarkalleen tiedostotyyppiä, tässä tapauksessa tekstitiedostoa, tyyppi text/plain. Seuraavaksi tulee kaikki sovellukset, jotka voivat käsitellä yleensä ylempää tyyppiä, here text/*. Viimeisenä luettelossa on ne sovellukset, jotka voivat käsitellä mitä tiedostoa tahansa. Jos et napsauta sovellusta alivalikossa, vaan sen sijaan valikkoriviä Avaa sovelluksella..., avautuu paneeli:



      open-with-preferred -

      Here you'll again find the programs that were listed in the submenu. By selecting one and clicking the Open and make preferred button, you changed the preferred application for every file of that filetype, here text/plain.

    • -
    • Get info +

      Tässä löydät taas alivalikossa luetellut sovellukset. Valitsemalla yhden ja napsauttamalla painiketta Avaa ja tee ensisijaiseksi, vaihdat ensisijaisen sovelluksen jokaiselle tuon tiedostotyypin tiedostolle, tässä text/plain.

    • +
    • Hae tiedot

      get-info -

      The panel presents info on the selected file and lets you set the default application and, after you expanded that part of the panel, permissions and owner. Clicking on the path will open it in a Tracker window.

    • -
    • Edit name, Duplicate and Move to trash - lets you rename or duplicate a file or put the selected file(s) to the trash.

    • -
    • Move to, Copy to and Create link - lets you move, copy or link the selected file(s) using the submenu navigating method. Holding SHIFT while invoking the menu offers the option to create a relative link.

    • -
    • Cut, Copy and Paste - lets you cut, copy and paste files using the clipboard. By holding SHIFT while invoking the menu you can Copy/Cut more files, maybe from another folder that you can paste somewhere else later. Also, while holding SHIFT you can paste the copied files in the clipboard as links.

    • -
    • Identify - will sniff out and set the type of files if they didn't have one before, e.g. if you transferred a file with wget which doesn't set a filetype itself. Holding SHIFT while invoking the menu changes the item to Force identify which identifies the filetype and corrects it if it was false before.

    • -
    • Add-Ons - offers you every generic Tracker add-on and those that can handle the selected file(s). See topic Tracker Add-ons for more information.

    • +

      Paneeli esittää tietoja valitusta tiedostosta ja sen jälkeen kun olet laajentanut paneelin osaa, myös käyttöoikeuksista ja omistajasta. Polun napsauttaminen avaa sen Seuraaja-ikkunassa.

      +
    • Muokkaa nimeä, Kaksoiskappale ja Siirrä roskakoriin - sallivat sinun nimetä uudelleen tiedoston tai tehdä siitä kaksoiskappaleen tai laittaa valitut tiedostot roskakoriin.

    • +
    • Siirrä kohteeseen, Kopioi kohteeseen ja Luo linkki - sallivat sinun siirtää, kopioida tai linkittää valittuja tiedostoja käyttäen alivalikon navigointimenetelmää. Pitämällä kutsuttaessa näppäintä VAIHTO alhaalla valikko tarjoaa valitsimen suhteellisen linkin luomiseen.

    • +
    • Leikka, Kopioi ja Liitä - sallii sinun leikata, kopioida ja liittää tiedostoja leikepöytää käyttäen. Pitämällä näppäintä VAIHTO alhaalla kutsuttaessa valikkoa voit Kopioi/Leikkaa lisää tiedostoja, ehkä jostain toisesta kansiosta, jotka voit liittää jonnekin muualle myöhemmin. Pitämällä näppäintä VAIHTO alhaalla voit liittää kopioidut tiedostot leikepöydälle linkkeinä.

    • +
    • Tunnista - nuuskii ja asettaa tiedostojen tyypin, jos niillä ei ole tyyppiä aiemmin, esimerkiksi jos siirrät tiedoston sovelluksella wget, joka ei aseta itse tiedostotyyppiä. Pitämällä näppäintä VAIHTO alhaalla valikko kutsuttaessa riviksi vaihtuu Pakota tunnistus, joka tunnistaa tiedostotyypin ja korjaa sen, jos se oli aiemmin väärä.

    • +
    • Lisäosat - tarjoaa sinulle kaikki yleiset Seuraaja-lisäosat ja ne, jotka osaavat käsitellä valittuja tiedostoja. Katso lisätietoja aiheesta Seuraaja-lisäosat.

    index -Transaction status

    -

    When you copy, move or delete files, Tracker shows its progress with a status window. If you initiate more than one transaction, each job gets its own status display.

    +Tapahtumatila +

    Kun kopioit, siirrät ja poistat tiedostoja, Seuraaja näyttää edistymisen tilaikkunassa. Jos aloitat useamman kuin yhden tapahtuman, jokainen työ saa oman tilanäytön.

    transaction-status.png -

    To the right are two buttons to pause or stop a transaction entirely. Sometimes it can be useful to temporarily pause a large transaction. For example, you may need to quickly launch a large application. Copying large amounts of data chokes your harddisk's IO bandwidth and thus delays your workflow.

    +

    Oikealla on kaksi painiketta tapahtuman tauottamiseksi tai pysäyttämiseksi kokonaan. Joskus voi olla hyödyllistä tilapäisesti pysäyttää laaja tapahtuma. Sinun on ehkä esimerkiksi käynnistettävä laajempi sovellus. Suuren tietomäärän kopioiminen tukkii kiintolevysi siirtokaistanleveyden ja siten viivyttää työkulkuasi.

    diff --git a/docs/userguide/fi/twitcher.html b/docs/userguide/fi/twitcher.html index d1cd352839..9f0ce141a8 100644 --- a/docs/userguide/fi/twitcher.html +++ b/docs/userguide/fi/twitcher.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Twitcher + Vaihtaja
    -
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    -

    Twitcher

    +

    Vaihtaja

    -

    The Twitcher is a task switcher to jump between running applications and their windows.

    +

    Vaihtaja on tehtävävaihtaja, joka hyppää suoritettavien sovellusten ja niiden ikkunoiden välillä sovelluksesta toiseen.

    twitcher.png -

    Just tap CTRL TAB to switch between the current and the last application/window. Tapping CTRL TAB very quickly will switch between all applications. Or press and hold CTRL TAB to go through all running applications by repeatedly hitting TAB or /. If you need to get to a specific window of a program, move to its icon as described and then go through its open windows with the / keys.

    -

    You cycle through all an applications visible windows on the current workspace with CTRL ~ (which, depending on the keymap you're using, is the key below ESC).

    -

    It's also possible to invoke the Twitcher with CTRL TAB and then use the mouse to choose the application/window you'll jump to when releasing the CTRL key.

    -

    The Twitcher also offers a few more advanced keyboard shortcuts:

    +

    Napauta vain näppäimiä CTRL SARKAIN vaihtaaksesi nykyisen ja viimeisimmän sovelluksen tai ikkunan välillä. Naputtamalla näppäimiä CTRL SARKAIN hyvin nopeasti vaihtaa kaikkien sovellusten välillä. Tai paina ja pidä alhaalla näppäimiä CTRL SARKAIN siirtymään kaikkien suoritettavien sovellusten kautta toistuvasti lyömällä näppäimiä SARKAIN tai /. Jos sinun on päästävä tiettyyn ohjelmaikkunaan, siirry sen kuvakkeeseen kuten edellä kuvattiin ja siirry sitten sen avoimiin ikkunoihin näppäimillä /.

    +

    Voit pyöräillä kaikkien nykyisessä työtilassa olevien näkyvien ikkunoiden kautta näppäimillä CTRL ~ (mikä käyttämästäsi näppäimistökuvauksesta riippuen on Å-näppäimen oikealla puolella olevan näppäimen Alt Gr ja VÄLILYÖNNILLÄ näkyviin saatava merkki).

    +

    On myös mahdollista kutsua Vaihtajaa näppäimillä CTRL SARKAIN ja käyttää hiirtä sen sovelluksen tai ikkunan valitsemiseen, johon hypätään, kun CTRL-näppäin vapautetaan.

    +

    Vaihtaja tarjoaa myös muutamia edistyneitä näppäimistöpikanäppäimiä:

    - - - + + +
    ESCAborts the twitching and returns to the formerly active window.
    QQuits the selected application.
    HHides all windows of the selected application.
    ESCKeskeyttää vaihtamisen ja palaa aiemmin aktiivisena olleeseen ikkunaan.
    QSulkee valitun sovelluksen.
    HPiilottaa valitun sovelluksen kaikki ikkunat.
    @@ -71,9 +74,9 @@ diff --git a/docs/userguide/fi/workshop-email.html b/docs/userguide/fi/workshop-email.html index a56c7a5532..07d4386fe5 100644 --- a/docs/userguide/fi/workshop-email.html +++ b/docs/userguide/fi/workshop-email.html @@ -9,18 +9,20 @@ * * Authors: * Humdinger + * Translators: + * Karvjorm * --> - Workshop: Managing Email + Työpaja: Sähköpostin hallinta @@ -181,9 +183,9 @@ en ligne de commandes spécifiques à Haiku mérites d'êtres mentionnés. Ces c diff --git a/docs/userguide/fr/applications/activitymonitor.html b/docs/userguide/fr/applications/activitymonitor.html index 60df03f0d7..bed5c820be 100644 --- a/docs/userguide/fr/applications/activitymonitor.html +++ b/docs/userguide/fr/applications/activitymonitor.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/bepdf.html b/docs/userguide/fr/applications/bepdf.html index 1dd5ef33e2..2f94314969 100644 --- a/docs/userguide/fr/applications/bepdf.html +++ b/docs/userguide/fr/applications/bepdf.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/bootmanager.html b/docs/userguide/fr/applications/bootmanager.html index eb11944637..0919c9e562 100644 --- a/docs/userguide/fr/applications/bootmanager.html +++ b/docs/userguide/fr/applications/bootmanager.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/cdplayer.html b/docs/userguide/fr/applications/cdplayer.html index 531a98dcd8..07d5ccef26 100644 --- a/docs/userguide/fr/applications/cdplayer.html +++ b/docs/userguide/fr/applications/cdplayer.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/charactermap.html b/docs/userguide/fr/applications/charactermap.html index dc3c21c08a..d6c97ffffd 100644 --- a/docs/userguide/fr/applications/charactermap.html +++ b/docs/userguide/fr/applications/charactermap.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/cli-apps.html b/docs/userguide/fr/applications/cli-apps.html index 59ddcf1396..c3128d3a7e 100644 --- a/docs/userguide/fr/applications/cli-apps.html +++ b/docs/userguide/fr/applications/cli-apps.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/codycam.html b/docs/userguide/fr/applications/codycam.html index 91dece3dcd..aa16a31600 100644 --- a/docs/userguide/fr/applications/codycam.html +++ b/docs/userguide/fr/applications/codycam.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/deskcalc.html b/docs/userguide/fr/applications/deskcalc.html index 25d3af2c12..e097475d81 100644 --- a/docs/userguide/fr/applications/deskcalc.html +++ b/docs/userguide/fr/applications/deskcalc.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -61,7 +63,7 @@


    DeskCalc est une calculatrice simple qui a néanmoins quelques fonctionnalités qui ne sont pas visibles au premier regard.

    -deskcalc.png +deskcalc.png
    • DeskCalc comprend plus de symboles que ne pourrait faire croire son simple clavier.
      En plus des opérations +, -, *, /, %, ^ et des constantes pi et e, les fonctions mathématiques suivantes sont supportées :
      diff --git a/docs/userguide/fr/applications/diskprobe.html b/docs/userguide/fr/applications/diskprobe.html index 007033ff89..4c67d2debf 100644 --- a/docs/userguide/fr/applications/diskprobe.html +++ b/docs/userguide/fr/applications/diskprobe.html @@ -41,6 +41,8 @@

    • Português
    • Suomi
    • Slovenčina
    • +
    • Magyar
    • +
    • Português (Brazil)
    • English
    diff --git a/docs/userguide/fr/applications/diskusage.html b/docs/userguide/fr/applications/diskusage.html index 196913f158..0c8e5559bf 100644 --- a/docs/userguide/fr/applications/diskusage.html +++ b/docs/userguide/fr/applications/diskusage.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/drivesetup.html b/docs/userguide/fr/applications/drivesetup.html index 6c0a093377..fd2ee6aae5 100644 --- a/docs/userguide/fr/applications/drivesetup.html +++ b/docs/userguide/fr/applications/drivesetup.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/expander.html b/docs/userguide/fr/applications/expander.html index 0e750895ea..b6f9cfb9c9 100644 --- a/docs/userguide/fr/applications/expander.html +++ b/docs/userguide/fr/applications/expander.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -63,14 +65,14 @@ Il suffit de double-cliquer sur une archive pour obtenir cette interface simple :

    expander.png

    - - - + + +
    SourceALT SOuvre la boite de dialogue d'ouverture de fichiers pour vous permettre de trouver l'archive à décompresser.
    DestinationALT DOuvre la boite de dialogue des fichiers pour définir la destination.
    ExpandALT Edémarre la décompression. Celle-ci peut être interrompue avec ALT K.
    SourceAlt OOuvre la boite de dialogue d'ouverture de fichiers pour vous permettre de trouver l'archive à décompresser.
    DestinationAlt DOuvre la boite de dialogue des fichiers pour définir la destination.
    ExpandAlt Edémarre la décompression. Celle-ci peut être interrompue avec Alt K.

    Vous pouvez basculer vers l'affichage avec la liste des fichiers en cochant Show Contents ou en pressant ALT L.

    Expander ne peut décompresser que des archives entières.
    Vous ne pouvez pas extraire ou supprimer de l'archive un fichier seul, ni en ajouter un.
    -

    Edit | Preferences... ou ALT P ouvre un panneau de préférences qui offre quelques paramètres utiles pour ajuster le comportement de l'Expander.
    +

    Settings | Settings… ou Alt S ouvre un panneau de préférences qui offre quelques paramètres utiles pour ajuster le comportement de l'Expander.
    Les options parlent d'elles-même :

    expander-preferences.png

    diff --git a/docs/userguide/fr/applications/icon-o-matic.html b/docs/userguide/fr/applications/icon-o-matic.html index 2a7d82fb60..ee21dad9af 100644 --- a/docs/userguide/fr/applications/icon-o-matic.html +++ b/docs/userguide/fr/applications/icon-o-matic.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/installer.html b/docs/userguide/fr/applications/installer.html index df1790d315..4d390b569f 100644 --- a/docs/userguide/fr/applications/installer.html +++ b/docs/userguide/fr/applications/installer.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/list-cli-apps.html b/docs/userguide/fr/applications/list-cli-apps.html index 1dd2e0953e..ccd42d0d15 100644 --- a/docs/userguide/fr/applications/list-cli-apps.html +++ b/docs/userguide/fr/applications/list-cli-apps.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/magnify.html b/docs/userguide/fr/applications/magnify.html index d8724758b9..75cce474b9 100644 --- a/docs/userguide/fr/applications/magnify.html +++ b/docs/userguide/fr/applications/magnify.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/mail.html b/docs/userguide/fr/applications/mail.html index 76f1c670d1..9edf8c48b0 100644 --- a/docs/userguide/fr/applications/mail.html +++ b/docs/userguide/fr/applications/mail.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -55,9 +57,9 @@ - +
    Index
    Reading messages
    - Creating new messages
    - Preferences
    Lecture des messages
    + Créer des nouveaux messages
    + Préférences

    mail-icon_64.pngMail

    @@ -65,29 +67,29 @@ Deskbar :Applications Localisation :/boot/system/apps/Mail Réglages :~/config/settings/Mail/
    -~/config/settings/Mail/Menu Links/ - Objects put here appear in the mailbox' context menu
    -~/config/settings/Mail/signatures/ - Location to store signatures
    -~/config/settings/Mail/status/ - Location to store custom statuses +~/config/settings/Mail/Menu Links/ - Les objets mis ici apparaissent dans le menu contextuel de la boite de réception
    +~/config/settings/Mail/signatures/ - Emplacement pour stocker les signatures
    +~/config/settings/Mail/status/ - Emplacement pour stocker les statuts personnels


    Mail is Haiku's default viewer and editor of emails. It has nothing to do with the actual fetching and sending of mails, which is done by the mail_daemon and can be configured via the E-mail preferences.

    This page is a general overview of the application Mail. For more information how email in Haiku works, refer to the Workshop on managing email.

    index -Reading messages

    -

    You double-click an email file to open it in Mail. The interface is quite simple:

    +Lecture des messages +

    L'ouverture d'un fichier de courrier se fait par un double-clic. L'interface est assez simple :

    email-read.png

    A menu and optional tool bar on top, with an area of the interesting attributes of a mail (to, from, subject, date) below that, and then the actual body of the mail. If the mail appears with strange characters or empty, try to change the Decoding from the pop-up menu.

    If there are files attached to an email, they are listed at the end of the message. A right-click on one opens a context menu to Save attachment... or Open attachment. You can also drag & drop directly to the Desktop or another Tracker window.

    -

    Most of the menu and tool bar items are pretty self-explaining, so we'll concentrate just on the highlights.

    +

    La plupart des menus et des éléments de la barre d'outils étant assez explicites, Nous allons nous concentrer sur les points phares.

    -indexFile

    +indexFile (Fichier)

    When you close the window of a new mail, its status is normally switched from "New" to "Read". But you can set other statuses as well, by choosing from the Close and... submenu. There you'll also find the option Set to... to create your own custom statuses, which are saved under ~/config/settings/Mail/status/.

    -indexEdit

    +indexEdit (Édition)

    Here you'll find an item to open Mail's Preferences... (see below) and a shortcut to manage your Accounts..., which will open the E-mail preference panel.

    -indexView

    +indexView (Vue)

    You'll only seldomly need these two items, if at all:

    @@ -106,12 +108,12 @@

    When you've opened an email from a Tracker or query result window, Previous message and Next message will move to the previous/next email in the list.

    Save address collects all email addresses from the header and the actual email body in a submenu. Choosing an address will open the People application in order to complete and save the contact information.

    -indexQueries

    +indexQueries (Requêtes)

    This doesn't work yet, but is intended to hold queries that would show all mail related to the currently open mail, like all from the same sender or same subject/thread.

    index -Creating new messages

    +Créer des nouveaux messages

    A new email is created by invoking the New mail message menu or the corresponding icon from the tool bar of an open email. Or you just start the Mail application or choose Create new message... from the context menu of the mailbox icon in the Deskbar.

    email-write.png

    The window is pretty similar to the one when reading mails. The menu and tool bar items are slightly different and the text boxes have to be filled with the recipient's email address, subject and so on, of course.

    @@ -121,10 +123,10 @@ To, CC, and BCC are pop-up menus. They contain all email addresses on your system found by a query for People files. Their "Group" attribute will sort them in corresponding submenus.

    Again, we'll focus on the more interesting features in the menus.

    -indexFile

    +indexFile (Fichier)

    With Save as draft you can store your work so far and come back to it later. To load it again, choose it from the Open draft submenu that will list the result of a query for all mails with the status "Draft".

    -indexEdit

    +indexEdit (Édition)

    Quote and Remove quote or their respective shortcuts ALT / are used to add/remove a level of quoting by adjusting the number of ">" symbols in front of quoted lines. Just select some text in all the lines you want un/quoted and invoke the menu item.

    email-spellcheck.png @@ -143,19 +145,19 @@ Right-clicking such a word opens a context menu offering suggestions to correct email-attachments.png -

    File attachments are listed below the header section. You can remove a file by invoking a context menu or by selecting it and pressing DEL.

    +

    Les fichiers joints sont listés sous la section d'entête. Vous pouvez retirer un mail en invoquant le menu contextuel ou en le sélectionnant avant de presser la touche Suppr.

    -indexQueries

    +indexQueries (Requêtes)

    This doesn't work yet, but is intended to hold queries that would show all mail related to the currently open mail, like all to the same recipient or same subject/thread.

    index -Preferences

    +Préférencesemail-preferences.png -

    Mail's preferences come in two parts:

    +

    Les préférences de courrier se présentent en deux parties :

    -indexUser interface

    +indexUser interface (Interface utilisateur)
    Show headerALT HShows the complete header of a mail, in case you need to track down the path of your mail, for example.
    @@ -166,7 +168,7 @@ Right-clicking such a word opens a context menu offering suggestions to correct
    Button barOptions to show labels under the icons or hide the tool bar completely.
    FontSets the type of font used for the email text.

    -indexMailing

    +indexMailing (Publipostage) diff --git a/docs/userguide/fr/applications/mediaplayer.html b/docs/userguide/fr/applications/mediaplayer.html index ee5e26980e..488f79afac 100644 --- a/docs/userguide/fr/applications/mediaplayer.html +++ b/docs/userguide/fr/applications/mediaplayer.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/midiplayer.html b/docs/userguide/fr/applications/midiplayer.html index 942cd6d378..40fb3ce53e 100644 --- a/docs/userguide/fr/applications/midiplayer.html +++ b/docs/userguide/fr/applications/midiplayer.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/packageinstaller.html b/docs/userguide/fr/applications/packageinstaller.html index e4cbc5baae..ebfb5a60e8 100644 --- a/docs/userguide/fr/applications/packageinstaller.html +++ b/docs/userguide/fr/applications/packageinstaller.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/pe.html b/docs/userguide/fr/applications/pe.html index 9f47ce07c6..96de6342fc 100644 --- a/docs/userguide/fr/applications/pe.html +++ b/docs/userguide/fr/applications/pe.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/people.html b/docs/userguide/fr/applications/people.html index be00c20cc9..3036ce54ec 100644 --- a/docs/userguide/fr/applications/people.html +++ b/docs/userguide/fr/applications/people.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/poorman.html b/docs/userguide/fr/applications/poorman.html index 61c01b746a..c2b569da8b 100644 --- a/docs/userguide/fr/applications/poorman.html +++ b/docs/userguide/fr/applications/poorman.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/screenshot.html b/docs/userguide/fr/applications/screenshot.html index 28620cc96e..4e77af0a48 100644 --- a/docs/userguide/fr/applications/screenshot.html +++ b/docs/userguide/fr/applications/screenshot.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/showimage.html b/docs/userguide/fr/applications/showimage.html index 7e194464ea..6733192dac 100644 --- a/docs/userguide/fr/applications/showimage.html +++ b/docs/userguide/fr/applications/showimage.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/soundrecorder.html b/docs/userguide/fr/applications/soundrecorder.html index 72e4d7c3c5..e4f94a2973 100644 --- a/docs/userguide/fr/applications/soundrecorder.html +++ b/docs/userguide/fr/applications/soundrecorder.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/stylededit.html b/docs/userguide/fr/applications/stylededit.html index b8f26031ae..85ba221ddc 100644 --- a/docs/userguide/fr/applications/stylededit.html +++ b/docs/userguide/fr/applications/stylededit.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/terminal.html b/docs/userguide/fr/applications/terminal.html index c53d1971e0..e7d9ccc85b 100644 --- a/docs/userguide/fr/applications/terminal.html +++ b/docs/userguide/fr/applications/terminal.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/textsearch.html b/docs/userguide/fr/applications/textsearch.html index 91f525defe..0760076fac 100644 --- a/docs/userguide/fr/applications/textsearch.html +++ b/docs/userguide/fr/applications/textsearch.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -72,7 +74,7 @@
    - + diff --git a/docs/userguide/fr/applications/tv.html b/docs/userguide/fr/applications/tv.html index 396d6e745d..e07b797980 100644 --- a/docs/userguide/fr/applications/tv.html +++ b/docs/userguide/fr/applications/tv.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/vision.html b/docs/userguide/fr/applications/vision.html index c0fd3cbf46..b47127730f 100644 --- a/docs/userguide/fr/applications/vision.html +++ b/docs/userguide/fr/applications/vision.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/webpositive.html b/docs/userguide/fr/applications/webpositive.html index f26297942a..2da795b091 100644 --- a/docs/userguide/fr/applications/webpositive.html +++ b/docs/userguide/fr/applications/webpositive.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/applications/wonderbrush.html b/docs/userguide/fr/applications/wonderbrush.html index 553f2c29c8..3ba164bb00 100644 --- a/docs/userguide/fr/applications/wonderbrush.html +++ b/docs/userguide/fr/applications/wonderbrush.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/attributes.html b/docs/userguide/fr/attributes.html index 4a4f5b1072..af8c290383 100644 --- a/docs/userguide/fr/attributes.html +++ b/docs/userguide/fr/attributes.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/bash-scripting.html b/docs/userguide/fr/bash-scripting.html index 6a475d320e..22eb71cd27 100644 --- a/docs/userguide/fr/bash-scripting.html +++ b/docs/userguide/fr/bash-scripting.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/bootloader.html b/docs/userguide/fr/bootloader.html index d54b996c7d..e784380c7c 100644 --- a/docs/userguide/fr/bootloader.html +++ b/docs/userguide/fr/bootloader.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/fr/contents.html b/docs/userguide/fr/contents.html index 1affceb378..48c275d552 100644 --- a/docs/userguide/fr/contents.html +++ b/docs/userguide/fr/contents.html @@ -4,7 +4,7 @@ diff --git a/docs/userguide/fr/preferences/fonts.html b/docs/userguide/fr/preferences/fonts.html index c3c1e899cf..5a23f21aa6 100644 --- a/docs/userguide/fr/preferences/fonts.html +++ b/docs/userguide/fr/preferences/fonts.html @@ -40,18 +40,22 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  FileTypes  -::  Préférences  -::  Keyboard  » + « FileTypes +:: Préférences +:: Keyboard »
    +

    Since "Fonts" moved into the Appearance panel, this is an outdated page. Do not translate!

    +

    fonts-icon_64.pngFonts

    Default accountIf you have several email accounts, this specifies which to use by default when creating a new message.
    Reply accountWhen you reply to a mail, you can either always Use default account set in the pop-up menu above, or use the Account from mail, which will send the mail from the same account that received the original message.
    Set target...CMD FVous permet de choisir un nouvel ensemble de fichiers et de dossiers à examiner.

    Le menu Action

    Trim selectionCMD T Supprime toutes les entrées de la liste qui ne sont pas actuellement sélectionnées.
    Open selectionCMD OOuvre les fichiers sélectionnés avec leurs applications préférées (comme avec un double-clic). Si c'est un éditeur de texte qui le supporte (comme Pe), vous pouvez passer à la ligne exacte où la chaîne a été trouvé.
    Open selectionAlt OOuvre les fichiers sélectionnés avec leurs applications préférées (comme avec un double-clic). Si c'est un éditeur de texte qui le supporte (comme Pe), vous pouvez passer à la ligne exacte où la chaîne a été trouvé.
    Open files in TrackerCMD KOuvre l'emplacement des fichiers sélectionnés dans Tracker.
    Copy text to clipboardCMD CCopie la sélection actuelle dans le presse papier.

    Le menu Réglage (Settings)

    @@ -61,27 +65,25 @@
    Deskbar :Preferences


    fonts.png -

    Haiku met à disposition 3 polices standards répondant chacune à un besoin différent. -La taille et le type de police que vous associerez aux types simple, gras et à espacement fixe, seront utilisées dans tout le système. -Par ailleurs, il existe aussi un réglage séparé de la police utilisée dans les menus.

    +

    Haiku défini trois polices standards selon les besoins. Ainsi, vous choisissez les types de polices pour les styles simple, gras et fixe avec la taille qui sera utilisée dans tout le système. De plus, vous disposez aussi d'un réglage séparé de la police utilisée dans les menus.

    - - + +
    Defaults réinitialise toutes les valeurs par défaut.
    Revert restaure les paramètres qui étaient actifs quand vous êtes entré dans les préférences des polices.
    Defaults réinitialise toutes les valeurs par défaut.
    Revert restaure les paramètres qui étaient actifs quand vous êtes entré dans les préférences des polices.

    index Installer de nouvelles polices

    -

    Vous installez de nouvelles polices en les copiant dans leurs dossiers utilisateurs respectifs, c'est à dire /boot/common/data/fonts/ ou /boot/home/config/data/fonts/ (voir le sujet Structure du système de fichiers).

    +

    Vous installez de nouvelles polices en les copiant dans leurs dossiers utilisateurs respectifs, i.e. /boot/common/data/fonts/ ou /boot/home/config/data/fonts/ (Voir le sujet sur la structure du système de fichiers).

    diff --git a/docs/userguide/fr/preferences/keyboard.html b/docs/userguide/fr/preferences/keyboard.html index 93ae155e56..e2a25a8941 100644 --- a/docs/userguide/fr/preferences/keyboard.html +++ b/docs/userguide/fr/preferences/keyboard.html @@ -40,10 +40,12 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  Fonts  + «  FileTypes  ::  Préférences  ::  Keymap  » @@ -72,7 +74,7 @@ - Workshop: Managing Email + Atelier : Gérer son courrier @@ -38,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -63,7 +67,7 @@ -

    Workshop: Managing Email

    +

    Atelier : Gérer son courrier

    This workshop takes a look on how to manage email under Haiku. It assumes that the email services are correctly configured with the E-Mail preferences and you're familiar with the basic features of the Mail application.

    @@ -101,7 +105,7 @@ In any case, try to keep the status name short. That way it always fits in a nor

    index -Using queries

    +Utiliser les requêtes

    Sure, you specify a folder to store all your email, you can open it et voilà, there's all you mail. But over time the folder becomes crowded and showing all will take longer and longer as thousands of files and their attributes have to be parsed and sorted. Also, most of the time you don't really care about two year old emails of Nigerian princes and their inheritory trouble ...

    A lot of time when populating a folder is spent on putting files read from disk into the correct sorting order and displaying that in the window. If you do have to open a folder with a huge number of files, you can shorten the wait by making the Tracker window "invisible", i.e. either minimize it or change to another workspace. Watch ProcessController to see how it affects CPU usage.

    Queries, to the rescue!

    @@ -116,7 +120,7 @@ In any case, try to keep the status name short. That way it always fits in a nor

    index -Query examples

    +Exemples de requêtes

    Here are a few examples of useful queries:

    index -More tips

    +Conseils supplémentaires
    • If you don't save a query as "Query" but as "Query template", invoking it won't show the result window, but the Find... window instead. That way you can easily exchange the search string for the subject or sender, for example, or change a "2 days" time limit to "3 days".

    • Activating "type-ahead filtering" in Tracker's preferences allows you to very quickly filter a query result even further. Often it's enough to query for all mails of the last 3 days and go with type-ahead filtering from there. The big advantage is, that you don't have to exactly specify which attribute to search for, as all displayed are considered when filtering.

    • diff --git a/docs/userguide/fr/workshop-filetypes+attributes.html b/docs/userguide/fr/workshop-filetypes+attributes.html index 8af3aa83f1..b8f65f8034 100644 --- a/docs/userguide/fr/workshop-filetypes+attributes.html +++ b/docs/userguide/fr/workshop-filetypes+attributes.html @@ -41,6 +41,8 @@
    • Português
    • Suomi
    • Slovenčina
    • +
    • Magyar
    • +
    • Português (Brazil)
    • English
    diff --git a/docs/userguide/fr/workshop-wlan.html b/docs/userguide/fr/workshop-wlan.html new file mode 100644 index 0000000000..94fc6d16a8 --- /dev/null +++ b/docs/userguide/fr/workshop-wlan.html @@ -0,0 +1,148 @@ + + + + + + + + + Atelier : Réseaux sans-fils + + + + + + + + +
    +
    + + +
    query-1.png
    @@ -132,7 +136,7 @@ This finds all posts from the Haiku commit list of the past 12 hours.
    + + +
    Index
    + Faire fonctionner du matériel supporté
    + Joindre un réseaux sans-fils
    + Joindre un réseau à partir de la ligne de commande
    + Conseils +
    + +

    Atelier : Réseaux sans-fils

    + +

    Arriver à faire fonctionner le réseau est indispensable pour répondre au besoin actuel d'avoir en permanence une connexion internet. Comme maintenir à jour les pilotes pour du matériel toujours différent et en constante évolution est tout à fait impossible pour un petit projet, Haiku s'appuie sur une couche de compatibilité FreeBSD pour ses pilotes réseaux.
    +Cela permet de supporter un grand nombre de matériels, mais probablement pas 100% de ce qui existe. Consultez cette liste des modèles supportés ou compulsez les notes de parution FreeBSD 9 dédiées au matériel.

    +
    Pour le moment, seuls les périphériques PCI, PCI-X, PCI-Express, Mini PCI, and Mini PCI-Express sont supportés.
    Les périphériques PCMCIA, CardBus, ExpressCard, USB and ISA ont encore besoin de travail avant de devenir fonctionnels.
    + +

    +index +Faire fonctionner du matériel supporté

    +

    Même si vous franchissez le premier obstacle du matériel normalement supporté, certaines cartes réseau sans-fils ont besoin de modules binaires pour fonctionner correctement : le firmware. Haiku ne peut pas inclure les fichiers de certains de ces firmwares propriétaires en raison de problèmes de licences. Haiku comprennent toutefois un script simple qui permet de récupérer et d'installer tous les composants propriétaires nécessaires pour vous. En règle générale, si vous prévoyez d'utiliser un réseau sans-fils, il est conseillé d'exécuter ce script pour s'assurer que votre système dispose de tous les firmwares le moment venu.

    +

    Ouvrir un Terminal et saisir :

    +
    install-wifi-firmwares.sh
    +

    Maintenant passez les licences en revue puis acceptez-les afin d'installer tous les fichiers de firmwares disponibles.

    + +

    Si vous n'avez pas accès à Internet à partir d'Haiku, pour télécharger les firmwares manquant, il y a une méthode hors ligne, referez vous aux conseils ci-dessous.

    + +

    +index +Joindre un réseaux sans-fils

    +

    Par défaut, Haiku rejoint le premier réseau sans-fils non chiffré qu'il trouve après le démarrage. Pour rejoindre un réseau particulier, utilisez l'appliquette NetworkStatus.

    +

    Faites un clic-droit sur son icône dans la Deskbar et choisissez le nom public du réseau (qui correspond au « SSID » qu'il diffuse) à partir du menu contextuel.

    +join-network.png +

    Une fenêtre s'ouvre où entrer le type d'authentication (probablement WPA/WPA2, ce dernier étant préférable au WEP dont le chiffrage n'est plus suffisamment sécurisé !) et le mot de passe pour ce réseau sans-fils. Cliquez OK pour démarrer la procédure de connexion.
    +En fonction de votre configuration matérielle et réseau, cela peut prendre un certain temps. Vous serez tenu informé de l'état d'avancement par des notifications :

    +join-network.gif +

    Une fois que l'icône d'état réseau affiche la mention « Prêt » et une lumière verte, la connexion est établie. Si les notifications se terminent par «Pas de lien» et un triangle jaune, alors quelque chose c'est mal passé : probablement un mot de passe incorrect.

    + +

    +index +Joindre un réseau à partir de la ligne de commande

    +

    S vous préférez utiliser la ligne de commande ou si vous écrire un script ou le ~/config/boot/UserBootscript pour automatiser le ralliement à un réseau en particulier au démarrage, vous disposez de la commande ifconfig.

    +

    Démarrer un Terminal et entrez la première ligne pour scanner les réseaux sans fils disponibles :

    +
    ifconfig /dev/net/iprowifi3945/0 scan
    +name                             address              signal  auth
    +haiku-top                        01:d0:19:a6:88:42        30  WPA
    +ArcorInternet123                 00:20:12:a4:29:e1        15  WPA
    +

    Le chemin de votre adaptateur réseau sans-fils doit évidemment être ajusté.
    +La sortie affiche le nom public (SSID), l'adresse MAC, la force du signal et la méthode d'authentification de tous les réseaux trouvés.

    +

    Pour joindre un réseau, utilisez cette ligne en spécifiant le nom public (SSID) et mot de passe approprié :

    +
    ifconfig /dev/net/iprowifi3945/0 join {SSID} {mot-de-passe}
    +

    Assurez-vous après le démarrage que la configuration initiale de l'adaptateur du réseau sans-fils soit achevé avant d'émettre des commandes ifconfig ou elles pourraient être ignorées. En fonction de votre matériel ou de votre configuration logicielle, cela peut prendre un certain temps. +Surveillez les notifications…

    + +

    +index +Conseils

    + + + + + + + + + diff --git a/docs/userguide/fr/workspaces.html b/docs/userguide/fr/workspaces.html index 3dcbb0d4cc..33d9b7ce88 100644 --- a/docs/userguide/fr/workspaces.html +++ b/docs/userguide/fr/workspaces.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/hu/applications.html b/docs/userguide/hu/applications.html new file mode 100644 index 0000000000..be3b36baab --- /dev/null +++ b/docs/userguide/hu/applications.html @@ -0,0 +1,189 @@ + + + + + + + + + + Programok + + + + + + + + +
    +
    + +

    Programok

    + +

    Mielőtt elmerülnénk a Haiku programjaiban, nézzük meg, hogyan telepíthetjük a letöltött programokat (például egy, az üdvözlőoldalon feltüntetett oldalról), illetve hogyan távolíthatjuk el őkek.

    +
    Lehetőség szerint csak Haiku alatt csomagoljuk ki a fájlokat. Ha Windows vagy Linux alatt történik a kicsomagolás, és csak később akarjuk átmásolni Haiku-ra a fájlokat, akkor az összes jellemző tulajdonság elvész, ugyanis a többi operációs rendszer nem támogatja a meta-adatokat.
    + +

    +index +Programok telepítése

    +

    A Haiku programok minden esetben becsomagolva érkeznek. A legtöbb esetben ezek ZIP csomagok, de néhány régi program még BeOS Software Valet (PKG) formátumú. A Software Valet lehetőséget nyújtott szkriptek futtatására, tehát elindítása után csak ki kellett választani a lemezt, és a többit a telepítő már elvégezte.
    +ZIP csomag esetében megnyitva azt a Kicsomagolóban, csak ki kell választani a célt, és kicsomagolni. Mint a Fájlrendszer felépítése fejezetben említésre került, a cél mappa a következő lehet:

    + + + +
    /boot/common/apps/ Programok az összes felhasználó számára.
    /boot/home/apps/ Csak az aktuális felhasználó programjai.
    +

    Az elkülönítésnek persze csak akkor lesz értelme, ha a Haiku már támogatni fogja a felhasználók kezelését.

    +

    A kicsomagolás után ajánlott belenézni az újonnan létrehozott mappába, ugyanis gyakran találunk ott fontos leírásokat.

    +

    Néhány programhoz további konfigurálás is szükséges. Például a Nyomkövető kiegészítőket, Értelmezőket vagy egyéb kiegészítőket csak be kell másolni a megfelelő mappába. Néhány esetben szkriptet használhatunk (gyakran .sh kiterjesztéssel) például install, amit csak el kell indítani, és a szkript elvégez minden műveletet.
    +Néha pedig egy mappa-hivatkozást találunk, ami a cél mappát jelöli (például: drag [filename] here...). Vagyis, csak követni kell a leírást ("húzd ide"), és már kész is.

    +

    A legtöbb esetben a kicsomagolás után semmi dolgunk nincs.
    +Az Asztalsáv vagy az Indítósáv leírásai tartalmaznak információkat, hogy hogyan lehet létrehozni indító ikonokat az új programokhoz.

    + +

    +index +Programok eltávolítása

    +

    Ha a telepítés szkript használatával történt, akkor valószínű, hogy egy eltávolító szkript is található a program mellett. Ebben az esetben csak azt kell elindítani.
    +Egyébként egyszerűen csak töröljük a programot.

    +

    Persze; ebben az esetben maradhatnak vissza konfigurációs fájlok a ~/config/settings mappában. Ezek megtarthatóak arra az esetre, ha a későbbiekben újra szeretnénk telepíteni az adott programot. Ez igaz arra az esetre is, amikor a telepítés során egy mappába kelett behúzni azokat ("drag [filename] here...").

    +

    Az egyik leggyorsabb módszer az, ha rákeresünk a program nevére. Ekkor megkaphatjuk az összes fájlt illetve mappát, ami az adott programmal kapcsolatos. Tehát, csak válasszuk ki, majd töröljük a program fájljait.

    + +

    +index +Haiku programok

    +

    A Haiku sok kicsi, ugyanakkor hasznos programot tartalmaz. A programok a /boot/system/apps/ vagy a /boot/common/apps/ mappában találhatóak. Azok a programok, amik nem egy adatfájl megnyitásával indíthatóak (például a Képmegjelenítő egy kép megnyitásakor) azokat megtaláljuk a Programok menüben az Asztalsávon.

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    iconFolyamatmonitor A rendszer terheltségét/kihasználtságát jeleníti meg grafikonon.
    iconRendszerválasztó Rendszerválasztó menü telepítése a lemezre.
    iconCDLejátszó CD lejátszó.
    iconKaraktertábla Unicode karaktertábla megjelenítése.
    iconCodyCam Web-kamerával készített kép feltöltése a megadott kiszolgálóra.
    iconSzámológép Többfunkciós számológép.
    iconLemezFürkész Hexadecimális szerkesztő.
    iconLemezhasználat Vizuálisan megjeleníti a mappák használatát.
    iconLemezkezelő Lemez/partíció kezelő program.
    iconKicsomagoló Ismert csomagolt fájlok kicsomagolása.
    iconIcon-O-Matic Haiku vektoros ikonok készítése.
    iconTelepítő A Haiku telepítésére szolgáló program.
    iconNagyító Az egérkurzor körüli terület nagyítására szolgáló program.
    iconLevelezés Levelező kliens.
    iconMédialejátszó Multimédia lejátszó az összes támogatott formátumhoz.
    iconMidilejátszó MIDI fájlok lejátszása.
    iconCsomagtelepítő BeOS formátumú (PKG) csomagok telepítője.
    iconNévjegyek Névjegykezelő.
    iconSzegényEmber Egyszerű web-kiszolgáló.
    iconKépernyőkép Képernyőkép-készítő program.
    iconKépmegjelenítő Egyszerű képnézegető.
    iconHangfelvevő Hangrözgítő vonalbemenethez vagy mikrofonhoz.
    iconStyledEdit Egyszerű szövegszerkesztő.
    iconTerminál Felület a bash shell-hez.
    iconSzövegkeresés Szöveg-kereső program.
    iconTV Analóg TV program.
    iconWebPositive Alapértelmezett böngésző.
    + +

    +index +Haiku parancssori alalmazások

    +

    A szokásos parancsssori alkalmazások mellett, melyek a bash "tartozékai", vagy szükségesek a POSIX-kompatibilitás miatt, néhány Haiku-specifikus program is rendelkezésünkre áll. +Ezek a programok szintén használhatóak szkript írásakor is. További információk a Bash és szkriptek fejezetben.

    + + + +
    iconAz összes parancssori alkalmazás
    iconHaiku-specifikus parancsssori alkalmazások
    + +

    +index +A rendszerrel együtt érkező programok

    +

    Az alábbi listában található néhány program, amik a Haiku-project keretében vannak karbantartva, és melyek a rendszerrel együtt érkeznek. Az ezekkel kapcsolatos hibákat illetve kéréseket a program illetékeséhez kell címezni.

    + + + + + + + + + + + +
    iconBePDF PDF megjelenítő.
    iconPe Egy fejlett szövegszerkesztő szintaktikai színezéssel és még sok hasznos funkcióval.
    iconVision IRC kliens.
    iconWonderBrush A YellowBite grafikai programja.
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/activitymonitor.html b/docs/userguide/hu/applications/activitymonitor.html new file mode 100644 index 0000000000..b0df274e92 --- /dev/null +++ b/docs/userguide/hu/applications/activitymonitor.html @@ -0,0 +1,83 @@ + + + + + + + + + Folyamatmonitor + + + + + + + + +
    +
    + +

    activitymonitor-icon_64.pngFolyamatmonitor (ActivityMonitor)

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/ActivityMonitor
    Beállítások:~/config/settings/ActivityMonitor settings
    +


    +

    A rendszer kihasználtságát követhetjük nyomon a Folyamatmonitor elindításával és a különféle komponensek kiválasztásával.

    +activitymonitor.png +

    Az ablakban jobb gombbal kattintva a következő adatokat követhetjük nyomon:
    +Használt/gyorsítótárazott memória, Virtuális memória, Processzor használat, Küldött/fogadott adatok, Laphibák, Szemaforok, Portok, Szálak, Csapatok, Programok, Nyers/szöveg vágólap, Média csomópontok.

    +

    A grafikon alatt a magyarázat látható (mely elrejthető a menüből). A színek és a grafikon háttere módosítható. Csak egy új színt kell ráhúzni bármilyen palettából, például az Icon-O-Matic-ból.

    +

    Új grafikont is tudunk hozzáadni a meglévők mellé a Fájl menüből.

    +

    A Beállítások menü egy másik panelt nyit meg, ahol módosíthatjuk a frissítési gyakoriságot.

    +

    Mindegyik grafikonnak van saját Replikánsa, amit bárhová odadobhatunk, ami képes azt kezelni (például az Asztal).

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/bepdf.html b/docs/userguide/hu/applications/bepdf.html new file mode 100644 index 0000000000..709defb240 --- /dev/null +++ b/docs/userguide/hu/applications/bepdf.html @@ -0,0 +1,83 @@ + + + + + + + + + BePDF + + + + + + + + +
    +
    + +

    bepdf-icon_64.pngBePDF

    + + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/apps/BePDF/BePDF
    Leírás:/boot/apps/BePDF/docs/*
    Beállítások:/boot/common/settings/BePDF
    +


    +

    A BePDF egy PDF megjelenítő. A megjelenítésen kívül még támogatja a könyvjelzőket is (kódolatlan fájloknál). 20 nyelven érhető el, de újabbak adhatóak hozzá egyszerű szöveges fájlként.

    +

    A leírás elérhető HTML és PDF formátumban, és megnyitható a menüből is: Segítség | Leírás megjelenítése....

    +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/bootmanager.html b/docs/userguide/hu/applications/bootmanager.html new file mode 100644 index 0000000000..53f2b0a45e --- /dev/null +++ b/docs/userguide/hu/applications/bootmanager.html @@ -0,0 +1,107 @@ + + + + + + + + + Rendszerválasztó + + + + + + + + +
    +
    + +

    bootmanager-icon_64.pngRendszerválasztó (BootManager)

    + + + + +
    Asztalsáv:Nincs bejegyzés, normál esetben a Telepítő Eszközök menüjéből érhető el.
    Útvonal:/boot/system/apps/BootManager
    Beállítások:Nincs.
    Az MBR biztonsági mentései alapértelmezetten a ~/config/settings/bootman/ mappában találhatóak.
    +


    +

    Ha a Haiku-t nem egy már létező menühöz adod hozzá (például a GRUB-hoz), akkor ezzel a programmal telepíthetünk egy egyszerű menüt a fő rendszertöltőbe (MBR), ami nagyjából így néz ki:

    +bootmenu.png +
    A Rendszerválasztó jelenleg nincs minden eshetőségre kipróbálva, és még mindig van néhány korlátozás benne, mint például a menü csak az első lemezre telepíthető, és ott is kell lenni-e 2KB helynek is a fő rendszertöltő, a Master Boot Record (MBR) után.
    +

    A program végig utasításokat ad, hogy mit és hogyan is csináljunk.

    +

    +index +A cél lemez kiválasztása

    +bootmanager-1.png +

    A Rendszerválasztó indítása után a listában megjelenik az összes elérhető lemez, ahonnan ki kell választanunk azt, ahová telepíteni szeretnénk a menüt. Ha már létezik a kiválasztott lemezen egy menü, akkor az Eltávolítás gomb aktívvá válik, így lehetőségünk van a fő rendszertöltőt (MBR) visszaállítáani, vagyis a menüt törölni.
    +Egyébként válasszuk a Telepítés gombot.

    +

    +index +A fő rendszertöltő (MBR) biztonsági másolata

    +

    Arra az esetre, ha valami probléma történik, és el akarjuk távolítani a menüt, az eredeti fő rendszertöltőről (MBR) most készül egy biztonsági mentés. Ez nyilván egy igen fontos lépés, így bizonyosodj meg róla, hogy nem írsz felül egy másik biztonsági mentést, mert arra is szükséged lehet!

    +bootmanager-2.png +bootmanager-3.png +

    Csak meg kell adni, hogy hová mentsük a biztonsági fájlt (MBR) vagy az alapból megadottat is meghagyhatjuk. Miután a Következőre kattintunk, kapni fogunk egy megerősítést, hogy sikeres lett-e a mentés.

    +

    +index +A menü beállítása

    +bootmanager-4.png +bootmanager-5.png +

    A program felsorolja az összes elérhető partíciót a lemezünkön. Jelöljük be azokat, amiket szeretnénk a menüben látni, és szükség esetén a megjelenítendő nevet is módosítsuk, mely alap esetben a lemez/partíció neve.

    +

    Következő lépésként a menüből válaszuk ki, hogy melyik rendszer induljon el automatikusan, és adjuk meg, hogy mennyi legyen a késleltetés az indítás előtt. Itt az "Azonnal" a menüt egy az egyben ki is hagyja, a "Soha" pedig megáll a menüben. A beállított késleltetést felül is bírálhatjuk az ALT billentyű lenyomva tartásával.

    +

    +index +A menü felírása

    +bootmanager-6.png +bootmanager-7.png +

    Mielőtt a menü felírásra kerül, kapunk egy összesítést a választott beállításokról, és egy utolsó esélyt, hogy megszakítsuk a műveletet. Ne aggódj, addig nincs semmi probléma, amíg az eredeti fő rendszertöltőről (MBR) biztonságban van a készített másolat, így bámikor visszaállítható az. Ha probléma adódik, akkor még mindig lehetőségünk van telepítő CD-ről vagy USB-ről visszaállítani a biztonsági mentést.

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/cdplayer.html b/docs/userguide/hu/applications/cdplayer.html new file mode 100644 index 0000000000..d074c745dd --- /dev/null +++ b/docs/userguide/hu/applications/cdplayer.html @@ -0,0 +1,86 @@ + + + + + + + + + CDLejátszó + + + + + + + + +
    +
    + +

    cdplayer-icon_64.pngCDLejátszó (CDPlayer)

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/CDPlayer
    Beállítások:~/cd/* - az összes azonosított lemez információit itt tárolja
    +


    + +


    +cdplayer.png +

    A használata igen egyszerű.
    +Nyomd le az Ismétlés gombot a Véletlen gomb mellett, ha az egész CD-t ismételni akarod.

    +

    Ha további funkcióra van szükséged, például lejátszó lista, akkor használd a Médialejátszót.

    +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/charactermap.html b/docs/userguide/hu/applications/charactermap.html new file mode 100644 index 0000000000..0a1620122f --- /dev/null +++ b/docs/userguide/hu/applications/charactermap.html @@ -0,0 +1,82 @@ + + + + + + + + + Karaktertábla + + + + + + + + +
    +
    + +

    charactermap-icon_64.pngKaraktertábla (CharacterMap)

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/CharacterMap
    Beállítások:~/config/settings/CharacterMap settings
    +


    +

    A program megjeleníti a betűtípus összes karakterét és azok UTF-8 kódját.

    +charactermap.png +

    A bal oldalon szabványos csoportok találhatóak szűrő funkcióval. Opcionálisan választhatóak Egyéni blokkok is a Nézet menüből. A jobb oldalon az aktuális karakter látható a Betűtípusok menüben megadott betűnek megfelelően. Alatta megadható a betű mérete. Végül pedig alatta látható az egér alatti karakter hexadecimális, decimális és UTF-8 megfelelője.

    +

    Bármelyik karakter a szöveg-mezőbe húzható, vagy a helyi menüből a Másolás (ALT C) vagy a kilépő karaktersor másolása (SHIFT ALT C) választásakor. Ennek az eredménye az vagy \xe2\x82\xac.

    + +
    +
    + + + + diff --git a/docs/userguide/hu/applications/cli-apps.html b/docs/userguide/hu/applications/cli-apps.html new file mode 100644 index 0000000000..6a9befe239 --- /dev/null +++ b/docs/userguide/hu/applications/cli-apps.html @@ -0,0 +1,127 @@ + + + + + + + + + Parancssori programok + + + + + + + + +
    +
    + +

    cli-app-icon_64.pngHaiku-specifikus parancssori programok

    + + +
    Útvonal:/boot/system/bin
    /boot/common/bin
    ~/config/bin
    +


    +

    Az összes, Haiku-val érkező parancssori program a /boot/system/bin és a /boot/common/bin mappában található. A saját programjaidat ajánlott a ~/config/bin mappába másolni. Ezek az útvonalak mind szerepelnek a PATH (keresési útvonal) változóban, és e miatt a benne lévő programokat a rendszer automatikusan megtalálja.
    +Az alábbi lista nem teljes, nem talátalmazza az összes programot, csak a leghasznosabbakat mutatja be. Nézz szét nyugodtan, hogy mi található a bin/ mappákban. Ezeket a programokat a --help paraméterrel indítva kaphatunk egy kis segítséget, hogy milyen opciók érhetőek el a programhoz, illetve hogy hogyan kell azt használni.

    + +

    index +Jellemzőkhöz: listattr, catattr, addattr, rmattr, copyattr

    +

    Ezek a parancsok a jellemzők megjelenítésére, kiolvasására, hozzáadására vagy törlésére használhatóak. +Ezek a meta adatok csak BFS fájlrendszerrel rendelkező lemezeken érhetőek el. A fájlok másolása más fájlrendszerre ezen adatok elvesztésével jár!
    +További információk a Jellemzők a Terminálban című fejezetben.

    + +

    index +Indexeléshez: lsindex, mkindex, reindex, rmindex

    +

    Ezen parancsok használatával kilistázhatóak, létrehozhatóak és törölhetőek az indexeket.
    +További információk az Indexek fejezetben.

    + +

    index +Hasznos parancsok szkriptekhez

    +

    Itt található néhány parancssori program, amik kifejezetten szkriptekhez készültek (további információk a Bash és szkriptek fejezetben).

    + + + + + + + + +

    alert

    Az alert felkínálja a lehetőséget egy figyelmeztető ablak megjelenítésére egyéni szöveggel, ikonnal és 3 gombbal. Eredmény képpen visszaadja a lenyomott gomb címét és a visszatérési kódot (0-val kezdődően). Példa:

    +
    alert --idea "RemekProgram(tm) telepítés kész! Szeretne készíteni egy hivatkozást hozzá?" \
    +"Az Asztalra" "Az Asztalsávba" "Nem kérek"
    +

    cli-alert.png

    +

    filepanel

    A filepanel lehetőséget nyújt arra, hogy kiválasztjuk egy fájl vagy mappa helyét megnyitás vagy mentés céljából. Az ablak bezárása után megkapjuk a kiválasztott fájl vagy mappa útvonalát. Több paraméter is elérhető, például az induló mappa, az ablak címe, mentés esetén a fájl neve, és az engedélyezett fájltípusok. Példa:

    +
    filepanel -s -t "Mentse el a naplót" -d ~/config/settings -n Napló.log
    +

    cli-alert.png

    +

    waitfor

    A waitfor egy hasznos kis program, aminek segítségével várhatunk egy program elindításáig, vagy bezárásig.

    +

    query

    A query a kereső panel parancssori megfelelője. A leggyorsabb módja a kereső feltételeknek a generálására az, ha a kereső panelben a képlet alapján készítjük el a keresési szabályt, majd azt dupla idézőjel (") közé rakva bemásoljuk a query parancs után paraméternek a Terminálba vagy a szkriptbe.

    +
    + +

    index +További parancsok

    + + + + + + + +

    checkfs

    A checkfs egy fontos program, ami a fájlrendszer hibáit ellenőrzi. Egyszerűen csak adjuk meg a lemez nevét, és az összes fájlt le fogja ellenőrizni.

    +

    open

    Az open egy hasznos kis program. Használatával bármilyen fájl megnyitható a hozzárendelt programmal, vagy megadhatjuk neki egy program azonosítóját, így anélkül is indíthatunk programot, hogy tudnánk az útvonalát. Ugyan úgy működik internet címekkel is és "virtuális" mappákkal: . a jelenlegi mappa és .. a szülő mappa, melyek a Nyomkövetőben nyílnak meg.

    +

    desklink

    A desklink lehetőséget ad arra, hogy bármilyen fájlt, mappát, lekérdezést vagy programot az Asztalsávra, a Polcra helyezzünk. Továbbá lehetőségünk van helyi menüvel is ellátni azt. Az alábbi példa a screenshot programot használja néhány opcióval (a "\" az első sor végén a sortörést jelzi a Terminálban):

    +
    desklink "cmd=Aktív ablak (2mp):/bin/screenshot --window --border --delay 2" \
    +"cmd=Replikáns törlése:desklink --remove=screenshot" /bin/screenshot
    +
    +

    cli-alert.png

    +
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/codycam.html b/docs/userguide/hu/applications/codycam.html new file mode 100644 index 0000000000..6db6dfd65b --- /dev/null +++ b/docs/userguide/hu/applications/codycam.html @@ -0,0 +1,81 @@ + + + + + + + + + CodyCam + + + + + + + + +
    +
    + +

    codycam-icon_64.pngCodyCam

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/CodyCam
    Beállítások:~/config/settings/codycam
    +


    +

    A CodyCam használatával megadott időközönként készíthet képeket web-kameráról vagy bármilyen videó bemenetről, amit majd feltölt FTP-n keresztül egy megadott oldalra.

    +My very temporarily installed cam in Dartmoor National Park. +

    Az előnézet alatt balra megadható a fájlnév a sorszámmal együtt. Alatta pedig a formátum és a frissítés ideje adható meg.

    +

    A jobb oldalon pedig ki kell választani a protokolt, ami lehet FTP, sFTP vagy SSH (ha elérhető). Végül pedig meg kell adni a hozzáférési adatokat, illetve a kiszolgálót.

    + +
    +
    + + + diff --git a/docs/userguide/hu/applications/deskcalc.html b/docs/userguide/hu/applications/deskcalc.html new file mode 100644 index 0000000000..e46c1db32a --- /dev/null +++ b/docs/userguide/hu/applications/deskcalc.html @@ -0,0 +1,103 @@ + + + + + + + + + Számológép + + + + + + + + +
    +
    + +

    deskcalc-icon_64.pngSzámológép (DeskCalc)

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/DeskCalc
    Beállítások:~/config/settings/DeskCalc_settings
    +


    +

    Egyszerű számológép, ami remek funkciókat tartalmaz, mégha elsőre nem is látszik.

    +deskcalc.png +
      +
    • A Számológép többet nyújt, mint amit elsőre sugall.
      +Az alapvető műveleteken kívül (+, -, *, /, %, ^) a pi, az e és az alábbi funkciók használhatóak:
      +acos, asin, atan, atan2, ceil, cos, cosh, exp, floor, log, log10, pow, sin, sinh, sqrt, tan, tanh.

    • +
    • A Számológép eléggé toleráns a bevitellel kapcsolatban. Néhány műveletet több módon is bevihetünk:
      +Osztás: /, :, \
      +Szorzás: *, x
      +Ugyanakkor mind a ., mind a , tizedes értéket jelölnek, ezért ne használjuk ezres-tagolásra (például: 1,230.00).

    • +
    • A jobb egérgomb lenyomásával a következő lehetőségeket kapjuk:

      + + + +
      Numerikus billentyűzet bekapcsolása indításkorautomatikusan aktiválja a numerikus billentyűzetet indításkor
      Billentyűzet megjelenítéseaz ablak elhagyásakor a billentyűzet elrejtése
    • +
    • A számológép izlés szerint átméretezhető mindaddig, amíg nem használjuk Replikánsként. Replikánsként való használat esetén be kell jelölni a Replikánsok megjelenítése menüpontot az Asztalsávon.

    • +
    • A Számológép színe is módosítható, csak egy színt kell az ablakra dobni, például az Icon-O-Matic-ból.

    • +
    • A számolási előzmények a és a billentyűkkel előhozhatóak.

    • +
    • A beviteli mező tartalma kijelölhető, és bármelyik programba "bedobható". Arra is lehetőségünk van, hogy azt egy Nyomkövető ablakba vagy az Asztalra dobjuk, mely esetben egy szöveges fájlt hozunk létre a kijelölt tartalommal.

      +

      A műveletek visszavonására is lehetőségünk van:
      +Készítsünk egy-egy kivágást az előbb leírt módon a számolás szakaszairól, majd szükség esetén azokat csak húzzuk az ablakba.
      +Persze, számolás is bedobható a Számológép ablakba.

    • +
    • A Számológép a Terminálból is használható. Ehhez csak annyit kell tennünk, hogy idézőjel közé téve paraméterként adjuk meg a képletet, amit ki akarunk számolni:

      +
      ~> DeskCalc "sin(45)*(cos(12)+3.45)"
      +3.6536554673202546181795194727005826674359494735820338441084848
    • +
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/diskprobe.html b/docs/userguide/hu/applications/diskprobe.html new file mode 100644 index 0000000000..0cae23bc07 --- /dev/null +++ b/docs/userguide/hu/applications/diskprobe.html @@ -0,0 +1,87 @@ + + + + + + + + + LemezFürkész + + + + + + + + +
    +
    + +

    diskprobe-icon_64.pngLemezFürkész (DiskProbe)

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/DiskProbe
    Beállítások:~/config/settings/DiskProbe_data
    +


    +

    A LemezFürkész egy hexadecimális szerkesztő és nézegető, ezen kívül pedig fájlokat és lemezeket tud módosítani bájt szinten. A használatával legyünk óvatosak, mert könnyedén okozhatunk problémát!

    +
    Fájl esetében mindig biztonsági másolatból dolgozzunk, lemezek esetében pedig különösen oda kell figyelni.
    +

    A program elindítása után választanunk kell, hogy egy fájllal vagy lemezzel akarunk dolgozni. Ezt követően a következő felület fogad minket:

    +

    diskprobe.png

    +

    A fő nézet mindig egy blokknyi adatot tartalmaz, aminek a mérete módosítható a Nézet | Blokkméret menüben. Bal oldalon a blokk lenyomata található, középen a hexadecimális értékek, és jobb oldalon pedig azok szöveges megfelelője ASCII karakterekkel.
    +A blokkok közt a fenti csuszkával mozoghatunk, vagy az ALT  és ALT  billentyűkkel, a hexadecimális és az szöveges oszlop között pedig a TAB lenyomásával válthatunk.

    +

    A Blokk | Kijelölés menü nem csak a kijelölést mutatja különféle endiánokkal (és hexadecimális vagy decimális formában, ami megadható a Nézet | Számrendszer menüben), de a kijelölés blokk-lenyomatát is, ahová mindjárt oda is ugorhatunk. Ez az opció nem érhető el, hogyha a pozíció kívül esik a fájlon/eszközön.
    +

    +

    Ha az éppen megnyitott fájlnak jellemzői is vannak, akkor a Jellemzők menü használtó azok megnyitására egy új ablakban. Itt látható például a másolásvédelmi jellemzője a Névjegy programnak: +

    diskprobe-about-attr.png

    +

    A jellemző típusától függően különféle szerkesztőket kaphatunk a jellemzőkhöz az állandóan használható Nyers szerkesztő mellett. Például a szöveg és a MIME típusok szerkeszthetőek, az ikonok megjeleníthetőek.

    +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/diskusage.html b/docs/userguide/hu/applications/diskusage.html new file mode 100644 index 0000000000..1872804f2f --- /dev/null +++ b/docs/userguide/hu/applications/diskusage.html @@ -0,0 +1,92 @@ + + + + + + + + + Lemezhasználat + + + + + + + + +
    +
    + +

    diskusage-icon_64.pngLemezhasználat (DiskUsage)

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/DiskUsage
    Beállítások:~/config/settings/DiskUsage
    +


    +

    A program grafikonon jeleníti meg a lemez kihasználtságát.
    +Ez egy remek program, ami választ adhat a kérdésre: "Hová tűnt a szabad hely a gépen?".

    +

    diskusage.png

    +

    A koncentrikus körök jelképezik a különböző szinteket a fájrendszer szerkezetében. A felső képen a középső kör jelzi a /boot/home mappát. A gyűrű minden egyes szelete közvetlenül a körön kívül egy fájl vagy mappa a /boot/home mappában. Minden egyes szelet egy szinttel mélyebbre visz minket a fájlrendszerben. Az ablakot lehet, hogy át kell méretezni, ha nagyon mélyre akarunk menni.

    +

    A grafikon felett találunk füleket, amivel választhatunk a csatolt lemezek közül. Mielőtt a lemezhasználat megjelenítésre kerül, a programnak elemeznie kell a lemezt. Bár ez nagy méretű lemezek esetében elég sokáig is eltarthat, közben nyugodtan használhatunk egy másik lemezt, ugyanis az elemzés a háttérben zajlik.

    +
      +
    • Ha az adott fájl vagy mappa méretének megfelelő körcikk 2°-nál kisebb, akkor az nem jelenik meg.
    • +
    • A mappáknál megjelenített fájlok száma tartalmazza az almappákban lévő fájlokat is. Továbbá a mappák is fájlnak számítanak.
    • +
    • Azonban a program figyelmen kívül hagyja a hivatkozásokat.
    • +
    +

    Ha az egeret egy szelet fölé mozgatjuk, akkor annak információi megjelennek az állapotsorban.

    +

    Jobb gombbal kattitnva egy szeleten kapunk egy menüt: Információ, Megnyitás (a Nyomkövetőben), Megnyitás ezzel (egy használható programmal) és Újraelemzés.
    +A bal gombbal kattintva a fájl/mappa középre kerül.
    +A középső körön pedig bal gomb hatására egy szinttel fejjebb lépünk.

    +

    A program ablakából bárhová dobhatunk fájlt vagy mappát, akár egy programba, akár az Asztalra, vagy a Nyomkövetőbe. Ugyanakkor a program ablakába dobva egy fájlt vagy mappát azonnal oda ugrik a grafikon, vagyis az kerül a kör közepébe.

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/drivesetup.html b/docs/userguide/hu/applications/drivesetup.html new file mode 100644 index 0000000000..44e4cf99d9 --- /dev/null +++ b/docs/userguide/hu/applications/drivesetup.html @@ -0,0 +1,99 @@ + + + + + + + + + Lemezkezelő + + + + + + + + +
    +
    + +

    drivesetup-icon_64.pngLemezkezelő (DriveSetup)

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/DriveSetup
    Beállítások:~/config/settings/DriveSetup
    +


    +

    A lemezkezelő használatával partíciókat hozhatunk létre vagy törölhetünk. Jelenleg nem tudunk meglévő partíciót átméretezni vagy mozgatni, tehát vagy egy partícionálatlan lemezt kell használnunk, vagy (egy USB lemezt vagy egy másik merevlemezt) elő kell készítenünk egy külső programmal. Például a GParted LiveCD használatával hozzuk létre a partíciókat.

    +drivesetup.png +

    A felső részben a kiválasztott lemez partícióinak grafikus megjelenítése látható. Bár maximálisan 4 elsődleges partíciónk lehet, azokon belül több logikai partíció is létrehozható. A partíciók részletei a lemezek előtti +/- jellel tekinthetőek meg a listában.

    +

    A listában kiválaszthatjuk a partíciókat, és csatolhatjuk, leválaszthatjuk őket a Partíció menüből, vagy az ALT M vagy ALT U kombinációval.

    +

    Meglévő partíciókat törölhetünk is a Partíció | Törlés menüpontjával.

    +
    A partíciók létrehozása/törlése/előkészítése veszélyes folyamat. Mindig ellenőrizzük le kétszer is, hogy biztosan a jó partícióval dolgozunk-e, illetve a fájlokról is van-e biztonsági másolatunk!
    +

    +index +Új partíció létrehozása

    +
    Ha azt tervezed, hogy a teljes lemezt egy partícióként használod, például USB lemezek vagy memória kártyák esetében,akkor a partíciók létrehozását ki is hagyhatod, mindjárt előkészítheted azt.
    +

    Ha a lemezen formázatlan területet találsz, páldául <üres> partíciót, akkor egy újat hozhatsz létre erre a területre a Partíció | Létrehozás...(ALT C) menüjéből.

    +drivesetup-create.png +

    Ekkor egy ablak jelenik meg, ahol megadhatjuk a partíció méretét és típusát. Válasszuk a Be File System típust ha Haiku számára akarjuk létrehozni azt. Itt megjegyzendő, hogy más operációs rendszerek nem feltétlen férnek majd hozzá a létrehozott lemezhez.

    +

    Ha elsődleges partíciót hozunk létre, nem pedig egy már meglévőn belül logikait, akkor a fenti ablakban megjelenik egy Aktív partíció jelölő négyzet is. Ezt be kell jelölni, ha a Haiku-t szeretnénk indítani a gépen.

    +

    Mielőtt használni szeretnénk az újonnan létrehozott partíciót, előtte formázni kell egy adott fájlrendszerre.

    +

    +index +Partíció előkészítése

    +

    Csak leválasztott partíciókat lehet előkészíteni a Partíció | Formázás menü használatával.

    +drivesetup-initialize.png +

    Most meg kell adnia a partíció nevét és a blokk-méretét. 2048 bájt blokkonként ajánlott, de ezen kívül kisebb és nagyobb méretet is választhatunk a felhasználástól függően.
    +Az előkészítéskor az öszes adat el fog veszni a partícióról!

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/expander.html b/docs/userguide/hu/applications/expander.html new file mode 100644 index 0000000000..96abdc03b3 --- /dev/null +++ b/docs/userguide/hu/applications/expander.html @@ -0,0 +1,91 @@ + + + + + + + + + Kicsomagoló + + + + + + + + +
    +
    + +

    expander-icon_64.pngKicsomagoló (Expander)

    + + + + +
    Asztalsáv:Programok. Illetve a fájl megnyitásakor indul.
    Útvonal:/boot/system/apps/Expander
    Beállítások:~/config/settings/Expander_Settings
    +


    +

    A Kicsomagoló egy kis program, ami gyorsan kibontja a gyakori csomagolt fáljokat (zip, gzip, bzip2, rar, tar.gz).
    +Csak el kell indítani a csomagolt fált, és már meg is jelenik a program ablaka:

    +

    expander.png

    + + + + +
    CsomagALT OMegnyílik egy mappa-ablak ahol megkeresheti a csomagolt fájlt.
    CélmappaALT DA megnyíló mappa-ablakban kiválasztva megadhatja a kicsomagolás helyét.
    KicsomagolALT EElkezdődik a kicsomagolás. Ez megszakítható a ALT K kombinációval.
    +

    A csomagolt fájl tartalma megtekinthető, ha bejelöljük a Tartalom megjelenítése opciót, vagy lenyomjuk az ALT L kombinációt.

    +
    A program csak teljes csomagokat tud kibontani.
    +Nem adható meg csak bizonyos elemek kibontása, és a csomagolt fájl tartalma sem módosítható.
    +

    A Beállítások | Beállítások... vagy az ALT S lenyomására megnyílik a beállítások ablak, ahol néhány hasznos beállítást módosíthatunk.
    +Az opciók elég egyértelműek:

    +

    expander-preferences.png

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/icon-o-matic.html b/docs/userguide/hu/applications/icon-o-matic.html new file mode 100644 index 0000000000..71c17a29eb --- /dev/null +++ b/docs/userguide/hu/applications/icon-o-matic.html @@ -0,0 +1,356 @@ + + + + + + + + + Icon-O-Matic + + + + + + + + +
    +
    + + + + +
    Index
    BeOS bittérkép és Haiku vektoros ikon összevetése
    + Az ikon jellemző
    + Ikon készítése az Icon-O-Matic használatával
    + Útvonal
    + Formák
    + Stílus
    + Átalakító
    + Ikon mentése
    + Tippek és trükkök
    + +

    icon-o-matic-icon_64.pngIcon-O-Matic

    + + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/Icon-O-Matic
    Beállítások:~/config/settings/Icon-O-Matic
    + +


    + +

    Mielőtt az Icon-O-Matic használatával foglalkoznánk, előtte néhány mondat a Haiku ikonjairól.

    + +

    +index +BeOS bittérkép és Haiku vektoros ikon összevetése

    +

    A BeOS bittérképes ikonjaival ellentétben a Haiku vektoros ikonokat használ. A Haiku Vector Icon Format (HVIF) a kis méretre és a gyors kirajzolásra lett optimalizálva. Éppen ezért az ikonok nagy része sokkal kisebb, mint a bittérkép vagy az SVG formátumúak esetén. Továbbá a BeOS 8 bites (256 szín) ikonjaival ellentétben a Haiku esetében nincs ilyen korlátozás.
    +Nézzük meg például a Terminál ikonját:

    + + + + +
    BittérképSVGHVIF
    i-o-m-terminal-bitmap32 i-o-m-terminal-bitmap16terminal-icon_32terminal-icon_32
    1,024 bájt
    + 256 bájt
    7,192 bájt 768 bájt
    +

    Itt érdemes megjegyezni, hogy a BeOS 2 fajta ikont használt, egy 16x16 és egy 32x32 képpont méretűt, hogy megfeleőlen nézzen ki mind Lista nézetben, mint pedig Ikon nézetben.

    +

    Erre persze semmi szükség nincs vektoros ikonok használatakor. A vektoros ikonok méretezhetősége is sokkal jobb mint a bittérképeseké. (Megjegyzés: a BeOS csak 16x16 és 32x32 képpont méretű ikonokkal rendelkezett.)

    + + + + + + + + + + + + + +
    16x1632x3264x64128x128
    Bittérképi-o-m-bitmap16i-o-m-bitmap32i-o-m-bitmap64i-o-m-bitmap128
    Vektori-o-m-vector16i-o-m-vector32i-o-m-vector64i-o-m-vector128
    + +

    +index +Az ikon jellemző

    +

    Az ikonokat a fájl jellemzőjeként tárolja a rendszer. Ugyanakkor, ez nem azt jelenti, hogy minden fájlnak rendelkezni-e kell ikon jellemzővel, ugyanis például az adatfájlok ikonjait a Nyomkövető a fájltípusok alapján jeleníti meg. Hogy rendszer szinten módosítsuk egy fájltípus ikonját, ahhoz a Fájltípusok beállításait kell használni. Ha csak egy fájlnak akarjuk módosítani az ikonját, akkor használjuk a fájl Fájltípusok kiegészítőjét. További információk a Fájltípusok fejezetben.

    +
    Jellemző révén vegyük figyelembe, hogy csak a kiegészítő (meta) adatokat használni képes fájlrendszerek tudják megőrizni ezeket az ikonokat. Tehát, ha nem BFS lemezre másolunk fájlokat, akkor előtte csomagoljuk be azokat, más különben az ikonok és minden jellemző elvész.
    + +

    +index +Ikon készítése az Icon-O-Matic használatával

    +

    Az Icon-O-Matic a Haiku ikonszereksztője, ami képes a készített képet HVIF, SVG vagy PNG formátumba menteni. Az ikon közvetlenül egy fájl jellemzőjeként vagy forrásfájlként is elmenthető. Mivel a program a HVIF formátumra szabott, a működése is erre összpontosul.

    +

    A hagyományos vektor-grafikai programokkal ellentétben nem kell foglalkozni a különböző objektumokkal, mint az útvonalakkal, hosszal, színekkel, stb. Az objektumok ("alakzatok") inkább a közös útvonalakból és színekből ("stílusok") állnak össze, és mindegyiknek bizonyos tulajdonságaik is megadhatóak. Az elemek ezen fajta használata a titka a HVIF hatékonyságának. Bár, ez az ikon készítésekor néhány korlátozást eredményez, azért vannak előnyei is.
    +Például több objektum is módosítható együtt egy útvonal újrahasználásával. Gondoljunk csak egy objektumra és annak árnyékára. A közös útvonaluk módosításakor maga az objektum és az árnyéka is automatikusan módosul.

    + +

    Az Icon-O-Matic indításakor az alábbi ablakot kapjuk:

    +i-o-m-overview.png + +

    Hogy készítsünk egy objektumot, ahhoz szükségünk van alakzatra, útvonalra és stílusra. Ezekből akár többet is készíthetünk az Alakzat menüben. Minden objektumtípus (Útvonal, Alakzat, Átalakítás, Stílus) rendelkezik egy menüvel amiben többek között néhány parancs is megtalálható. Minden elemnek van több opciója is, melyek a Tulajdonság nézetben jelennek meg.

    + + +

    +index +Útvonal

    +

    Egy útvonal több pontból áll, melyek vonallal vagy ívvel vannak összekötve. Egy pont hozzáadásakor vagy törlésekor az útvonalnak ki kell lennie jelölve a listában.

    + +

    Egyszerűen csak kattintsunk a vászonba az első pont megadásához. Miközben megadunk egy pontot, döntsük el, hogy egyenes vonalat hozunk majd létre, vagy ívet: egy egyszerű kattintás egyenes vonalat, míg az egér gombjának lenyomvatartása és az egér mozgatása ívet eredményez. Persze, ezt a későbbiekben is módosíthatjuk.

    + +i-o-m-path-ab + +

    Hogy az "A"-ból "B"-t kapjunk, ahhoz néhány pontot át kell alakítani szögletes pontból íves pontra. Ekkor tartsuk lenyomva az ALT billentyűt miközben egy ponton kattintunk és elhúzzuk a foggantyút. Ez egy szimmetrikus ívet eredményez: az egyik foggantyú mozgása követi a másikét. Ha a foggantyúkat egymástól függetlenül akarjuk mozgatni, akkor az ALT lenyomásával mozgassuk a foggantyút.
    +Ugyan ezen a módon válthatunk íves-pontról szögletes pontra, miközben az ALT-ot lenyomva tartjuk.

    + +

    Egy pont mozgatásához egyszerűen csak kattintsunk rá, és mozgassunk azt. Ha több pontot is ki akarunk választani, akkor tartsuk lenyomva a SHIFT-et és rajzoljunk egy négyzetet. A kielölt pontok piros kerettel vannak jelölve (a szokásos fekete helyett).
    +Egy pont beszúrásához kattintsunk két pont közti összekötő vonalra.
    +A kijelölt pontok a DEL lenyomásával törölhetőek vagy bármely ponton kattintva a CTRL lenyomásával törölhető az (csak az az egy).

    + +

    A küllönféle egér kurzor az alábbi műveleteket jelzi:

    + + + + + + + + + + + + + + + + + +
    i-o-m-pointer-move-pathi-o-m-pointer-inserti-o-m-pointer-addi-o-m-pointer-deletei-o-m-pointer-bezieri-o-m-pointer-select
    Pont mozgatásaPont beszúrásaPont hozzáadásaPont törlése
    CTRL
    Szögletes↔Ív
    ALT
    Pontok kijelölése
    SHIFT
    +

    Egy pont (vagy kijelölt pontok) helyi menüjében a következőket találjuk:

    + + + + + + +
    Mind kijelöléseALT AA jelenlegi útvonal összes pontjának kijelölése. (A vászonon kattintva.)
    ÁtalakításTAz (összes kijelölt) pontot egy átalakító dobozba teszi, így azok egyszerre mozgathatóak, méretezhetőek és forgathatóak. Átalakítás után az ENTER leütésével befejezhetjük a műveletet. Ez épp úgy működik, mint az alakzatok esetében, amiről a későbbiekben lesz szó.
    SzétvágásA kijelölt pontból kettőt csinál, amik egymáson helyezkednek majd el a vágás után.
    TükrözésA kijelölt pontok elforgatása 180°-al. Ez csak az íves pontokon használható.
    EltávolításDELA kijelölt pont eltávolítása.
    + +

    Útvonal menü

    +

    Az Útvonal menü tartalmaz néhány nyilvánvaló bejegyzést, mint a Téglalap hozzáadása, Kör hozzáadása, Megkettőzés vagy Eltávolítás. Ezekhez viszont némi magyarázat szükséges:

    + + + + + + +
    MegfordításHa az útvonal nem "zárt" (lásd alább), a vászonon kattintáskor minden esetben egy új pont jön létre a legutóbbihoz kapcsolva. A "Megfordítás" ezzel szemben az első ponthoz kapcsolja az újat.
    TisztításEz hasznos megnyitott SVG képek esetén a felesleges pontok törléséhez.
    Forgatás jobbraALT RAz útvonal forgatása. Ez akkor látványos, ha nem zárt útvonalat forgatunk. Tehát, ha az útvonal így néz ki: ⊂, akkor a következőképpen fog fordulni: ⊂ ∩ ⊃ ∪.
    Forgatás balraALT SHIFT RUgyan az, mint a másik, csak az ellenkező irányba.
    + +

    Útvonal tulajdonságai

    +

    A Tulajdonságok az ablak bal alsó részén a jelenleg kijelölt objektum elérhető beállításait tartalmazza. Az útvonalnak kettő szerkeszthető van: Név és hogy Zárt vagy nem.

    + + +

    +index +Alakzat

    +

    Az alakzat egy vagy több útvonal és azok stílusának a csoportja, ami megjelenik a vásznon. A csoportosítás az útvonalak és a stílusok előtti jelölőnégyzettel történhet: csak jelöljük ki az alakzatot, és válasszuk ki a kívánt útvonalat és stílust.

    +

    Egy alakzat határozza meg, hogy az útvonalat és a stílust hogyan használjuk. Például, az objektum ki van-e töltve vagy nem. Továbbá, az alakzat mozgatható, forgatható vagy átméretezhető anélkül, hogy egy útvonalhoz is hozzá nyúlnánk. Így, egy egyszerű útvonalat újra használhatunk és kaphatunk különféle, de egymáshoz kapcsolódó alakzatot.

    + +i-o-m-shape + +

    Ha egy alakzat ki van jelölve, akkor egy téglalap jelenik meg körülötte. Attól függően, hogy mely részén fogjuk meg, az alakzatot mozgathatjuk, átméretezhetjük vagy körbeforgathatjuk a középpontja körül, amit akár mozgathatunk is. A SHIFT lenyomva tartásával mozgatáskor az irányt rögzíthetjük, forgatáskor pedig 45°-ban korlátozhatjuk azt illetve a méretarányt is megtarthatjuk méretezéskor. Az egér kurzor szintén jelzi a jelenlegi műveletet:

    + + + + + + + + + + + + + +
    i-o-m- move-shapei-o-m-pointer-resizei-o-m-pointer-rotatei-o-m-pointer-move-rotation
    MozgatásÁtméretezésForgatásForgatási pont
    mozgatása
    + +

    Az alakzatok egymás felett helyezkednek el, mindegyik egy külön rétegen. Hogy változtassunk a régetek sorrendjén, a listában a régetegeket másik pozícióba kell húzni.

    + +

    Alakzat menü

    +

    Az Alakzat menü az alábbi lehetőségeket nyújtja: Hozzáadás, Hozzáadás útvonallal, Hozzáadás stílussal, Hozzáadás útvonallal és stílussal, Megkettőzés és Eltávolítás. Továbbá:

    + + + +
    Átalakítások visszaállításaAz alakzaton alkalmazott összes mozgatás, méretezés és forgatás visszavonása.
    Átalakítás rögzítéseEgy alakzat átalakításakor a hozzá rendelt útvonal(ak) eredeti pozíciója megmarad. Ha több alakzat is használja ugyan azt az útvonalat, akkor válasszuk a Beállítások | Rácshoz illesztés menüt, hogy pontosan megadjuk a pontokat.
    +Ha nem, akkor az "Átalakítás rögzítése" a jelenlegi alakzathoz rendelt útvonal(ak) átalakításaira lesz érvényes. Egy esetleges "Átalakítás visszaállítása" erre az új állapotra történik majd.
    + +

    Alakzat tulajdonságai

    +

    A Név és a Tulajdonságok menün kívül még az alábbi is a rendelkezésünkre áll:

    + + + + +
    Min RSzMinimális részletességi szint
    Max RSzMaximális részletességi szint
    + +
    Részletességi szint
    + + + + + + +
    16x1632x3264x64
    i-o-m-lod-icon_16i-o-m-lod-icon_32i-o-m-lod-icon_64
    +

    Ahogy látjuk, nincsenek számok a BeVexed 16 képpontos verziójában. +Ez az alakzat "Részletességi szint" (RSz) beállításának köszönhető.
    +A részletességi szinttel szabályozható az alakzatok megjelenése a méret függvényében. Így azokat a részleteket kihagyhatjuk, melyek csak nagy méretű ikon esetén jelennek meg jól.

    +

    Tehát, hogy is működik: az 1.0 RSz 64 képpontos ikon méretére lett meghatározva. Hogy megkapjuk az ikon méretének megfelelő RSz-t, egyszerűen csak el kell osztani azt 64-el. Például 16 képpontos ikon mérete esetében az RSz 16/64 = 0.25. Egy alakzat nem lesz látható a Min RSz alatt és a Max RSz felett.

    +

    Ha beállítjuk egy alakzat Min RSz értékét 0.0-ra és a Max RSz értékét 0.5-re, akkor az azt jelenti, hogy az alakzat csak a maximum 32 képpont méretű ikon esetében jelenik meg. Ha a 32 képpontos ikont is ki akarjuk zárni, akkor az értéket 0.5-től kisebbre kell állítani, például 0.49-re.

    +

    Az RSz nem csak kizárásra használható, hanem például ha szükséges, akkor a méret függvényében változhatnak a szélességek is. Ekkor csak meg kell kettőzni az alakzatot, elvégezni a szükséges módosításokat, majd mind a két esetben az RSz-t úgy megadni, hogy hol az egy egyik, hogy a másik jelenjen meg. Ekkor akaratlanul is bekövetkezhet egy kis zavart, ha az alakzatok RSz-ei között átfedés van. Ez azt eredményezi, hogy néhány méret esetén mind a kettő látható...
    +Például, ha az első alakzat csak 48-tól kisebb képpont méretű ikon esetében jelenik meg, akkor a második 48 képpont felett (RSz: 48/64 = 0.75):

    + + + + + + + + +
    HelyesHibás!
    Alakzat 1Min RSz0.00Min RSz0.00
    Max RSz0.74Max RSz0.75
    Alakzat 2Min RSz0.75Min RSz0.75
    Max RSz4.00Max RSz4.00
    + + +

    +index +Stílus

    +

    A stílus lehet egyszerű szín, vagy átmenet.
    +A Paletta előre megadott színein felül egyénit is "kikeverhetünk". Az alsó csuszkával pedig az alfa-csatornát tudjuk megadni (áttetszőség).

    +i-o-m-gradients +

    Gyorsan készíthetünk egy új stílust ha kikeverünk egy színt, és a stílusok listájába dobjuk.

    +

    Ha egy átmenetet akarunk készíteni, akkor meg kell adni annak típusát (Egyenes, Sugaras, Rombusz, Kúpos) és a kezdő és záró színt. Ezt megtehetjük, ha egy színt az átmenet alatti nyílra (színre) húzunk.
    +Természetesen, ezek a színek tetszés szerint mozgathatóak is. További színeket hozzáadhatunk, ehhez csak duplán kell kattintani az átmeneten. A DEL lenyomásával pedig törölhető a kijelölt szín.

    +

    Az átmenetet mozgathatjuk, átméretezhetjük és forgathatjuk az átmenetet jelképező dobozzal a vásznon addig, amíg el nem érjük a megfelelő eredményt. Ezek a műveletek épp úgy működnek, mint az alakzatok esetében.

    + +

    Stílus menü

    +

    A Stílus menü a szokásos elemeket tartalmazza: Hozzáadás, Megkettőzés, Eltávolítás és Átalakítás visszaállítása.

    + +

    Stílus tulajdonságai

    +

    A Név az egyetlen Tulajdonság.

    + + +

    +index +Átalakító

    +

    Egy alakzatnak lehetnek átalakítói, melyek módosítját a megjelenését. Ezekkel finom változtatásokat hajthatunk végre.

    + +

    Átalakító menüje

    + + + +
    KörvonalEgy körvonalat ad az alakzathoz.
    KihúzásKiemeli az útvonalat az alakzat sílussal való kitöltése helyett.
    + +

    Az átalakítók függvényében változik a tulajdonságok listája.

    + +

    Átalakító tulajdonságai

    +

    Az átalakítóhoz a Név és a Szélesség beállításain túl az alábbiakat is módosíthatjuk a Tulajdonságok között:

    + + + + + +
    VonalvégKihúzás esetén. A vonalvégek megadása: Lapos, Kerek vagy Szögletes.
    Tájolás érzékeléseKörvonal esetén. A körvonal az útvonalon belül vagy azon kívül helyezkedik el.
    Csatlakozási pontokA pontok vonalhoz kapcsolódása: Süveg, Kerek vagy Kúp.
    Süveg korlátCsak ha a fenti Csatlakozási pontok "Süveg"-ként vannak megadva. Ez a beállítás befolyásolja a szüveg megjelenését a csatlakozási pontok esetén.
    + + +

    +index +Ikon mentése

    +

    A program ablaka rendelkezik a hagyományos menüvel: Fájl, Szerkesztés, Beállítások. Ezek elég egyértelműek, így most csak a mentésről lesz szó.

    +

    A Fájl | Mentés másként... egy speciális Icon-O-Matic formátumba menti el az ikont néhány további információval, mint például útvonal, alakzat illetve stílus nevek. Ezeket az információkat helytakarékosság miatt eltávolítjuk az ikon mentésekor. Így ez egy remek ötlet, hogy ezekről az adatokról készüljön egy biztonsági másolat, mivel a későbbiekben már csak az objektumok neveit (például "<path>/<shape>/<style>") látjuk majd, aminek az értelmezése elég fárasztó lehet.

    + +

    A Fájl | Exportálás másként... hasonló mentés panelt nyit meg, de itt már a formátum választó menü is elérhető:

    + + + + + + + + + +
    HVIFHaiku Vector Icon Format
    HVIF RDefProgramozók által használt forrásfájl
    HVIF forráskódProgramozók által használt forráskód
    SVGMentés SVG képként
    PNG összeállításMentés 64 képpont méretű PNG képként
    PNG YxYMentés 16, 32 és 64 képpont méretű PNG képként
    BEOS:ICON jellemzőMentés közvetlenül egy kiválasztott fájl ikon jellemzőjeként
    META:ICON jellemzőCsatolás közvetlenül egy kiválasztott fájlhoz kiegészítő (meta) adatként
    + + +

    +index +Tippek és trükkök

    +

    Néhány dolgot észbe kell tartani a program használatakor, illetve akad néhány jó ötlet is a használathoz:

    +
      +
    • Az Icon Guidelines (leírás az ikonokhoz) tartalmazza a Haiku alatt használt ikonok karakterisztikáját, mint például a színeket, vagy az árnyékokat.

    • +
    • Próbáljuk meg minimalizálni a használt útvonalak számát, ugyanis ezek befolyásolják a fájl méretét. Ha lehet, használjuk újra az útvonalakat és inkább használjunk módosított alakzatokat azok átalakítása helyet. Az átmenetek okos használatával szintén takaríthatunk meg helyet.

    • +
    • Ha csak lehetséges, használjuk a Rácshoz illesztést a Beállítások menüből az útvonalak szerkesztésekor. Ha az útvonal pontjai a 64x64-es rácshoz illeszkednek, akkor azzal a méret csökkenthető. Akkor is jobb megjelenést kapunk, ha a pontokat a képpontok határához igazítjuk. Például fontos, hogy a jelentősebb körvonalakat egymáshoz igazítsuk a 16x16-os rácshoz.

    • +
    • Ellenőrizzük le az előnézeti mezőben, hogy helyesen jelenik-e meg az ikon 16x16-os méretben. Ajánlott a Részletességi szint használata, amiről az Alakzat részben volt szó.

    • +
    • A karakterek ikonhoz adásának van egy egyszerű módja (ugyanis a program nem tartalmaz túl sok eszközt a szerkesztéshez). Csak írjuk meg a szöveget egy szövegszerkesztőben, például a StyledEdit-ben, állítsuk be a megfelelő betűtípust és stílust, majd dobjuk be az Icon-O-Matic ablakba, vagy használjuk a vágólapot. Ebből a program létrehozza az alakzatot és az útvonalakat.

    • +
    • Ha egy vagy több útvonalat rendelünk egy alakzathoz, akkor azok egymás területeit is átfedik. Ha egy útvonal egy másikon belül helyezkedik el, akkor az egy lyukat eredményez az alakzatban.

    • +
    • A vászon kicsinyíthető vagy nagyítható az egér görgőjével, illetve mozgatható a középső gombbal vagy a bal egérgombbal a SZÓKÖZ lenyomva tartása közben.

    • +
    + + + + +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/installer.html b/docs/userguide/hu/applications/installer.html new file mode 100644 index 0000000000..4a0afc1504 --- /dev/null +++ b/docs/userguide/hu/applications/installer.html @@ -0,0 +1,99 @@ + + + + + + + + + Telepítő + + + + + + + + +
    +
    + +

    installer-icon_64.pngTelepítő (Installer)

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/Installer
    Beállítások:Nincs
    +


    +

    A telepítő a Haiku egy megadott lemezre/partícióra másolására szolgál.
    +Indítás után fontos információk jelennek meg. Ez nem csak egy szerződés, ugyanis más fontos információt is tartalmaz:

    +
      +
    • Ez csak egy alfa-állapotú szoftver. Készíts biztonsági másolatot az adataidról!

    • +
    • A telepítő előkészített partíciót igényel. Használhatod a GParted LiveCD-t vagy hasonló programot amíg a Haiku Lemezkezelője nem érik meg eléggé a feladatra.

    • +
    • A Haiku manuálisan hozzáadható a GRUB rendszertöltőhöz. Erről bővebben olvashatsz az interneten elérhető leírásban.
    • +
    +



    +

    Folytatás, után az alábbi ablak fogad minket:

    +installer.png +

    Az első menüben meg kell adnunk a telepítés forrását. Jelenleg ez egy már telepített Haiku, vagy telepítő CD illetve USB lemez lehet.
    +A második menüben pedig a telepítés helyét kell kiválasztanunk. Ez a lemez/partíció felül lesz írva, és szükséges telepítés előtt előkészíteni például a GParted-el.

    +

    A Választható csomagok megjelenítése-n kattintva - ha vannak - további csomagokat is telepíthetünk a Haiku-val együtt.

    +

    Győzödjünk meg arról, hogy a megfelelő partíciót választottuk ki a telepítés helyének. Kattintson a Partíciók szerkesztése… gombra a Lemezkezelő megnyitásához a lemezek/partíciók ellenőrzéséhez és az információik megtekintéséhez.

    +

    A Mehet gomb megnyomásakor a telepítési folyamat elkezdődik, ami gyakorlatilag mindent átmásol (a home/ és a common/ mappákat is) a cél lemezre, majd indíthatóvá teszi azt.

    + +

    index +Eszközök

    +

    A telepítés végeztével a partíció automatikusan indítható lesz. Ugyanakkor megeshet, hogy más operációs rendszerek vagy partícionáló programok (véletlenül) felülírják a rendszertöltőt a Haiku lemezen. Ebben az esetben indítsuk el újra a telepítőt. Válasszuk ki a telepített Haiku-t a Hova listából, majd pedig a Rendszerbetöltő írása menüpontot az Eszközök menüből, hogy újra indíthatóvá tegyük azt.

    +

    A másik elem az Eszközök menüben a Rendszerválasztó beállítása, mely a rendszertöltőben egy menüt helyez el, minek segítségével választhatunk a telepített operációs rendszerek közül indításkor. További információk a Rendszerválasztó fejezetben.
    +Nem szükséges a Rendszerválasztó használata, ha már használunk másik rendszerválasztót, mint például a GRUB-ot, ahol manuálisan kell hozzáadnuk a listához a Haiku-t, illetve akkor sem szükséges, ha csak Haiku fut a gépen.

    + + +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/list-cli-apps.html b/docs/userguide/hu/applications/list-cli-apps.html new file mode 100644 index 0000000000..837ae95d11 --- /dev/null +++ b/docs/userguide/hu/applications/list-cli-apps.html @@ -0,0 +1,360 @@ + + + + + + + + + Parancsok listája + + + + + + + + +
    +
    + +

    cli-app-icon_64.pngParancssori programok listája

    + + +
    Útvonal:/boot/system/bin
    /boot/common/bin
    ~/config/bin
    +


    +

    A Haiku-val érkező parancssori programok a /boot/system/bin vagy a /boot/common/bin mappában találhatóak. Az általunk telepített programokat ajánlott a ~/config/bin mappában elhelyezni. Ezen útvonalak megtalálhatóak a PATH változóban is, így automatikusan megtalálhatjuk őket, nem kell hozzá adnunk az útvonalat.
    +Ez a lista tartalmazza az összes, a Haiku-val érkező programot. Mindegyikhez egy rövid leírás is tartozik, azonban részletesebb segítséget is kaphatunk, ha a programot a --help paraméterrel indítjuk.

    +


    +

    Index:   A – E   ::    F – J    ::    K – O    ::    P – S    ::    T – Z

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    CortexAddOnHost Az audió és videó kiegészítők használatát figyelő szolgáltatás indítása.
    ReadOnlyBootPrompt Nyelvi beállítások.
    [ Igaz (true) vagy hamis (false) visszaadása összehasonlításkor.

    indexA

    addattr Egy jellemzőt fájlba írása. (Haiku-specifikus)
    alert Megjelenít egy üzenet ablakot. (Haiku-specifikus)
    arp A rendszer ARP-tárának kezelése.
    awk Ugyan az, mint a gawk.
    base64 Base64-es kódolás/dekódolás.
    basename Megadja egy fájl teljes elérési útvonalából a mappa nevét.
    bash Bourne-again shell
    bc Egy precíz számológép.
    beep Figyelmeztető hang megszólaltatása.
    BootManager Rendszerválasztó menü telepítése/törlése.
    bunzip2 Ugyan az, mint a bzip2.
    bzip2 Fájl tömörítő.
    c++ C++ fordító.
    cal Naptár megjelenítése.
    cat Fájlok összefűzése, illetve a fájlok tartalmának megjelenítése.
    catattr Egy fájl jellemzőjének megjelenítése. (Haiku-specifikus)
    cc C fordító.
    checkfs Ellenőrzi és kijavítja a fájlrendszer hibáit. (Haiku-specifikus)
    checkitout A forráskód ellenőrzése az azt tároló URL-ével.
    chgrp Egy fájlt birtokló csoport módosítása.
    chmod A fájl engedélyeinek módosítása.
    chop A fájl kisebb szeletekre történő darabolása.
    chown A fájl tulajdonosának módosítása.
    chroot Egy parancs futtatása egy megadott gyökér-mappában.
    cksum Egy fájl CRC ellenőrzés eredményét és a bájtok számát jeleníti meg.
    clear A Terminál ablak ürítése.
    clockconfig Az óra beállításainak megjelenítése.
    cmp Fájlok bájtról-bájtra történő összehasolítása.
    collectcatkeys -
    comm Rendezett fájl sorról-sorra történő összehasonlítása.
    compress Adatok tömörítése.
    consoled Konzol szolgáltatás.
    copyattr A jellemzőket vagy azok egy részét egy vagy több fájlból egy újba másolja. (Haiku-specifikus)
    cp Fájlok/mappák másolása.
    csplit Egy fájl darabolása a megadott minta alapján.
    ctags Egy index-fájlt hoz létre az egy fájlban talált különféle nyelvi objektumokból.
    cut A fájl minden sorából megjeleníti a szakaszokat.
    date A jelenlegi dátum és idő megjelenítése/módosítása.
    dc Parancssori számológép.
    dd Nyers adat másolása, illetve átalakítási és formázási műveletek.
    desklink Egy elem az Asztalsáv Polcára helyezése. (Haiku-specifikus)
    df Csatolt lemezek kihasználtsága.
    diff Fájlok sorról-sorra történő összehasonlítása.
    diff3 3 fájl sorról-sorra történő összehasonlítása.
    dircolors Az ls-hez a színek beállítása.
    dirname Megadja egy fájl teljes elérési útvonalából a mappa nevét.
    draggers A replikánsok jelölőjének megjelenítése/elrejtése.
    driveinfo A számítógép összetevőinek információi.
    dstcheck Óraátállításkor egy üzenetet jelenít meg.
    du A lemezhasználat kiszámítása mappákra bontva.
    dumpcatalog -
    echo Egy sornyi szöveg megjelenítése.
    egrep Ugyan az, mint a grep.
    eject Eltávolítható eszköz kiadása.
    env A program futtatása egy módosított környezetben.
    error A hibakódokhoz a megfelelő szöveges üzenet megjelenítése.
    expand A tabulátorok szóközzé alakítása.
    expr Egy képlet eredményének megjelenítése.

    F

    factor Az egész számok prímtényezői.
    false A sikertelen műveletet jelzi, "1"-et ad eredményül.
    fdinfo A rendszerben használt fájlok leíróinak információi.
    ffm Az ablak egérrel történő aktiválásának módját módosítja.
    fgrep Ugyan az, mint a grep.
    filepanel A megnyitás/mentés panel megjelenítése. (Haiku-specifikus)
    find Egy fájl megkeresése a fájlrendszerben.
    finddir A rendszer által deffiniált mappa megkeresése.
    fmt Egy fájl bekezdéseinek újraformázása.
    fold Egy fájl bemeneti sorainak tördelése.
    fortune Véletlenszerű, remélhetőleg érdekes mondatok.
    frcode Az updatedb által elindított program, mely a fájlnevek listáját tömöríti.
    freetype-config A FreeType fordítói információi programozók számára.
    ftp Fájl átviteli program.
    ftpd FTP szolgáltatás.
    funzip Egy csomag első elemét megjeleníti.
    fwcontrol FireWire vezérlő program.
    gawk Mintakereső és feldolgozó.
    gdb GNU hibakereső.
    getlimits A platform-független határértékek megjelenítése (szkriptek írásánal hasznos).
    grep Minta keresése.
    groups A felhasználók csoporttagságát jeleníti meg.
    gunzip Ugyan az, mint a gzip.
    gzexe Futtatható fájlok ki- illetve becsomagolása.
    gzip Fájlok ki- illetve becsomagolása.
    hd Hexadecimális kiírás.
    head Egy fájl első sorának megjelenítése.
    hey Grafikus programok használata szkriptekkel.
    hostname A rendszer nevének megadása/megjelenítése.
    id A felhasználó és a csoport információi.
    ident Egy fájl RCS kulcsszavainak azonosítása.
    ifconfig Hálózati kártyák beállítása.
    install A fájlok megfelelő helyre másolása a futó rendszer megzavarása nélkül.
    install-wifi-firmwares.sh A különféle vezeték nélküli hálózati kártyák vezérlőprogramjának telepítése.
    installoptionalpackage Egy ideiglenes megoldás a kiegészítő csomagok telepítésére.
    installsound Új hang-esemény hozzáadása a Hangok beállítások panelhez.
    iroster Bemeneti eszközök listája.
    isvolume Csatolt lemezek információi.
    join Minden pár bemeneti sorhoz egyértelmű azonosító hozzárendelése, majd kiírása.

    indexK

    kernel_debugger A kernel hibakeresőjébe lépés.
    keymap Billentyűzet-kiosztások betöltése/elmentése.
    kill A kilépés parancs elküldése egy programnak.
    less Egy fájl megjelenítése.
    lessecho A paraméterek és a helyettesítő karakterek (mint például a * és a ? egy fájlnévben) megjelenítése.
    lesskey A less számára a kötelező kulcs megadása.
    link Hivatkozás létrehozása.
    linkcatkeys -
    listarea A jelenleg futó programok terület-információi.
    listattr Egy fájl jellemzőinek megjelenítése. (Haiku-specifikus)
    listdev A számítógépben található eszközök listája.
    listimage A futó programok kép-információinak listája.
    listport A rendszer által kezelt nyitott portok listája programonként.
    listres Egy fájl kiegészítő adatainak megjelenítése.
    listsem A megadott program jelzőinek listája.
    listusb USB eszközök listája.
    ln Hivatkozás létrehozása.
    locale Az előnyben részesített nyelv megjelenítése, annak LC_CTYPE-ja és az előnyben részesített formátum-beállítások.
    locate Egy fájl megkeresése.
    logger Egy üzenet küldése a rendszer-naplóba.
    login Új munkamenet indítása a rendszerben.
    logname A jelenlegi felhasználó neve.
    ls Egy mappa tartalma.
    lsindex A jelenlegi lemez/partíció indexelt jellemzőinek megjelenítése. (Haiku-specifikus)
    mail2mbox BeOS e-mail-fájlok Unix postafiók fájlokká alakítás.
    make GNU make program.
    makebootable A megadott BFS lemez/partíció indítható tétele (a boot-kód az első két szektorba másolása).
    mbox2mail Unix postafiók fájlok BeOS e-mail-fájlokká alakítása.
    md5sum MD5 ellenőrzés.
    merge Fájl egyesítése.
    message Egy BMessage fájl megjelenítése.
    mimeset A fájl MIME típusának megadása.
    mkdepend Makefile főggőségi fájl létrehozása.
    mkdir Mappa létrehozása.
    mkdos FAT partíció formázása.
    mkfifo named csövek létrehozása.
    mkfs Fájlrendszer létrehozása.
    mkindex Új index létrehozása egy jellemzőhöz. (Haiku-specifikus)
    mktemp Biztonságos úton hoz létre ideiglenes fájlt vagy mappát.
    modifiers A jelenlegi (lenyomott) módosító billentyűk.
    more Ugyan az, mint a less.
    mount Egy fájlrendszer csatolása.
    mount_nfs NFS partíció csatolása.
    mountvolume Egy lemez csatolása név alapján.
    mv Mozgat/átnevez egy fájlt.
    netcat TCP és UDP program.
    netstat A hálózati kapcsolatok, útválasztó táblák, hálózati kártya-statisztika és további információk megjelenítése.
    nl Egy fájl tartalmának megjelenítése sorszámokkal együtt.
    nohup Egy program futtatása a megszakítás-jel figyelmen kívül hagyásával (futtatás a háttérben).
    nproc A rendelkezésre álló feldolgozó egységek megjelenítése.
    od Egy fájl egyértelmű megfelelőjének kiírása.
    open Egy program/fájl megnyitása a parancssorból. (Haiku-specifikus)

    indexP

    passwd A felhasználó jelszavának létrehozása/módosítása.
    paste Fájlok megfelelő sorainak megjelenítése tablulátorral tagolva.
    patch Egy diff fájl alkalmazása az eredeti fájlon.
    pathchk Érvénytelen és nem portolható fájlnevek ellenőrzése.
    pc Programozók számológépe.
    ping ICMP-viszhang-kérés küldése egy másik gépre a hálózaton.
    play Egy zene CD szám lejátszása.
    playfile Egy audió-fájl lejátszása.
    playsound Egy audió-fájl lejátszása.
    playwav WAV fájl lejátszása.
    pr Fájl oldalakra vagy oszlopokra tagolása.
    printenv Egy környezeti változó megjelenítése.
    printf Adat formázása és megjelenítése.
    prio Egy folyamat prioritásának módosítása.
    profile A profil száljai.
    ps Futó programok listája.
    ptx Egy fájl szavainak a permutált indexének a megjelenítése a tartalommal együtt.
    pwd A jelenlegi mappa megjelenítése.
    query A Nyomkövető "keresés képlet alapján" parancssori megfelelője. (Haiku-specifikus)
    quit Egy program bezárása.
    rc Forrás-fordító.
    readlink Egy hivatkozás céljának megjelenítése.
    reindex Létező fájlok jellemzőit új indexbe rakja. (Haiku-specifikus)
    release Egy jelző elengedése.
    renice Egy folyamat prioritásánal módosítása.
    rlog RCS fájl napló-üzenetei és egyéb információi.
    rm Fájlok/mappák törlése.
    rmattr Egy jellemző törlése a fájlból. (Haiku-specifikus)
    rmdir Mappák törlése.
    rmindex Egy jellemző eltávolítása az indexből. (Haiku-specifikus)
    roster Futó programok információi.
    route Hálózati útvonalak megjelenítése/módosítása.
    safemode A rendszer biztonsági módban fut-e vagy sem.
    screen_blanker Képernyővédő indítása.
    screenmode A monitor módjának megjelenítése/beállítása.
    sdiff Megjeleníti vagy összefűzi a különbségeket 2 fájl között.
    seq Számsorozatok.
    setdecor Dekoráció megadása/megjelenítése.
    setgcc A gcc verziójának megjelenítése/megadása.
    settype Egy fájl MIME típusának, aláírásának és az előnyben részesített programjának megadása.
    setversion Egy fájl verziójának megjelenítése.
    setvolume A rendszerhangok hangerejének megadása.
    setwep A vezeték nélküli hálózatok WEP-kódolásának megadása.
    sh Ugyan az, mint a bash.
    sha1sum SHA1 ellenőrzés.
    shar Shell csomagok létrehozása.
    shred Ismételten felülír egy fájlt.
    shuf A bemeneti sorok véletlenszerű permutációja.
    shutdown A számítógép leállítása.
    sleep Néhány másodpercig felfüggeszti a folyamat.
    sort A fájlok sorbarendezett megjelenítése.
    spamdbm A levelek kéretlennek vagy valósnak jelölése.
    split Egy fájl megadott méretűre darabolása.
    stat A fájl vagy a fájlrendszer állapota.
    strace Egy szál vagy egy program rendszerhívásainak végigkövetése.
    stty Megjeleníti/megadja a terminál karakterisztikáját.
    su A jelenlegi felhasználó módosítása.
    sum Az ellenőrzés eredményét és a blokkok számát jeleníti meg fájlonként.
    sync A lemez változásainak véglegesítése, a szuper blokk frissítése.
    sysinfo A rendszer információinak megjelenítése.

    indexT

    tac Összefűzi és megjeleníti a fájlokat az utolsó sorral kezdve.
    tail Egy fájl utolsó 10 sora.
    tcpdump A hálózati forgalom kiírása.
    tcptester -
    tee Adatot ír (vagy hozzáfűz) egy fájlba a bemenetről.
    telnet Felhasználói felület a telnet protokolhoz.
    telnetd Telnet szolgáltatás.
    test Igaz (true) vagy hamis (false) visszaadása összehasonlításkor.
    timeout Elindít egy programot, majd megadott idő után megszakítja azt.
    top A futó szálakat és a processzor-használatot jeleníti meg.
    touch A fájl időbélyegét (a módosítás idejét) módosítja.
    tput Terminál indítása vagy lekérdezés a terminfo adatbázisból.
    tr Lefordítja, összenyomja és/vagy törli a karaktereket a bemenetről.
    traceroute A hálózaton áthaladó csomagok útját írja ki.
    translate Az értelmezőket használva átalakítja a fájlt.
    trash A fájlok a Szemetesbe mozgatása vagy visszaállítása onnan.
    true A sikeres eredményt jelzi "0"-ával.
    truncate Növeli vagy csökkenti egy fájl méretét.
    tsort Topológiai rendezés.
    tty A fájl nevének megjelenítése, amivel a terminál kapcsolódik a bemenethez.
    uname Rendszerinformációk.
    unchop A chop által feldarabolt fájlok egyesítése.
    unexpand Szóközök tabulátorrá alakítása.
    uniq A bemetet egyező szomszédos sorait kiírja.
    unlink Egy megadott fájl törlése.
    unmount Lemezek leválasztása.
    unrar Rar fájlok kicsomagolása.
    unshar Shar fájlok kicsomagolása.
    untrash Ugyan az, mint a trash.
    unzip Zip fájlok kicsomagolása.
    unzipsfx Meglévő zip csomagok önkibontóvá alakítása.
    updatedb A lokalizációs adatbázis frissítése.
    uptime A rendszer indítása óta eltelt és a jelenlegi idő.
    urlwrapper Széttördeli az URL MIME típusát a parancssor vagy azok a programok számára, melyek nem kezelik azokat.
    useradd Felhasználó létrehozása.
    uudecode uuencode-al kódolt fájl dekódolása.
    uuencode Egy fájl kódolása, így már küldhető egy levél mellékleteként.
    vdir Fájlok információi.
    version Egy fájl verziója.
    vmstat A virtuális memória információi.
    waitfor Várakozás a megadott szál megjelenéséig. (Haiku-specifikus)
    watch Egy program időszakos futtatása.
    wc Egy fájlban lévő bekezdések, szavak és karakterek (bájtok) száma.
    wget HTTP-n, HTTPS-en vagy FTP-n keresztüli fájl-letöltés.
    which Egy parancs megkeresése.
    whoami A jelenlegi felhasználói név megjelenítése.
    xargs Egy program végrehajtása az összegyűjtött paraméterek listájával.
    xres Források megjelenítése és módosítása.
    yes Egy szöveg ismételt kiírása megszakításig.
    zcat Ugyan az, mint a gzip.
    zcmp Ugyan az, mint a zdiff.
    zdiff Tömörített fájlok összehasonlítása.
    zforce A fájlok ".gz" kiterjesztése az újratömörítés nélkül.
    zgrep A megadott minta alapján keres a tömörített fájlokban.
    zip Zip csomaghoz új elem hozzáadása vagy meglévő cserélése.
    zipcloak Kódol minden kódolatlan elemet a zip csomagban.
    zipgrep A megadott szöveg vagy minta megkeresése egy zip csomagban.
    zipinfo Ugyan az, mint a unzip.
    zipnote A zip fájlok tartalmának megjelenítése.
    zipsplit Zip csomagok kisebb darabokra darabolása.
    zmore Ugyan az, mint a more, de egy tömörített fájl tömörítetlen tartalmán.
    znew A .Z fájlok újratömörítése .gz (gzip) csomaggá.
    +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/magnify.html b/docs/userguide/hu/applications/magnify.html new file mode 100644 index 0000000000..6b6adb4407 --- /dev/null +++ b/docs/userguide/hu/applications/magnify.html @@ -0,0 +1,101 @@ + + + + + + + + + Nagyító + + + + + + + + +
    +
    + +

    magnify-icon_64.pngNagyító (Magnify)

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/Magnify
    Beállítások:~/config/settings/Magnify_prefs
    +


    +

    A program az egér körüli területet nagyítja fel.

    +magnify.png +

    Az ablak felső részében a nagyított terület méretét és a nagyítás mértékét találjuk. A "32 x 32 @ 8 képpont/képpont" az jelenti, hogy 32x32 képpontnyi területet lát az egér-kurzor körül, és minden képpont a 8-szorosára van nagyítva.

    +

    Ez alatt a pirossal jelölt képpont színének kódját találjuk. Ennek a színnek mind az RGB, mind pedig a hexadecimális kódját látjuk.
    +A kijelölt képpont a / / / billentyűkkel mozgatható.

    +

    Hogy megmérje a távolságokat két kék kereszt is a rendelkezésére áll, melyet az ALT H kombinációval adhatunk a képhez. Az ezek X/Y koordinátái a bal felső sarokban jelenik meg, ha mind a kettő kereszt hozzá van adva, akkor az egymás közti távolsága az ablak alján látható majd.
    +A keresztek mozgathatóak a / / / billentyűkkel. Az aktív kereszt "x"-el van jelölve.

    +

    A kurzor mozgatható képpontról-képpontra az OPT és a / / / billentyűkkel.

    +

    A menüből pedig számtalan opció is elérhető:

    + + + + + + + + + + + + + + +
    Kép mentéseALT S A jelenlegi kép elmentése forrásfájlként.
    Kép másolásaALT C A jelenlegi kép másolása a vágólapra.
    Infó elrejtése/megjelenítéseALT T Minden kiegészítő információ elrejtése/megjelenítése.
    Egy célkereszt hozzáadásaALT H Kereszt hozzáadása.
    Célkereszt eltávolításaALT SHIFT H A legutóbbi hozzáadott kereszt eltávolítása.
    Rácsvonalak elrejtése/megjelenítéseALT G A rácsvonalak megjelenítése illetve elrejtése.
    Kép rögzítése/feloldásaALT F Leállítja illetve újraindítja az élő kép megjelenítését.
    Koordináták rögzítéseALT I A nagyított területet továbbra is frissíti, azonban nem követi az egér mozgását.
    Négyzetté alakításALT / Az ablak méretezése után visszaállítja a négyzet alakú képernyőt.
    Ablak méretének csökkentéseALT - Az egér körüli, nagyított terület méretének csökkentése.
    Ablak méretének növeléseALT + A nagyítandó terület méretének növelése.
    Képpontméret csökkentéseALT , A nagyítás mértékének csökkentése.
    Képpont méretének növeléseALT . A nagyítás mértékének növelése.
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/mail.html b/docs/userguide/hu/applications/mail.html new file mode 100644 index 0000000000..2aea26d1ba --- /dev/null +++ b/docs/userguide/hu/applications/mail.html @@ -0,0 +1,202 @@ + + + + + + + + + Levelezés + + + + + + + + +
    +
    + + + + +
    Index
    Levelek olvasása
    + Levél írása
    + Beállítások
    + +

    mail-icon_64.pngLevelezés (Mail)

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/Mail
    Beállítások:~/config/settings/Mail/
    +~/config/settings/Mail/Menu Links/ - a leveles láda helyi menüjének tartalma
    +~/config/settings/Mail/signatures/ - aláírások tárolása
    +~/config/settings/Mail/status/ - egyéni állapotok tárolása
    +


    +

    A levelezés a Haiku alapértelmezett levélkezelő programja. A levelek lekérdezését és küldését nem a program, hanem a mail_daemon (levelező rendszer) végzi, mely az E-mail beállításainál konfigurálható.

    +

    Ezen az oldalon a levelező program használatát taglaljuk. További információk a Műhely: levelek kezelése fejezetben.

    +

    +index +Levelek olvasása

    +

    Egy levélen duplán kattintva megnyílik az a Levelezés programban. A program felülete elég egyszerű:

    +email-read.png +

    Az ablak része a menü és a gombsor legfelül, a levél jellemzői a gombsor alatt (cémzett, feladó, cím, dátum) és maga a levél szövege. Ha a levélben érdekes karaktereket találunk vagy épp üres, akkor próbáljuk meg módosítani a karakterkódolást a Kódolás menüből.

    +

    Ha a levél mellékleteket is tartalmaz, akkor azok a levél végén jelennek meg. Az ezek helyi menüjéből válszthatjuk a Mentés... vagy a Megnyitás opciót. A mellékletek közvetlenül az Asztalra vagy bármelyik Nyomkövető ablakba húzhatóak.

    +

    A menü elég egyértelmű, így csak a lényeges dolgokat emeljük ki.

    +

    +indexFájl

    +

    Az ablak bezárásakor ha az egy új levelet tartalmaz, akkor a levél állapota automatikusan olvasottra változik. Ugyanakkor a levél állapotát mi magunk is megadhatjuk a Bezárás és ... almenüből. Itt találunk egy Megjelölés... menüt, ahol több egyéni állapotot is készíthetünk, melyek a ~/config/settings/Mail/status/ mappában találhatóak majd.

    +

    +indexSzerkesztés

    +

    Itt található a Beállítások... (lásd lejjebb) és a Fiókok... menü, ami megnyitja az E-mail beállítások panelt.

    +

    +indexNézet

    +

    Néha a következőkre is szükségünk lehet:

    + + + +
    Fejléc megjelenítéseALT HA levél teljes fejlécét megjeleníti. Ez akkor lehet hasznos, ha például vissza akarjuk követni a levél útját.
    A nyers levél megjelenítéseA levél eredeti, nyers állapota. Például az összes vezérlő karakterrel és a program formázása nélkül.
    +

    +indexLevél

    +

    A különféle válaszolási módok magyarázatra szorulhatnak.

    + + + + +
    VálaszALT RVálasz küldése arra a címre, ahonnan a levél érkezett. MEGJEGYZÉS: Abban az esetben, ha egy levelező listáról kaptuk a levelet, akkor a válasz nem csak a feladónak, hanem a listára is el lesz küldve!
    Válasz a feladónakOPT ALT REbben az esetben a levél kizárólag a feladónak lesz elküldve (annak aki a "From" mezőben szerepel).
    Válasz mindenkinekSHIFT ALT RVálasz mindenkinek, aki a levélen szerepel (a feladónak és a másolatok ("cc") is).
    +
    Ha kijelölünk egy szövegrészt a levélben mielőtt válaszolunk rá, akkor csak az adott részt fogja idézni a program a válasz levélben. Ez egy nagyon hasznos kis funkció, ha például ki akarjuk emelni a lényeget az eredeti levélből...
    +

    A Tovább, Újraküldés és a Másolás újba magától értetődőek.

    +

    Amikor egy levelet a Nyomkövetőből vagy egy lekérdezésből nyitunk meg, akkor az Előző levéltel és a Következő levéllel lépegethetünk a levelek között, amik a listában szerepelnek.

    +

    A Cím mentése összegyűjti a levélben található összes e-mail címet egy almenübe. Innen egy címet kiválasztva megnyílik a Névjegyek program, amiben további információkat is megadhatunk.

    +

    +indexLekérdezések

    +

    Jelenleg ez a funkció még nem működik, de a későbbiekben ezt arra tudjuk majd használni, hogy különféle lekérdezésekkel a jelenleg megnyitott levélhez hasonlóakat (például azonos feladó vagy tárgy) megkapjuk.

    + +

    +index +Levél írása

    +

    Új levél készítésekor csak válasszuk az Új levél írása menüt vagy a gombsoron kattintsunk az "Új" gombra. Ezen kívül vagy eleve csak indítsuk el a Levelezést vagy pedig az Új levél írása... menüt válasszuk az Asztalsáv postaláda ikonjának menüjéből.

    +email-write.png +

    Az ablak felépítése lényegében ugyan az, mint a levelek olvasásakor. A menü és a gombsor kicsit különböznek és a beviteli mezők (a címzettek, a címe, stb.) is szerkeszthetőek.

    +

    A Másolat (vagy ismertebben "Cc" - carbon copy) mező címzettjei mind másolatot kapnak a levélből. A különbség a címzett és a másolat közt az, hogy a levél kifejezetten a címzettnek szól, a többiek számára csak informális a levél, az esetleges választ nem tőlük várjuk.
    +A Titkos másolat pedig "rejtett másolatot" jelent, vagyis ugyan úgy másolatot kapnak a levélből, viszont egymást nem látják a címzettek.

    +

    Több cím megadása vesszővel elválasztva történhet. +A Címzett, a Másolat, és a Titkos másolat mind egy előugró menü, melyek tartalmazzák az összes e-mail címet, amik a rendszerben találhatóak. Ezeket a Névjegyek fájljainak keresésével gyújti össze a program. A "Csoport" jellemzők alapján pedig a csoport tagjait egy almenüben találhatóak majd.

    +

    A menükön belül pedig találhatunk még érdekes funkciókat.

    +

    +indexFájl

    +

    A Mentés piszkozatként menüvel a levelet elmentheted, majd később bármikor folytathatod annak szerkesztését. Betöltéshez csak ki kell választani a szükségeset a Piszkozat megnyitása almenüből, ahová a program összegyűjti a "Draft" (piszkozat) állapotú leveleket.

    +

    +indexSzerkesztés

    +

    Az Idézet és az Idézet eltávolítása menü vagy az azoknak megfelelő kombinációk (ALT / ) az idézet szintjének megadására szolgálnak a ">" szimbólum használatával az idézett sorok előtt. Csak jelöljük ki a megfelelő sorokat, és használjuk a menüelemeket.

    + +email-spellcheck.png + +

    A Helyesírás-ellenőrzés jelenleg csak angol nyelven érhető el. A hibásnak vélt vagy ismeretlen szavakat pirosan és dőlten jelzi a program. +Ezen szavak helyi menüjében javaslatokat kaphatunk a szó kicserélésére, illetve felvehetjük azt a szótárba a Hozzáadásra kattintva.

    +

    Itt található megintcsak a Beállítások... (lásd lejjebb) és a Fiókok... menü, ami megnyitja az E-mail beállítások panelt.

    +

    +indexLevél

    +

    Az Aláírás hozzáfűzésével egy előre megadott aláírást tudunk a levél végéhez hozzáfűzni. +Itt az almenüben kiválaszthatunk egy konkrétat vagy a program Véletlenszerűen választ egyet.

    + +email-signature.png + +

    Új aláírást létrehozni illetve meglévőt szerkeszteni az Aláírás szerkesztése... menüből lehet. Ekkor egy új ablakot kapunk, ahol egy elnevezést kell megadnunk az aláírásnak, és alatta pedig magát a szöveges aláírást. Itt az Aláírás menüben a Megnyitásnál egy már meglévőt megnyithatunk, a Mentés vagy a Törlés menüvel pedig a jelenleg megnyitottat tudjuk eltárolni a ~/config/settings/Mail/signatures mappában, illetve törölhetjük is onnan..

    +

    Használd a Melléklet hozzáadása... illetve a Melléklet eltávolítása menüt fájl levélhez történő hozzáadására vagy törlésére. A Nyomkövető ablakból szintén bedobhatjuk a fájl a levélbe. Arra azonban ügyelni kell, hogy a fájlt a fejléc-részbe (a címzettek listája, stb.) dobjuk, ugyanis ha egy szöveges fájlt a levél-részre húzunk akkor annak tartalmát a program szövegként illeszti a levélbe.

    + +email-attachments.png + +

    A mellékletek a fejléc-rész alatt találhatóak. Egy melléklet törlése a helyi menüjéből történhet, vagy egyszerűen csak a DEL megnyomásával miután kijelöltük a törlendő fájlt.

    + +

    +indexLekérdezések

    +

    Jelenleg ez a funkció még nem működik, de arra szolgál, hogy a levélhez kapcsolódó további levelek (például azonos feladótól származók) megjelennek majd a listában.

    + +

    +index +Beállítások

    +email-preferences.png +

    A beállítások két részre oszthatóak:

    +

    +indexFelhasználói felület

    + + + + + + + +
    GombsorFeliratok megjelenítése az ikonokon, vagy akár a gombok elrejtése.
    BetűtípusA levél szövegének betűtípusa.
    MéretBetűméret megadása.
    Színezett idézetekAz idézetek külön színnel jelölése.
    Helyesírás ellenőrzéseA helyesírás ellenőrzésének ki- illetve bekapcsolása.
    Automatikusan olvasottként jelölés"Új" állapotú levél bezárásakor a program automatikusan "Olvasott"-nak jelöli azt.
    + +

    +indexLevelezés

    + + + + + + + + + +
    Alapértelmezett fiókHa több fiókkal is rendelkezel, akkor megadható, hogy levél írásakor melyiket használja a program.
    VálaszcímAmikor válaszolsz egy levélre, akkor, megadható egy Alapértelmezett fiók, ellenkező esetben a feladó a Levél alapján lesz megadva (tehát, amelyik fióknak lett küldve, az lesz a feladó).
    VálaszEz a szöveg kerül majd az idézett szöveg elé a levélre történő válaszoláskor. Különféle változók is használhatóak, melyekről az előugró menüből informálódhatunk. Például: "Tisztelt %n!\n\nEzt írta %d-kor:\n" ezt fogja eredményezni: +
    Tisztelt Dr. Hawking!
    +
    +Ezt írta Mon, 18 Jan 1998 02:55:16 +0800-kor:
    +> so thanks again for the inspiration concerning the cosmological constant.
    +> ...and the rest of the quoted text following...
    Automatikus aláírásAláírás automatikus csatolása a levél végére.
    KódolásAz alapértelmezett karakterkódolás megadása.
    Figyelmeztetés nem kódolható szövegnélFigyelmeztetést kaphatunk, ha a levél olyan karaktereket tartalmaz, amelyeket a megadott karakterkódolással a program nem tud kódolni. Ekkor lehetőségünk van módosítani a kódolást küldés előtt. Ha ezt nem tesszük meg, a program a nem kódolható karaktereket egy téglalappal helyettesíti.
    Szöveg tördeléseMinden 76. karakter után egy sortörést szúr be, így a levél könnyebben olvasható.
    Jellemzők csatolásaMegadható, hogy egy fájl BFS jellemzői külön legyenek csatolva a levélhez. Ez nagyon hasznos lehet más Haiku-t használók számára, mivel megkapják a "teljes" fájlt (például az előadó, az album és a cím jellemzőit az MP3 fájlokkal együtt), ami azonban elgondolkodtathat más felhasználókat, hogy vajon mi lehet az a "BeOS Attributes" melléklet a levélben...
    +Persze, választható az is, hogy a jellemzők nem kerülnek csatolásra, ekkor azonban ne feledjük el becsomagolni a fájlt küldés előtt, ha a jellemzőket is meg akarjuk tartani.
    + +
    +
    + + + + + + diff --git a/docs/userguide/hu/applications/mediaplayer.html b/docs/userguide/hu/applications/mediaplayer.html new file mode 100644 index 0000000000..d0c56bc560 --- /dev/null +++ b/docs/userguide/hu/applications/mediaplayer.html @@ -0,0 +1,141 @@ + + + + + + + + + Médialejátszó + + + + + + + + +
    +
    + +

    mediaplayer-icon_64.pngMédialejátszó (MediaPlayer)

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/MediaPlayer
    Beállítások:~/config/settings/MediaPlayer
    +


    +

    A Médialejátszó az alapértelmezett zene és videó lejátszó program. Az ffmpeg-nek köszönhetően a formátumok széles palettája támogatott. Bár a felület egyszerű, mégis az összes főbb vezérlőt tartalmazza:

    +mediaplayer.png +

    A csúszka a folyamatjelzőn a lejátszási pozíciót jelzi, és azzal módosítható is, az egeret felette tartva pedig megjelenik az aktuális lejátszási idő és a hátralévő idő. A jobb oldalon lévő időre kattintva válthatunk az aktuális idő, a teljes hossz és a hátralévő idő között.
    +Alatta találhatóak a hagyományos vezérlők (előző, lejátszás/folytatás, megállítás, leállítás, következő). Majd a hangerőszabályzó (a hangszóró ikonra kattintva elnémíthatjuk a lejátszót) és a VU-méter foglal helyet.

    + +

    Audió és videó lejátszás

    +

    Mivel az audió lejátszásnak nincs semmilyen különösebb funkciója, ezért a videó részének a leírását taglaljuk.

    +mediaplayer-info.png +

    Minden média-fájlról hasznos információkat kaphatunk az Információk... (ALT I) menüpontból. Ekkor az összes információt megkapjuk a megnyitott fájlról, mint például az időtartamot, a hang és a videó-sáv tulajdonságait.

    +

    A leggyakoribb funkciók a videó-terület helyi menüjéből is elérhetőek. Ez igaz a teljes képernyős módra is.
    +A Videó menü alatt találjuk a méretező opciókat, illetve a méret-arány módosítását. A méretarány általában az eredeti, a videó beállítása szerinti arány a legmegfelelőbb beállítás.

    +

    A lejátszó használni tudja az SRT formátumú feliratokat. Hogy megjelenjen(ek) a Feliratok menüben, a fájl nevet úgy kell meghatározni, hogy a név eleje egyezzen a videó nevével, majd a nyelv azonosítója/elnevezése, végül pedig a ".srt" kiterjesztés (nem pedig a videó fájl kitejesztése). Például:

    +
    Film.avi
    +Film.Magyar.srt
    +Film.English.srt
    +Film.Français.srt
    +

    A több hangsávot tartalmazó videók esetében a különféle hangsávok közül az Audiósáv almenüből választhatunk. A Videó | Sáv menüben választhatunk több videósáv közül, ha egynél több áll a rendelkezésünkre.

    +

    Teljes képernyős módba válthatunk (ALT ENTER vagy F vagy dupla-kattintás), a Vezérlők elrejtésével (ALT H vagy dupla kattintás jobb gombbal) elrejthetjük a lejátszó keretét és a vezérlőit illetve megadhatjuk, hogy az ablak Mindig felül legyen (ALT A).

    + +

    Lejátszólista

    +

    A Médialejátszó | Lejátszási lista... (ALT P) megnyit egy ablakot, ahol a jelenleg a listához adott fájlokat látjuk. Duplakattintással a fájlon annak lejátszása elindul.

    +mediaplayer-playlist.png +

    Új fájlokat is hozzáadhatunk (az ablakba húzással), illetve a meglévőket áthelyezhetjük a listában azok mozgatásával. A Szerkesztés menüből Véletlenszerűen rendezhetjük a listát vagy az Eltávolítással (DEL) egy bejegyzést törölhetünk a listából, vagy akár a Fájl Szemetesbe helyezését (ALT T) is választhatjuk a kijelölt fájlnak.

    +

    Természetesen, a listát meg is őrizhetjük a Mentés menüvel, illetve a Megnyitással vagy a fájlon való dupla kattintással újra betölthetjük azt.

    + +

    Beállítások

    +

    Néhány beállítási lehetőséget kapunk a beállítások panelen:

    +mediaplayer-settings.png +

    Az első szakasz, a Lejátszás módja, magától értetődő. A lejátszás indítása automatikusan, az ablak bezárása a lejátszás végeztével illetve a lejátszás ismétlése.

    +

    A következő szakasz a Megjelenítési beállítások.
    +Bejelölhető a Hardveres gyorsítás használata ha elérhető, ami lehetővé teszi a CPU terheltségének csökkentését, de csak akkor működik, ha egy videó ablak van megnyitva, illetve ha a grafikus kártya és a vezérlője támogatja azt.
    +Méretezéskor illetve teljes képernyős módban a Filmek simított átméretezésekor nagyon gyorsan frissül a kép a jobb minőség érdekében, míg ellenkező esetben a kép képpont-blokkokra eshet szét.
    +A Nagyított vezérlők teljes képernyős módban opció használata esetén jelentősen nagyobb vezérlőelemeket kapunk a videóhoz teljes képernyős módban.
    +A Felirat mérete és a Felirat helye is módosítható. Megjelenhet A videó alján, amikor mindig a kép előtt jelenik meg. Illetve A képernyő alján, amivel lehetőségünk van arra, hogy az ablakot átméretezve a film alatti fekete sávon jelenljen meg a szöveg.

    +

    Az utolsó beállítási lehetőség pedig a hangerőre vonatkozik, mikoris a lejátszó a háttérben van, tehát az ablak nem aktív. Ez lehet Teljes hangerő, Alacsony hangerő vagy Némítva.

    + +

    Vezérlés billentyűzettel

    +

    A lejátszó a billentyűzettel is vezérelhető.

    + + + + + + +
    ZUgrás az előző számra
    XLejátszás
    CMegállítás
    VLeállítás
    BA következő számra ugrás
    +

    Ezek a gombok a vezérlőelemekhez vannak rendelve. Ezek mindig a billentyűzet alsó sorában, a bal oldalról indulva találhatóak, függetlenül a billentyűzet kiosztásától. A felső billentyűk az amerikai kiosztás alapján értendőek.

    + + + + + + + + + + + + + + + + +
    Előre tekerés
    SHIFT 10 másodpercet ugrik előre
    ALT 30 másodpercet ugrik előre
    Vissza tekerés
    SHIFT 10 másodpercet ugrik vissza
    ALT 30 másodpercet ugrik vissza
    Hangerő növelése
    Hangerő csökkentése
    ALT Az előző számra ugrás
    ALT A következő számra ugrás
    SpacebarLejátszás/megállítás
    ALT ENTERTeljes képernyős illetve ablak módba váltás (illetve a videón dupla kattintással)
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/midiplayer.html b/docs/userguide/hu/applications/midiplayer.html new file mode 100644 index 0000000000..4bb5acbaa6 --- /dev/null +++ b/docs/userguide/hu/applications/midiplayer.html @@ -0,0 +1,84 @@ + + + + + + + + + Midilejátszó + + + + + + + + +
    +
    + +

    midiplayer-icon_64.pngMidilejátszó (MidiPlayer)

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/MidiPlayer
    Beállítások:~/config/settings/MidiPlayerSettings
    +


    +

    Ahogy a neve is mutatja, a Midilejátszó midi zene lejátszására való. A midi egy speciális formátum, ugyanis nem tartalmazza a digitális, kódolt zenét, hanem csak a leírását.
    +A fájl mérete általában kicsi, viszont függ a használt eszköz-tártól is ("Hangszereknek" is hívják), így a méret akár elég nagy is lehet. Ugyanakkor ezek a Hangszerek mérete is elég nagy lehet attól függően, hogy mennyi és milyen minőségű hangszer-mintát tárolnak.

    +

    A Haiku alap esetben nem rendelkezik Hangszerekkel, mert ezek elég nagy méretűek, és csak néhány ember használja. Akik pedig használnak, azoknak már van minőségi vagy egyéni Hangszere. Ahhoz, hogy egyártalán hallj valamit, egy kiegészítő csomagot kell telepíteni. A Terminálban add ki a következő parancsot: installoptionalpackage TimGMSoundFont

    +

    Ha más hangokat szeretnél használni, akkor készíts egy hivatkozást a /boot/system/data/synth mappába, és nevezzd el big_synth.sy-re.

    +midiplayer.png +

    A Midilejátszó felülete nagyon egyszerű. Csak indítsunk el egy midi fájlt, vagy húzzuk a lejátszó ablakába, és máris indul a lejátszás. Módosíthatjuk a hangerőt, visszhangot adhatunk hozzá a Visszhang menüből, az ablak felső részében pedig egy oszcilloszkóp található.

    + +
    +
    + + + diff --git a/docs/userguide/hu/applications/packageinstaller.html b/docs/userguide/hu/applications/packageinstaller.html new file mode 100644 index 0000000000..b6fc93abc0 --- /dev/null +++ b/docs/userguide/hu/applications/packageinstaller.html @@ -0,0 +1,90 @@ + + + + + + + + + Csomagtelepítő + + + + + + + + +
    +
    + +

    packageinstaller-icon_64.pngCsomagtelepítő (PackageInstaller)

    + + + + +
    Asztalsáv:Nincs bejegyzés. Általában egy támogatott fájltípus megnyitásakor indul el.
    Útvonal:/boot/system/apps/PackageInstaller
    Beállítások:Nincs
    +


    +
    Az oldal egyelőre csak egy piszkozat. Kérlek, nézz vissza később.
    +

    A Csomagtelepítő a BeOS PKG formátumú csomagok telepítésére szolgál. Ez lehetőséget ad arra, hogy gyorsan, grafikus felület segítségével telepítsük a csomagokat Haiku alatt.

    +

    A program automatikusan elindul, amikor megnyitunk/elindítunk egy .pkg fájlt.

    +packageinstaller.png +

    A főablak két módosítási lehetőséget biztosít:

    +
      +
    • telepítés típusa (a fejlesztőtől függően többféle is lehet).
    • +
    • telepítés helye (csak a lemezek adhatóak meg, az útvonal nem)
    • +
    +

    A Telepítésre kattintva elindul a kicsomagolás és a telepítés.

    +packageinstaller-installer.png +

    Telepítés közben esetleg kaphatunk figyelmeztető- vagy hibaüzenetet, amiből kiderül, hogy mi az ami esetleg hiányzik a program futásához. Ezeket ajánlott a program telepítése előtt feltelepíteni.

    +

    A telepítés után a programnak meg kell jelennie az Asztalsávon.

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/pe.html b/docs/userguide/hu/applications/pe.html new file mode 100644 index 0000000000..d3c45968c9 --- /dev/null +++ b/docs/userguide/hu/applications/pe.html @@ -0,0 +1,80 @@ + + + + + + + + + Pe + + + + + + + + +
    +
    + +

    pe-icon_64.pngPe

    + + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/apps/Pe/Pe
    Leírás:/boot/apps/Pe/Documentation.html
    Beállítások:~/config/settings/pe/*
    +


    +

    A Pe egy kifinomult szövegszerkesztő, ami szintaktikai kiemelésel is rendelkezik, így kifejezetten programozók számára ajánlott. Az eredeti programot Maarten Hekkelmann készítette, most pedig nyílt forráskódú lett és a Haiku csapata fejleszti tovább. További információk és a hibajegyzék a Pe oldalán taláható.

    +

    További információk a dokumentációban.

    + +
    +
    + + + diff --git a/docs/userguide/hu/applications/people.html b/docs/userguide/hu/applications/people.html new file mode 100644 index 0000000000..0cc54e188c --- /dev/null +++ b/docs/userguide/hu/applications/people.html @@ -0,0 +1,88 @@ + + + + + + + + + Névjegyek + + + + + + + + +
    +
    + +

    people-icon_64.pngNévjegyek (People)

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/People
    Beállítások:~/config/settings/People_data
    +


    +

    A Névjegyek egy egyszerű névjegy-adatbázis, ami a Haiku jellemzőit használja, melyek a fájrendszeren kerülnek tárolásra. Minden névjegy külön fájlban van eltárolva, ahol az adatok jellemzőkként szerepelnek. Ennek köszönhetően az összes adat indexelve van, így lekérdezés is építhető rá, tehát bármely adatra rákereshetünk.

    + +people.png + +

    A Csoport-jellemző az ablak alján lehetőséget ad arra, hogy a névjegyeket csoportokba rendezzük. Ez hasznos lehet akkor, ha például több ember ugyan azon a feladaton dolgozik. Az előugró menüből már létező csoportot is kiválaszthatunk. Ha egy felhasználó több mint egy csoport tagja, akkor a csoportnevek vesszővel (",") elválasztva jelennek meg.

    + +

    A névjegyek fájljai általában a /boot/home/people/ mappában találhatóak. Ha látni szeretnénk az összes névjegyet, akkor csak nyissuk meg a mappát, és válasszuk ki a szükséges jellemzőket. Ha csoportosítani szeretnénk a névjegyeket, akkor csak készítsünk egy lekérdezést, és egy ablakban látjuk majd az összeset, ami megfelel a feltételnek.

    + +people-files.png + +

    Ezek a fájlok épp úgy használhatóak, mint a többi fájl: jellemzők szerint rendezhetőek (a további rendezési szempontok ugye a SHIFT lenyomása melletti kattintással), és persze törölhetőek, megduplázhatóak vagy átnevezhetőek. A névjegy adatai közvetlenül is szerkeszthetőek: csak a jellemzőre kell kattitnani (vagy ALT E), épp mint mikor egy fájlt átnevezünk. Ha már a szerkesztő módban vagyunk, akkor a TAB és a SHIFT TAB lenyomásával lépegethetünk az oszlopok közt.

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/poorman.html b/docs/userguide/hu/applications/poorman.html new file mode 100644 index 0000000000..d8a37d0867 --- /dev/null +++ b/docs/userguide/hu/applications/poorman.html @@ -0,0 +1,89 @@ + + + + + + + + + SzegényEmber + + + + + + + + +
    +
    + +

    poorman-icon_64.pngSzegényEmber (PoorMan)

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/PoorMan
    Beállítások:~/config/settings/PoorMan Settings
    +


    +

    A SzegényEmber egy remek kis internetes kiszolgáló (webserver), melyet könnyen beállíthatunk. Természetesen nem tartalmaz semmilyen speciális funkciót, vagy beállítást, éppen innen is ered a neve: SzegényEmber kiszolgálója.

    +

    Első indításkor a program megkérdezi, hogy mely mappát szeretnénk használni a kiszolgálni kívánt tartalom számára. Ha az Alapértelmezettet választjuk, akkor egy új mappát fog létrehozni (/boot/home/public_html). Kezdőoldalnak egy index.html nevű HTML fájlnak léteznie kell a mappában.

    +

    A program lényegében egy konzol ablakból áll, mely tartalmazza a program naplóját is. Ezen kívül informálódhatunk a kiszolgáló állapotáról, a mappáról, és a kérések számáról. A beállítások a Szerkesztés | Beállítások... menüből érhetőek el: +

    +

    poorman.png

    +

    A beállítások ablak 3 részre osztható:

    +

    Az Oldal fülön módosíthatjuk a kiszolgálandó mappa helyét, a kezdőoldal nevét, illetve azt, hogy ha nem található kezdőoldal a mappában, akkor az oldalon a mappa tartalma jelenjen-e meg vagy sem.
    +A Naplózás fülön ki- illetve bekapcsolhatjuk a naplózást a konzolba, vagy megadhatunk egy külön naplófájlt is.
    +Haladó beállítások esetén pedig a maximális egyidejű kapcsolatok számát tudjuk szabályozni.

    +

    A konzol ablakban lévő menüelemek magától értetődőek. Például elmenthetjük a konzolon látott naplót, vagy épp kiüríthetjük azt, leállíthatjuk/elindíthatjuk a kiszolgálót, illetve lenullázhatjuk a kapcsolatok számát.

    + +
    Ha ki szeretnénk próbálni, hogy egyártalán működik-e, akkor csak meg kell adni a /boot/apps/BePDF/docs/ mappában lévő index.html fájlt, mint kezdőoldalt. Ezután a böngészőbe írjuk be a 127.0.0.1 címet, ami a saját gépünk magára mutató azonosítója.
    + +
    +
    + + + diff --git a/docs/userguide/hu/applications/screenshot.html b/docs/userguide/hu/applications/screenshot.html new file mode 100644 index 0000000000..ab604db0a4 --- /dev/null +++ b/docs/userguide/hu/applications/screenshot.html @@ -0,0 +1,114 @@ + + + + + + + + + Képernyőkép + + + + + + + + +
    +
    + +

    screenshot-icon_64.pngKépernyőkép (Screenshot)

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/Screenshot
    +/bin/screenshot
    Beállítások:~/config/settings/screenshot
    +


    +

    Ezzel a programmal képernyőképek készíthetőek, mely a PRINT billentyűvel is előhívható.

    +

    screenshot.png

    +

    Választhatunk, hogy a teljes képernyőről, vagy csak egy adott ablakról készítünk képet, az ablak kerete is szerepeljen a képen, vagy csak annak tartalma, illetve az is megadható, hogy az egér kurzorja is a képen legyen-e. Továbbá késleltetést is adhatunk meg másodpercben.

    +

    Ezen kívül a készítendő fájl nevét, formátumát és a mentésének helyét is ki tudjuk választani, ami a Mentés gombra kattintáskor lényeges. A mentésen kívül a kép a vágólapra is helyezhető a Másolás a vágólapra megnyomásakor, amit majd egy másik programba beilleszthetünk. Ezen kívül pedig Új képernyőkép is készíthető.

    +

    Minden beállítást megjegyez a program, így azokat fogja használni az alábbi kombinációk használatok is:

    + + + + +
    PRINTKésleltetés nélkül készít egy képet, majd megnyitja a program ablakát.
    SHIFT PRINTKépernyőképet készít "csendes módban" (az ablak nem jelenik meg), miközben figyelembe veszi a legutóbbi beállításokat.
    CTRL PRINTSzintén "csendes módban" készíti el a képernyőképet, azonban a képet nem menti el, csak a vágólapra másolja azt.
    +

    +index +Képernyőkép készítése a Terminálból

    +

    Egy speciális screenshot program is a rendelkezésünkre áll, melyet a Terminálból vagy egy szkriptből indítható el.
    +A screenshot --help kiadásával kapunk egy kis segítségét a használatához:

    + +
    ~> screenshot --help
    +
    +screenshot [OPCIÓK] [FÁJL]  Egy képet készít a jelenlegi képernyőről.
    +
    +A FÁJL egy kiegészítő opció, mellyel megadható a fájl illetve az útvonal csendes módban.
    +Egy, már létező fájl felülírása előtt kapunk majd egy figyelemztetést. Ha nincs FÁJL megadva,
    +akkor a fájl egy alapértelmezett néven lesz eltárolva a Saját mappában.
    +
    +OPCIÓK
    +  -m, --mouse-pointer   Az egér-kurzor is megjelenik a képen.
    +  -b, --border          Az ablak kerete is a képre kerül.
    +  -w, --window          Csak a készítés pillanatában aktív ablakról készít képet.
    +  -d, --delay=másodperc   Késleltetés megadása [másodpercben].
    +  -s, --silent          A program ablakának megnyitása nélkül készíti el a képet (csendes mód).
    +  -f, --format=formátum    Az elmentendő kép formátumát tudjuk megadni, mely lehet
    +                        [bmp], [gif], [jpg], [png], [ppm], [tga], [tif]
    +  -c, --clipboard       Az elkészített képet a vágólapra másolja, de az ablakot nem jeleníti meg
    +
    +Megjegyzés: a -b, --border opció csak akkor működik, ha a -w, --window is meg van adva.
    +
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/showimage.html b/docs/userguide/hu/applications/showimage.html new file mode 100644 index 0000000000..a63a5a7c2d --- /dev/null +++ b/docs/userguide/hu/applications/showimage.html @@ -0,0 +1,125 @@ + + + + + + + + + Képmegjelenítő + + + + + + + + +
    +
    + +

    showimage-icon_64.pngKépmegjelenítő (ShowImage)

    + + + + +
    Asztalsáv:Nincs bejegyzés. Általában egy támogatott fájltípus megnyitásakor indul el.
    Útvonal:/boot/system/apps/ShowImage
    Beállítások:~/config/settings/ShowImage_settings
    +


    +

    A Képmegjelenítő lehetőséget nyújt az összes kép megjelenítésre, amihez van értelmező. Ezt ellenőrizhetjük a Értelmezők beállításainál. Az új formátumokat automatikusan felismeri amikor ahhoz tartozó értelemzőt adunk a rendszerhez.
    +A program minimális szerkesztési lehetőséget is biztosít: levágás, forgatás és tükrözés; továbbá bármely más formátumba elmenthetőek a módosítások, illetve maga a fájl.

    +

    indexMegjelenítés

    +showimage-view.jpg +

    A Nézet menüből Bemutató indítható a mappában található összes képből (vagy a lekérdezés eredményéből). Itt megadhatjuk a Képváltás közti szünetet is 2 és 20 másodperc között.

    +

    A többi menüpont a jelenleg megnyitott képre vonatkozik (az ablak átméretezése nélkül):
    +Eredeti méret - a képet az eredeti méretűre méretezi át.
    +Illesztés az ablakhoz. - a képet az ablak méretéhez igazítja, például ha átméretezzük az ablakot.
    +Kicsinyítés és Nagyítás - a kép méretének 10%-os léptékben való csökkentése illetve növelése. Ezt az egér görgőjével is megtehetjük. Továbbá, ha kép mérete nagyobb, mint maga az ablak, akkor azt a bal egérgomb lenyomása melett mozgathatjuk.

    +

    Két beállítási lehetőség van, ami nem csak a jelenlegi képre érvényes:
    +Magas minőségű nagyítás - egy gyors szűrő alkalmazása, amivel tisztább képet kapunk közelítéskor.
    +Nyújtás az ablakhoz - a kisebb képet az ablak méretéhez nyújtja.

    +

    Ha Teljes képernyős módban vagyunk és ha a Felirat mutatása teljes képernyős módban be van jelölve, akkor a fájl neve a kép alsó részén fog megjelenni.

    +

    Végül, a Eszköztár megjelenítése elrejti/megjeleníti a grafikus vezérlőt:

    +showimage-toolbar.png +

    Balról jobbra: előző kép, következő kép, bemutató indítása (teljes képernyős módban), kijelölés-mód, eredeti méret, az ablakhoz illesztés, nagyítás, kicsinyítés.

    +

    A legtöbb gyakori parancs a kép helyi menüjében is elérhető teljes képernyős módban.

    +

    indexBöngészés

    +showimage-browse.jpg +

    Miután megnyitunk egy képet, gyorsan váltogathatunk a mappában vagy a lekérdezés eredményében lévő képek közt a / vagy / lenyomásával. Az éppen aktuális kép a Nyomkövető ablakban is kijelölésre kerül.

    +

    Ahhoz, hogy a jelenlegi képet tartalmazó mappát megnyissuk van egy gyorsabb megoldás is, mint a mappa megkeresése. Ez épp úgy működik, mint a Menü navigáció a Nyomkövető esetében, amikor az állapotsor információs területére kattintunk. Jelen esetben a bal alsó sarokban lévő információs területre (ahol a kép mérete és típusa található).

    +

    A Tallózás menüvel egy másik típusú képváltogatásra is lehetőségünk van: néhány képformátum, mint például a TIFF, több oldalt/képet is tartalmazhat egy fájlban. Például az Első oldal és Következő oldal menüpontokkal navigálhatunk az oldalak/képek között.

    +

    indexSzerkesztés

    +showimage-edit.jpg +

    A Kép menüből néhány módosítást elvégezhetünk a képen: forgatás és tükrözés. Ezekkel a műveletekkel a kép adata nem fog megváltozni. Csupán egy jellemzőt kap a fájl, miszerint a kép elforgatva vagy épp tükrözve jelenjen meg.

    +

    A Beállítás háttérnek... megnyitja a Hátterek beállítási panelt, ahol a jelenlegi képet megadhatjuk háttérnek.

    +

    A kivágás egy újabb funkció, amire gyakran szükségünk lehet. Kivágás megadásához Kijelölés módra kell váltanunk a Szerkesztés menüből és az egérrel egy négyzetet kell rajzolnunk. Ha nem akarsz módot váltani, akkor a CTRL lenyomása közben "normál módban" is megteheted, ellenkező esetben ugye a képet mozgatjuk.
    +A Kijelölés törlése vagy az ESC lenyomásakor a kijelölési négyzet törölhető.

    +

    A következő fejezetben meglátjuk, hogyan is tudjuk elmenteni a kép egy kijelölt részét.

    +

    indexMentés és átalakítás

    +

    Hogy elmentsük a képet az elérhető formátumok egyikébe (vagy a jelenlegi formátumba), egyszerűen csak válasszuk a Mentés másként... almenüt a Fájl menüből, válasszuk ki a formátumot, és adjuk meg a fájlnevet.
    +Egy másik gyors megoldás, hogy ha már meg van nyitva az a mappa, ahová el akarjuk menteni a fájlt, akkor csak húzzuk bele a képet.

    +showimage-dnd.jpg +

    Ugyan így működik, ha a kép egy részét akarjuk kivágni/elmenteni. Vagy jelöljük ki a kép egy részét, vagy válasszuk a Szerkesztés | Összes kiválasztása menüt az egész kép kijelöléséhez. Ezután pedig a kijelölt területet dobjuk az Asztalra vagy egy Nyomkövető ablakba a kép létrehozásához. Az új kép formátuma megegyezik majd az eredeti képével.

    +

    Ha más formátumba akarjuk elmenteni a kivágást, akkor jobb gombbal húzzuk a Nyomkövető ablakba, és majd a helyi menüben válasszuk ki a kívánt formátumot.

    +

    indexBillentyű parancsok

    +

    A leggyakoribb kombinációk:

    + + + + + + + + + + +
    / Előző kép
    / Következő kép
    DELA Szemetesbe helyezés
    +Közelítés
    -Távolítás
    0Eredeti méret
    1Az ablakhoz igazítás
    ALT ENTERVáltás teljes képernyős módban (dupla-kattintással is)
    CTRLA CTRL-t lenyomva tartva anélkül jelölhetünk ki egy területet a képen, hogy kijelölés-módra váltanánk
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/soundrecorder.html b/docs/userguide/hu/applications/soundrecorder.html new file mode 100644 index 0000000000..31ccddbf6b --- /dev/null +++ b/docs/userguide/hu/applications/soundrecorder.html @@ -0,0 +1,79 @@ + + + + + + + + + Hangrögzítő + + + + + + + + +
    +
    + +

    soundrecorder-icon_64.pngHangrögzítő (SoundRecorder)

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/SoundRecorder
    Beállítások:~/config/settings/???
    +


    +

    A leírás még hiányzik. Ha szeretnél írni egy leírást, akkor jelezd azt a Documentation mailing list levelező listán a többszöri változat megelőzése érdekében.

    + +
    +
    + + + + diff --git a/docs/userguide/hu/applications/stylededit.html b/docs/userguide/hu/applications/stylededit.html new file mode 100644 index 0000000000..793562a8ba --- /dev/null +++ b/docs/userguide/hu/applications/stylededit.html @@ -0,0 +1,96 @@ + + + + + + + + + StyledEdit + + + + + + + + +
    +
    + +

    stylededit-icon_64.pngStyledEdit

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/StyledEdit
    Beállítások:Nincs
    +


    +

    A StyledEdit a Haiku saját (egyszerű) szövegszerkesztője. Bár a fájlokat egyszerű szövegként menti el, a jellemzőknek köszönhetően (korlátozottan) formázási lehetőségünk is van, azonban ezek csak a StyledEdit-ben használhatóak.

    +stylededit.png +

    A jellemzőket megkapjuk, ha a Terminál-ban a listattr parancsot használjuk:

    +
    ~> listattr Haiku-doc.css
    +File: Haiku-doc.css
    +  Type         Size                 Name
    +-----------  ---------  -------------------------------
    +     Int-32          4  "be:encoding"
    +MIME String         11  "BEOS:TYPE"
    +     Int-32          4  "wrap"
    +     Int-32          4  "alignment"
    +   Raw Data       1048  "styles"
    +
    +1071 bytes total in attributes.
    +

    Mint látható, a StyledEdit összes formázási lehetősége megjelenik, mint jellemző: sortörés (be/ki) és igazítás (balra/középre/jobbra). A stílusok (betűtípus, méret, szín) az összes karakterhez pedig egy külön jellemzőként jelenik meg.

    +
    Mivel ezeket a tulajdonságokat csak a BFS fájlrendszer tudja használni/tárolni, így ezek elvesznek ha más fájlrendszeren tároljuk. +Ebben az esetben csak maga a szöveg marad meg.
    +

    Bármikor jól jöhet az, ha ki tudjuk emelni a bizonyos szövegrészeket, miközben a fájl tartalma megmarad egyszerű szövegnek. Például egy ReadMe.txt bármilyen rendszeren olvasható, akár parancssorból is, mint szöveg, ugyanakkor ha Haiku alatt megnyitjuk, ha tartalmaz stílusokat, akkor az annak megfelelően fog megjelenni.

    +

    A StyledEdit használata igen egyszerű. Csak írjuk meg a szöveget, jelöljük ki a kívánt szövegrészt, majd adjuk meg a méretet és a színt a Betűtípus menüből. A sortörést és az igazítást pedig a Dokumentum menüből tudjuk megadni. Ez azonban csak az egész fájlra alkalmazható.

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/terminal.html b/docs/userguide/hu/applications/terminal.html new file mode 100644 index 0000000000..3c27d487ca --- /dev/null +++ b/docs/userguide/hu/applications/terminal.html @@ -0,0 +1,145 @@ + + + + + + + + + Terminál + + + + + + + + +
    +
    + +

    terminal-icon_64.pngTerminál (Terminal)

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/Terminal
    Beállítások:~/config/settings/Terminal
    +~/.profile - a /boot/common/etc/profile fájl kibővítése/felülírása
    +~/.inputrc - a /boot/common/etc/inputrc fájl kibővítése/felülírása
    +


    +

    A Terminál a Haiku bash (Bourne Again Shell) felületete.

    +

    Ehhez kapcsolódik a Bash és szkriptek (néhány internet hivatkozás, leírások) és a Haiku-specifikus parancssori programok témakör. Itt most csak magára, a Terminálra koncentrálunk.

    + +

    +index +Ablakok és lapok

    +

    Szükség szerint bármennyi Terminál elindítható vagy a program újbóli elindításával, vagy pedig az ALT N kombinációval egy már futó programból. Továbbá fülek/lapok is használhatóak, amit az ALT T lenyomásával adhatunk egy meglévő ablakhoz.

    +terminal.png +
    +

    A lap-fül sorában egy üres területen duplán kattintva megnyithatunk egy új lapot; magán a lap-fülön duplán kattintva pedig kapunk egy ablakot, ahol új nevet adhatunk a lapnak. A beviteli mezőn tartva az egeret kaphatunk egy kis segítséget a használható %-al jelölt változókról.
    +Alap esetben, %1d: %p, a fülön az aktuális mappa neve, egy :, mint tagóló karakter és a jelenleg futó program neve látható (vagy -- ha épp nem futtatunk semmit a Terminálban). Mint azt a fenti képen is láthatjuk, hogy az első lapon épp FTP-t használunk az Asztalon, a másikon pedig a / mappában vagyunk.
    +A Szerkesztés | Ablak címe... menüvel magának a Terminál ablaknak a címe módosítható épp úgy, mint a lap esetében.

    +

    A lap-füleken jobb gombbal kattintva kapunk egy menüt: Lap bezárása, Többi lap bezárása vagy Lap címének szerkesztése... (épp úgy, mint dupla kattintáskor).

    +

    A Terminál ablak épp úgy méretezheztő, mint bármely más ablak. Ugyanakkor előre beállított méretet is választhatunk a Beállítások | Ablak mérete menüből. Az ALT ENTER lenyomásakor pedig teljes képernyőre válthatunk.

    +

    Az ablak mérete és a karakterkódolás csak a Beállítások | Mentés alapértelemzettként menüre nyomva őrizhető meg.

    + +

    index +Beállítások

    +

    A Beállítások | Beállítások... menü megnyit egy panelt, ahol a Terminál alapbeállíátsai módosíthatóak.

    +terminal-settings.png +
    +

    A beállítások első részében különféle "képleteket" látunk, amivel megadható a lap és az ablak alapértelmezett címe. Ezeken a mezőkön is szintén kapunk egy kis segítséget ha az egérrel felettük maradunk. Alább a betűtípust, a betű méretét és a különféle színösszeállításokat találjuk. Itt választhatunk néhány előre megadott összeállításból, mint például: Fehér alapon fekete vagy Fekete alapon fehér vagy készíthetünk Egyéni összeállítást is az alsó színválasztó használatával.
    +A Kilépés megerősítése ha van futó program jelölőnégyzet bejelölésével kapunk egy figyelmeztetést mielőtt bezárnánk az ablakot miközben még éppen fut program benne.
    +Több profil is létrehozható külön-külön fájlba mentve, amin duplán kattintva a profil beállításaival megnyílik egy új Terminál.
    +A Rendben megnyomásával ezeket a beállításokat a program elmenti alapértelmezettként.

    + +

    +index +Billentyűzet parancsok

    +

    A hasznos kombinációk listája a Billentyűzet-kombinációk fejezetben található.

    + +

    +index +Bash személyre szabása

    +

    Számtalan lehetőség van a bash konfigurálására. Két fájl kifejezetten fontos a felhasználók számára: .profile és .inputrc
    +Mind a kettőt a home/ mappában kell létrehozni, és a /boot/common/etc/ mappában lévő eredeti fájlok tartalmát átmásolni az újonnan létrehozottakba.

    + +

    .profile

    +

    A .profile minden alkalommal betöltődik mikor egy új Terminált nyitunk meg. Ebben minden, a bash-el kapcsolatos működési és megjelenítési beállítás megtalálható. További információk találhatóak az interneten.

    +

    A Haiku/BeOS Tip Server is tartalmaz néhány ötletet, amin elindulhatunk. Például:

    + +

    Itt még többet találsz.

    + +

    .inputrc

    +

    Az .inputrc-vel billentyű-módosításokat hajthatunk végre. Mivel a Haiku a leghasznosabb alap beállításokat használja, így valószínű, hogy nem kell ezzel foglalkoznunk. Ha valami speciális dologra van szükségünk, akkor az interneten kapunk információt, például a The GNU Readline Library oldalon.

    + +

    +index +Javaslatok a Terminállal való munkához

    +
    • Egy fájl vagy mappa a Terminál ablakba húzásakor a program annak útvonalát illeszti a jelenlegi pozícióba. Ha a jobb gombbal húzzuk azt az ablakba, akkor további lehetőségünk is van a megjelenő helyi menüből:

      + + + + + + +
      Útvonal beszúrása A behúzott fájl/mappa útvonalának beillesztése (megyegyezik a fájl/mappa bal gombbal való behúzásával).
      Mappa váltása A jelnlegi mappa módosítása a behúzott fájl/mappa útvonalával.
      Hivatkozás létrehozása Hivatkozás létrehozása a Terminál jelenlegi mappájába.
      Mozgatás A behúzott fájl/mappa a Terminál jelenlegi mappájába mozgatása.
      Másolás A behúzott fájl/mappa a Terminál jelenlegi mappájába másolása.
    • +
    • Bármilyen fájl megnyitható az alapértelmezett programmal a open [fájlnév] paranccsal. Ez szintén működik a jelenlegi mappa (".") és a szülő mappa ("..") megfelelőjével is, amikor az adott mappa fog megnyílni a Nyomkövetőben. Tehát, a jelenlegi mappa megnyitásához az alábbi parancsot kell kiadni:

      +
      open .
      +
    + + +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/textsearch.html b/docs/userguide/hu/applications/textsearch.html new file mode 100644 index 0000000000..83cb39dcf3 --- /dev/null +++ b/docs/userguide/hu/applications/textsearch.html @@ -0,0 +1,102 @@ + + + + + + + + + Szövegkeresés + + + + + + + + +
    +
    + +

    textsearch-icon_64.pngSzövegkeresés (TextSearch)

    + + + + +
    Asztalsáv:Nincs. Nyomkövető kiegészítőként indítható.
    Útvonal:/boot/system/apps/TextSearch
    Beállítások:~/config/settings/TextSearch
    +


    +

    Ez a program szöveges fájlokban való keresgélésre szolgál. Elsődlegesen a Nyomkövető kiegészítők listából indítható a kiválasztott fájlon vagy mappán, ahol keresni szeretnénk.

    + +textsearch.png + +

    Szöveget kereshetsz a beviteli mezőbe írva, és a RETURN-t lenyomod, vagy ha a Keresés gombra kattintasz. Ha a Sorok megjelenítése be van jelölve, akkor a találatok automatikusan kibontásra kerülnek a listában.

    + +

    Néhány szó az egyébként egyértelmű menüről:

    + + + + + + + + + + + + + + + + + +

    Fájl menü

    Új ablakALT N Új ablakot nyit meg, ahol új keresést indíthatunk ugyan abban a fájlba vagy mappában. +
    Cél megadása...ALT FÚj fájlok illetve mappák megadása ahol keresni szeretnénk.

    Műveletek menü

    Kijelölés kivágásaALT T Az összes bejegyzés elávolítása a listából ami nincs kijelölve.
    Kijelölés megnyitásaALT OA kijelölt fájl megnyitása a hozzá társított programmal (ugyan úgy, mint dupla-kattintásskor). Ha egy szövegszerkesztő (például a Pe) lehetőséget nyújt rá, akkor megnyitáskor a program automatikusan arra a sorra ugrik a fájlban, ahol megtalálta a keresett szöveget.
    Fájlok megjelenítése a NyomkövetőbenALT KA kijelölt fájl megnyitása a Nyomkövetőben.
    Szöveg másolása a vágólapraALT BA jelenleg kijelölt szöveget a vágólapra másolja.

    Beállítások menü

    Ponttal kezdődő mappák átugrása Ez akkor lehet hasznos, ha "unix-szerű" környezetben dolgozunk, ahol gyakran a fontos fájlok egy rejtett mappában (.mappa/) találhatóak. A forráskód-kezelő rendszerek, mint például az SVN és CVS, és a Haiku esetén is találkozhatunk ilyennel.
    Keresési szöveg kihagyása A program egy másik parancssori programot használ, a grep-et. Ehhez a speciális karaktereket, mint például '"*\$?! és a szóközt külön fogja jelölni a \ jellel. Ennek a kikapcsolása annyit tesz, hogy ezt kézzel kell megadni, de lehetőségünk van az általános kifejezések használatára is.
    Csak szövegfájlokban Jelenleg a program csak a szöveges fájlokban való kereséskor hatékony. Ez az opció kikapcsolása esetén a program az összes típusú fájlban fog keresést végezni.

    Előzmények menü

    Ez előzőleg használt keresési beállítások.

    Kódolás menü

    Szükség esetén választhatunk különféle karakter-kódolások közt.
    +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/tv.html b/docs/userguide/hu/applications/tv.html new file mode 100644 index 0000000000..cfdcdc7c3b --- /dev/null +++ b/docs/userguide/hu/applications/tv.html @@ -0,0 +1,79 @@ + + + + + + + + + TV + + + + + + + + +
    +
    + +

    tv-icon_64.pngTV

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/TV
    Beállítások:~/config/settings/???
    +


    +

    A leírás még hiányzik. Ha szeretnél írni egy leírást, akkor jelezd azt a Documentation mailing list levelező listán a többszöri változat megelőzése érdekében.

    + +
    +
    + + + + diff --git a/docs/userguide/hu/applications/vision.html b/docs/userguide/hu/applications/vision.html new file mode 100644 index 0000000000..4d326aa4a4 --- /dev/null +++ b/docs/userguide/hu/applications/vision.html @@ -0,0 +1,81 @@ + + + + + + + + + Vision + + + + + + + + +
    +
    + +

    vision-icon_64.pngVision

    + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/apps/Vision{version}/Vision
    Beállítások:~/config/settings/Vision/*
    +


    +

    A Vision egy IRC kliens, amit eredetileg BeOS-ra fejlesztettek. Leírás és hibajegyzék a Vision oldalán található.

    +
    További információk és segítség a Haiku csatornáin (akár több nyelven is).
    +A leggyakrabban látogatott a #haiku szoba az irc.freenode.org címen (angol nyelven).
    + +
    +
    + + + + diff --git a/docs/userguide/hu/applications/webpositive.html b/docs/userguide/hu/applications/webpositive.html new file mode 100644 index 0000000000..2ac0bbee15 --- /dev/null +++ b/docs/userguide/hu/applications/webpositive.html @@ -0,0 +1,137 @@ + + + + + + + + + WebPositive + + + + + + + + +
    +
    +

    webpositive-icon_64.pngWebPositive

    + + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/system/apps/WebPositive
    Beállítások:~/config/settings/WebPositive/ - beállítások, sütik, átmeneti tár és böngészési előzmény
    ~/config/settings/WebPositive/Bookmarks - minden könyvjelző egy külön fájl
    +


    +

    A WebPositive, vagy röviden Web+ a Haiku saját böngészője. A név két részből áll: Positive (a BeOS NetPositive böngészője után), illetve Web (az Apple WebKit-je után). Ez a nyílt forráskódú HTML értelmező funkciótár más, ismertebb böngészők motorja is egyben, mint például a Safari (Mac OS X) és a Chrome (Google). Mivel a WebKit-et használja, így a Web+ képes a legújabb technológiákat is használni.

    +webpositive.png +

    A WebPositive felülete szokványosnak mondható: a menüsor alatt található a navigációs gombok (vissza, előre, leállítás, kezdőlap).
    +A gombok melett a címsor foglal helyet, ahová az oldal címét írjuk be.
    +A navigációs eszközsor alatt található maga az oldal. Több oldal is megnyitható egyszerre, mind-mind a saját lapján (fülön).
    +Az ablak alján pedig az állapotsor található, ami a betöltés állapotáról informál minket, illetve az egér alatti hivatkozásról. Az oldal betöltése közben egy állapotsáv is megjelenik a jobb oldalon.

    +

    indexBeállítások

    +

    Az Ablak menüből érhető el a Beállítások panel, amivel a program néhány működési jellemzőjét módosíthatjuk.

    +webpositive-settings.png +

    Az első fül a főbb beállításokat tartalmazza: melyik oldal legyen a Kezdőlap, mi legyen a Keresőoldal, melyik mappát használja a Letöltések helyének.
    +Két előugró menüt is találunk, amivel megadható, hogy melyik oldal nyiljon meg új ablak vagy lap megnyitásakor.
    +A jelölőnégyzetekkel módosíthatjuk, hogy a fülek egy oldal esetében is megjelenjenek-e vagy sem, továbbá a WebPositive vezérlőfelülete megjelenjen-e teljes képernyős módban és az egér kurzor inaktivitás esetén eltűnjön-e vagy sem.
    +Végül pedig eldönthetjük, hogy a "Kezdőlap"-gomb a gombsoron megjelenjen-e, és hogy hány napig tartsa meg az előzményeket.

    +

    A második fülön a böngésző által az oldalon használt betűtípusok és azok méretei adhatóak meg.

    +

    Az utolsó fül pedig a proxy beállításokra vonatkozik.

    +

    indexBöngészés

    +

    Ha már használtál eddig valamilyen böngészőt, akkor a WebPositive nem fog nagy meglepetést okozni. Ahelyett, hogy az összes funkción végig mennénk, nézzünk meg csupán néhány jelentősebbet.

    +
      +
    • webpositive-tabbar.png +

      Új lapokat létrehozhatunk a + gomb segítségével a fül-soron, vagy ha van elég hely, akkor dupla kattintással is az üres területen a fül-soron. Ha több oldal is meg van nyitva, mint amennyi elfér a fül-soron, akkor a < > görgető gombok aktívak lesznek. A jobb oldalon a gombot lenyomva egy menü jelenik meg az összes megnyitott lap címével együtt, így gyorsan a szükségesre navigálhatunk közöttük.

    • +
    • Egy hivatkozáson a középső gombbal kattintva a hivatkozás megnyílik egy új lapon a háttérben.

    • +
    • A Nézet menüből a Méret növelése és a Méret csökkentése érhető el. Egy másik opciói is a rendelkezésünkre áll: Csak a szöveg nagyítása, mely esetben a képek mérete nem változik, csak a szövegé.

    • +
    • Ha teljes képernyős módba váltunk, és a beállítások szerint a vezérlőfelület eltűnik, akkor egy másodperc múlva már nem látjuk azt. Hogy ideiglenesen visszahozzuk, egyszerűen csak mozgassuk az egeret a képernyő felső részére.

    • +
    • webpositive-locator.png +

      Ha a címsorban elkezdünk gépelni, akkor megjelennek azok a címek, melyeket már meglátogattunk, és melyek tartalmazzák a beírt szótöredéket. Ha több betűt is beírunk, akkor szűkíthetjük a megjelenő listát, vagy a vagy gombok segítségével válasszuk ki a kívánt címet. Majd az ENTER leütésére a böngésző megnyitja azt. Erre a jobb oldalon lévő gombot is használhatjuk.
      +Ha címként nem értelmezhető a beírt szöveg, akkor a böngésző megkeresi azt a Google-ben, így a címsor egyben gyors keresésre is használható.

    • +
    • Egy objektumon jobb gombbal kattintva egy helyi menü jelenik meg, mely változik a objektumnak megfelelően (például megnyitás új oldalon, vagy letöltés).

    • +
    • A Szerkesztés | Keresés megjelenít egy kereső mezőt az ablak alján, mellyel az oldalon lévő szövegben kereshetünk. A találatokat a böngésző kiemeli az oldalon.

    • +
    +
    Egy idő után az oldal betöltése egyre lassabb és lassabb lehet. Ez nem feltétlenül hiba, ugyanis ezt általában a sütik (cookie) kezelése okozza. Amíg ez nem oldódik meg, addig manuálisan kell eljárni: a ~/config/settings/WebPositive/Cookies.curl fájlt meg kell keresni. Ez tartalmazza a sütiket, és folyamatosan növekszik, ahogy böngészünk az interneten. Miután több kilobájt lesz a mérete, a böngészés lelassul. Ekkor csak törölni kell a fájlt, és "tiszta lappal" indulunk.
    +

    indexKönyvjelzők

    +

    A WebPositive a könyvjelzőket fájlként és mappaként tárolja a ~/config/settings/WebPositive/Bookmarks/ mappában. Új könyvjelző hozzáadásakor egy fájl jön létre. A könyvjelzőket tartalmazó mappát gyorsan megnyithatjuk a Könyvjelzők kezelése menüvel.

    +webpositive-bookmarks +

    Egy könyvjelző címe (URL-je), neve, stb. épp úgy módosítható, mint bármely fájl és annak jellemzői. Előtte győzödjön meg, hogy minden oszlop látható legyen a Nyomkövetőben (Jellemzők menü), ezután a fájlt kiválasztva csak nyomjuk le az ALT E kombinációt, és szerkesszük a kívánt jellemzőt; oszlopokat pedig a TAB-al válthatunk.
    A könyvjelzők egyéni mappákba is rendezhetőek.

    +

    A Nyomkövetőt használva a könyvjelzők keresésére remekül kihasználhatjuk annak adottságait.
    +A Gépelés közbeni szűrés engedélyezése aktiválásakor a Nyomkövető beállításoknál, a könyvjelzők lista egyszerűen szűrhető. A vagy a gombokkal mozoghatunk a listában, majd az ENTER leütésére megnyithatjuk az oldalt. Győzödjünk meg róla, hogy minden jellemző látható legyen a listában.

    +

    Hogy ez működjön, ahhoz az összes könyvjelzőt a ~/config/settings/WebPositive/Bookmarks/ mappában kell tárolni és csak az itt csoportosított könyvjelzők jelennek majd meg a WebPositive Könyvjelzők menüben.

    +

    indexLetöltések

    +

    Az Ablak | Letöltések megnyitja a letöltések ablakot, mely tartalmazza az összes eddigi és folyamatban lévő letöltést:

    +webpositive-downloads.png +

    Az aktuális letöltések egy állapotsávval jelennek meg, épp úgy, mint a Nyomkövetőben. Információkat kapunk a letöltési sebességről, a fájl méretéről és a várható befejezésről. A jobb oldali gombokkal (Mégse és Újraindítás) a letöltés megszakítható, vagy újraindítható, vagy megnyitható (Open), illetve törölhető (Eltávolítás) az a listából. A Hiányzó törlése és az Elkészültek eltávolítása a listából gombokkal a lista tartalma "megtisztítható". A "hiányzó" fájlok azt jelentik, hogy a fájl már törölve lett a letöltés helyéről.

    +

    A letöltés alatt álló fájl törlésekor a letöltés automatikusan megszakad. Ezt egy ikon ("szellem") is jelezni fogja a letöltések ablakban.
    +A WebPositive nagyon toleráns a Nyomkövető fájl-kezelésével kapcsolatban. A fájlok átnevezhetőek, vagy mozgathatóak miközben még tart a letöltés, majd a letöltés végeztével a módosítások véglegesítésre kerülnek, melyek megjelennek a letöltések ablakban is.

    +

    Elgondolkoztál már azon, hogy hogyan derül ki, hogy honnan lett letöltve egy fálj? Ezt megtudhatod, ha a fájlt megnyitod a LemezFürkész programmal, majd megkeresed a META:url jellemzőt.

    +

    Szeretnéd, hogy a letöltések mappában lévő fájl címe (hogy honnan lett letöltve) megjelenjen? Ekkor egy könyjelzőt kell a letöltések mappájába másolni, majd a megjelenítendő oszlopoknál az URL-t kiválasztani. Ezután akár törölhető is a könyjelző a mappából.

    +

    indexBillentyű parancsok

    +

    Néhány hasznos billentyű-kombináció:

    + + + + + + + + + + + + + + +
    ALT TÚj fül megnyitása.
    ALT W Jelenlegi fül bezárása.
    ALT N Új ablak megnyitása.
    SHIFT ALT W A jelenlegi ablak bezárása.
    ALT ENTER Teljes képernyős mód.
    ALT R vagy F5 Az aktuális oldal frissítése.
    ALT H Kezdőlap megnyitása.
    ALT D A Letöltések ablak megjelenítése/elrejtése.
    ALT F A keresőmező megjelenítése az oldalon való kereséshez (elrejtés az ESC leütésével).
    ALT B Könyvjelző az oldalhoz.
    ALT M Könyvjelzők kezelése, a Könyvjelzők mappa megnyitása.
    ALT Az előző oldal megnyitása az előzmények alapján.
    ALT Az előzmények szerinti következő oldal megnyitása.
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/applications/wonderbrush.html b/docs/userguide/hu/applications/wonderbrush.html new file mode 100644 index 0000000000..8d2faf3a49 --- /dev/null +++ b/docs/userguide/hu/applications/wonderbrush.html @@ -0,0 +1,78 @@ + + + + + + + + + WonderBrush + + + + + + + + +
    +
    + +

    wonderbrush-icon_64.pngWonderBrush

    + + + + + +
    Asztalsáv:Programok
    Útvonal:/boot/apps/WonderBrush/WonderBrush
    Leírás:/boot/apps/WonderBrush/Documentation
    Beállítások:~/config/settings/WonderBrush
    +


    +

    A WonderBrush egy képszerkesztő raszteres és vektoros képek szerkesztésére. További információk a YellowBites oldalán és a leírásban.

    + +
    +
    + + + + diff --git a/docs/userguide/hu/attributes.html b/docs/userguide/hu/attributes.html new file mode 100644 index 0000000000..12c3c65fe7 --- /dev/null +++ b/docs/userguide/hu/attributes.html @@ -0,0 +1,173 @@ + + + + + + + + + Jellemzők + + + + + + + + +
    +
    + +

    Jellemzők

    + +

    A jellemzők azok adatmezők, amik a fájlhoz tartoznak, ám mégsem a fájl részei, például a méret számításánál nem játszanak szerepet, és anélkül másolhatóak, vagy módosíthatóak, hogy a fájlhoz hozzányúlnánk. A rendszer ezeket a jellemzőket használja például a fájl mérete, típusa vagy az utolsó módosítás idejének tárolására. Ez hasonlít a többi operációs rendszerben megszokottakhoz.

    +

    Amiben különbözik az az, hogy bármilyen jellemzőt bármilyen fájlhoz hozzá tudunk adni, és megjeleníteni, szerkeszteni is tudjuk egy Nyomkövető ablakban. Pontosan meg kell határozni a fájlhoz adandó jellemző típusát (például string (szöveg), integer (szám) vagy time (idő)), a nevét és leírást.

    +

    A fájlnak ugyanakkor nem kell, hogy legyen bármilyen tartalma. Példának nézzük meg ezeket a névjegyeket:

    +people.png +
    +

    Amint látja, ezek mind 0 méretű fájlok hozzájuk csatolt jellemzőkkel, ahol "Erős István" E-mail jellemzője éppen szerkesztés alatt áll a Nyomkövetőben.

    +

    Ha ezeket a jellemzőket még indexeljük is, mint a névjegyeket, leveleket vagy audió fájlokat alap esetben, akkor ezek szintén kereshetőek lesznek a Haiku gyors kereső rendszerében.

    + +

    +index +Jellemzők a Nyomkövetőben

    +

    A jellemzők megjelenítése nagyon hasonlít egy adatbázis- vagy táblázatkezelőhöz. A Nyomkövetőben megadható, hogy mely jellemzők jelenjenek meg (oszlopok) és hogy hogyan akarjuk rendezni a fájlokat (sorokat).

    +

    Ehhez nyissunk meg egy Nyomkövető ablakot, kattintsunk a Jellemzők menüre, és válasszuk ki azt, amit meg szeretnénk jeleníteni. Ezen kívül az oszlopfejléceken jobb gombbal kattitntva is ki meg tudjuk őket adni. Az oszlopokat is átrendezhetjük, csupán az egérrel mozgassuk az oszlopfejléceket. A nem kívánt oszlopot kihúzva az ablakból gyorsan eltüntethetjük azt.

    +

    A két oszlop közti vonalon duplán kattintva az oszlopok szélessége az optimális méretre állíthatóak.

    +

    Az oszlopfejlécen kattintva növekvő vagy csökkenő sorrendbe rendezhetjük a listát. Másodlagos rendezés is megadható, ehhez csupán lenyomva kell tartani a SHIFT billentyűt, mialatt az egérrel az következő oszlopon kattintunk. Épp úgy lehet például a névjegyeket egyidejűleg rendezni cég szerint és név szerint. A fenti képernyőképen látható is erre egy példa. A másodlagos rendezés halvány színű jellel van feltüntetve az oszlopfejlécen.

    +

    Ezen jellemzők szerkesztése épp olyan egyszerű, mint átnevezni egy fájlt: csak kattintsunk egy bejegyzésen, vagy nyomjuk le az ALT E kombinációt, majd keressük meg a módosítandó jellemzőt a TAB és SHIFT TAB billentyűkkel. ESC lenyomásakor a szerkesztés félbeszakad a módosítások mentése nélkül.

    + +

    +index +Jellemzők a Terminálban

    +

    Ha a parancssort részesíted előnyben, vagy szkriptek írását tervezed, akkor több parancs is a rendelkezésedre áll, amikkel kezelni tudod a jellemzőket a Terminálban.

    +

    +index +listattr

    +

    A listattr megjeleníti a fájl összes jellemzőjét a hozzájuk tartozó adatok nélkül.

    +
    használat: listattr 'fájl' ['fájl' ...]
    +

    Például:

    +
     ~/people ->listattr Ecet\ Tibor
    +File: Ecet Tibor
    +        Type       Size  Name                                
    +----------------------------------------------------------
    + MIME String        21  "BEOS:TYPE"
    +        Text        11  "META:name"
    +        Text         7  "META:nickname"
    +        Text         1  "META:company"
    +        Text        14  "META:country"
    +        Text         6  "META:state"
    +        Text         5  "META:zip"
    +        Text         7  "META:city"
    +        Text        15  "META:address"
    +        Text        17  "META:hphone"
    +        Text         1  "META:wphone"
    +        Text         1  "META:fax"
    +        Text         1  "META:url"
    +        Text        21  "META:email"
    +        Text        12  "META:group"
    +
    +    Raw Data        20  "_trk/pinfo_le"
    + 
    +140 bytes total in attributes.
    +

    Azon túl, hogy a "META:*" jellemzők tartalmazzák a névjegy adatait, két másik jellemzőt is kezel a rendszer:

    +
      +
    • A BEOS:TYPE tartalmazza a fájl típusát, mint MIME szöveget, esetünkben "application/x-person". Ez alapján megkapjuk az alapértelmezett ikont és a programot, mely kezeli a fájlt.

    • +
    • A "_trk/pinfo_le" jellemző tartalmazza a Tracker-ben az ikon pozícióját.

    +
    Magyarázatra szorul a vissza-perjel a névben. A Terminálban a speciális karaktereket, mint például '"*\$?! kilépő karakterrel kell "jelölni". A szóköz a névben épp ilyen. Tehát, a vissza-perjel (kilépő karakter) az a szóköz előtt van, nem pedig a név után.
    + +

    +index +catattr

    +

    A catattr megjeleníti a megadott jellemzőhöz tartozó adatot.

    +
    használat: catattr [--raw|-r] jellenző_neve fájl1 [fájl2...]
    +

    Például:

    +
     ~/people ->catattr META:city Ecet\ Tibor
    +Ecet Tibor : string : Hatvan
    + +

    +index +addattr

    +

    Az addattr hozzáad egy jellemzőt a fájlhoz és/vagy adatokkal tölti fel.

    +
    használat: addattr [-t típus] jellemző érték fájl1 [fájl2...]
    +    vagy: addattr [-f érték-fájlból] [-t típus] jellemző fájl1 [fájl2...]
    + 
    +         A típus ezek egyike:
    +                 string, mime, int, llong, float, double, bool, icon, raw
    +                 vagy szám-érték (például 0x1234, 42, 'ABCD', ...)
    +         Az alapértelmezett a "string"
    +

    Nos, tegyük fel, hogy Tibor elválal egy állást a Cukor Kft-nél, így most feltöltünk egy eddig üres jellemzőt adattal (aminek a típusa "string" (szöveg)):

    +
     ~/people ->addattr -t string META:company Cukor\ Kft Ecet\ Tibor
    +
    + +

    +index +rmattr

    +

    Az rmattr egy teljes jellemzőt kitöröl a fájlból.

    + +
    használat: rmattr [-p] jellemző fájl1 [fájl2...]
    +         'jellemző' a fájl egyik jellemzőjének a neve
    +         Ha a '-p' meg van adva, akkor a 'jellemző' mintaként szolgál.
    +

    Például a "Fax" jellemzőt üresen is hagyhatjuk, de teljesen ki is törölhetjük azt:

    +
     ~/people ->rmattr META:fax Ecet\ Tibor
    + +

    +index +copyattr

    +

    A copyattr jellemzőket másol egy vagy több fájlból egy másik fájlba. Alap esetben a fájl tartalma nem kerül átmásolásra.

    +
    használat: copyattr <opciók> <honnan> [ ... ] <hova>
    + +

    Ha a jellemzők másolásával együtt magát a fájlt is át szeretné másolni, akkor adja meg a "-d" vagy a "--data" opciót is.

    + +


    +

    További segítséget kaphatsz ezekről a parancsokról, illetve az opciókról ha a parancs után megadod a "-h" vagy a "--help" opciót.

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/bash-scripting.html b/docs/userguide/hu/bash-scripting.html new file mode 100644 index 0000000000..3135be91b6 --- /dev/null +++ b/docs/userguide/hu/bash-scripting.html @@ -0,0 +1,112 @@ + + + + + + + + + Bash és szkriptek + + + + + + + + +
    +
    + +

    Bash és szkriptek

    + +

    A "szkriptelés" automatikus folyamatok összessége, melyeket szövegként adhatunk meg, és menthetünk egy szöveges fájlba, amiket "szkripteknek" hívunk. Minden alkalommal, amikor szkripteket futtatunk, a parancsok lépésről lépésre hajtódnak végre, épp úgy, mint amikor azokat a Terminálban adjuk ki kézzel.
    +A szkriptek az egyszerű parancsok futtatásától az összetettebb kódokig nagyon jól használhatóak.

    + +

    +index +A Bash

    +

    Alapvetően a legtöbb shell támogatja a szkripteket. Azt javasoljuk, hogy ismerkedj meg a BASH-el, ugyanis a Haiku is azt használja. Annak köszönhetően, hogy ez egy igen elterjedt shell, rengeteg interneten elérhető anyagot találunk hozzá. Például egy remek dokumentációt is, melyet Johan Jansson készített: Introduction to bash - a tutorial for bash under BeOS.

    + +

    +index +A Szkriptelés Bibliája

    +

    Miután megtanultad az alapokat a bash-ben való munkával kapcsolatosan, itt az ideje annak, hogy belevesd magad a szkriptelés világába. Ezzel kapcsolatosan is rengeteg információt, oktatóanyagot találsz az interneten és a könyvesboltokban is. Egy remek, kifejezetten Haiku-hoz készített interneten elérhető anyagot is tudunk ajánlani, Scot Hacker BeOS Bible című könyvéből Scripting Chapter (PDF, 900kb).

    + +

    +indexSzkriptek Haiku alatt

    +

    Haiku alatt a rendszer folyamatosan használ szkripteket. Az indítás és a leállítás tipikus szkriptelési folyamat. Ezek a felhasználó által is módosíthatóak.
    +Ha még nem léteznek a fájlok, akkor nyugodtan létrehozhatjuk őket. Egyébként egyszerűen csak adjuk hozzá a parancsokat, amiket futtatni szeretne.

    + +

    +index +UserBootscript

    +

    A /boot/home/config/boot/UserBootscript akkor indul el, ha a rendszer befejezte a rendszertöltési folyamatot. Például számtalan programot indíthatunk automatikusan minden rendszertöltéskor:

    +
    # Start LaunchBox
    +/boot/system/apps/LaunchBox &
    +
    +# Start Workspaces Applet
    +/boot/system/apps/Workspaces &
    +

    Itt megjegyezném, hogy az "&" jellel végződő parancsok a háttérben fognak elindulni, és ott is futnak, amíg nem végeznek.

    + +

    Egy alternatív megoldás a programok rendszertöltéskori elindítására az, ha a programot berakjuk a /boot/home/config/boot/launch mappába. Ez úgy tehetjük meg, hogy a programon jobb gombbal kattintunk, és a helyi menüből a Hivatkozás létrehozása menüben megkeressük ezt a mappát.

    + +

    +index +UserShutdownScript

    +

    A /boot/home/config/boot/UserShutdownScript a rendszer leállásakor elsőként indul el. Ha a szkript nem nullát ad vissza eredményként, akkor a rendszer megszakítja a leállítást.

    + +

    +index +UserShutdownFinishScript

    +

    A /boot/home/config/boot/UserShutdownFinishScript a leállítási folyamat végezetével indul el. Itt megjegyezném, hogy a legtöbb rendszer-folyamat addigra már leáll.

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/bootloader.html b/docs/userguide/hu/bootloader.html new file mode 100644 index 0000000000..724bde667a --- /dev/null +++ b/docs/userguide/hu/bootloader.html @@ -0,0 +1,120 @@ + + + + + + + + + Rendszertöltő + + + + + + + + +
    +
    + +

    Rendszertöltő

    + +

    A Haiku rendszertöltő segíthet megtalálni a számítógép hibáit, illetve kiválaszthatjuk az indítani kívánt rendszert, ha több Haiku is elérhető (például CD-n vagy USB-n).
    +Ez akkor is hasznos lehet, ha valamely telepített összetevő miatt a rendszer nem tud elindulni. A Disable user add-ons (felhasználói kiegészítők tiltása) opció használatával például a rendszer a felhasználó által telepített eszközvezérlők betöltése nélkül indítható.

    +

    A rendszertöltőbe való belépéshez tartsuk lenyomva a SHIFT billentyűt, mielőtt a Haiku betöltési folyamat elindul (mielőtt megjelenik a Haiku logó). Ha rendszerválasztó menü is van telepítve, akkor tartsuk lenyomva a SHIFT-et mielőtt kiválasztjuk az indítandó rendszert. Ha csak Haiku van a gépünkön, akkor ajánlott már akkor lenyomva tartani a billentyűt, amikor még a BIOS üzenetei vannak a képernyőn.

    +


    +

    A rendszertöltő elindulása után az alábbi menük/lehetőségek tárulnak elénk:

    + + + + + +
    Select boot volume
    Rendszer kiválasztása
     Az indítandó Haiku kiválasztása.
    Select safe mode options
    Biztonsági opciók +
     A következő opciók hibakereséskor lehetnek hasznunkra. Az opciók kijelölésekor a képernyő alján egy rövid leírást olvashatunk a hatásukról. +

    - Safe mode (biztonsági mód)
    +- Disable user add-ons (felhasználói kiegészítők tiltása)
    +- Disable IDE DMA (DMA tiltása)
    +- Use fail-safe video mode (biztonsági videó mód)
    +- Disable IO-APIC (IO-APIC tiltása)
    +- Disable LOCAL APIC (helyi APIC tiltása)
    +- Don't call the BIOS (BIOS hívások tiltása)
    +- Disable APM (APM tiltása)
    +- Disable ACPI (ACPI tiltása) +

    Select debug options
    Hibakereső opciók +
    Az alábbi opciók segítséghetnek a hiba keresésben illetve a hiba jelentésében. Szintén kapunk egy kis leírást a képernyő alján ha kiválasztunk egy opciót. +

    - Enable serial debug output (sorosporti hibakeresés engedélyezése)
    +- Enable on screen debug output (képernyőn történő hibakeresés engedélyezése)
    +- Enable debug syslog (hibakereső naplózás engedélyezése) +

    +

    Ha a "debug syslog" (hibakereső naplózás) engedélyezve van, hiba utáni újraindítás esetén a következő opciók is megjelennek:

    +

    - Display syslog from previous session (a legutóbbi napló megjelenítése)
    +- Save syslog from previous session (a legutóbbi napló elmentése) +

    Select fail safe video mode
    Biztonsági videó mód választása
     Ha bejelöljük a Use fail-safe video mode-ot (biztonsági videó mód), akkor kiválaszthatjuk a felbontást és a színmélységet.
    +


    +

    Ha bejelöltük a megfelelő opciókat, utána térjünk vissza a főmenübe, majd folytassuk a betöltést. Ez a következő képernyőt eredményezi:

    +boot-screen.png + +

    Ha minden rendben megy, akkor az összes szimbólum gyorsan aktívvá válik.
    +A különféle szimbólumok az alábbi betöltési szakaszokat jelölik:

    + + + + + + + + +
    Atom A modulok betöltése.
    Lemez nagyítóval A gyökér fájlrendszer (/) és az eszközök fájlrendszer (/dev) létrehozása.
    Csatolókártya Eszközkezelő betöltése.
    Rendszerlemez Rendszerlemez csatolása.
    Chip Processzor-függő modulok betöltése.
    Mappa Alrendszerek betöltése.
    Rakéta A betöltő-szkript elindítja a rendszert.
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/contents.html b/docs/userguide/hu/contents.html new file mode 100644 index 0000000000..4739d8b035 --- /dev/null +++ b/docs/userguide/hu/contents.html @@ -0,0 +1,166 @@ + + + + + + + + + Haiku felhasználói útmutató - Tartalom + + + + + + + + +
    +
    + +

    Üdvözöllek a Haiku felhasználói útmutatóban

    + +

    Az alábbi táblázat összefoglalja a Haiku dokumentációit. Természetesen, a dokumentációk karbantartása és kibővítése folyamatosan történik (itt megtekinthető a frissített internetes verzió). Ha bármilyen hibát találsz, új ötleted van vagy segíteni szeretnél, akkor lépj kapcsolatba velünk a dokumentációk levelező listáján. Ha érdeklődesz a fordítás iránt, akkor további információkat találsz az i18n user guide wiki oldalán.

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    RendszertöltőBiztonsági indítási opciók a problémák megoldása érdekében.
    Fájlrendszer felépítéseA fájlrendszer hierarchiájának megértése és a fontos mappák összegyűjtése.
    A Haiku felhasználói felületeA grafikus felület egyszerűbb elemeinek bemutatása.
    MunkaasztalokVirtuális asztalok használata.
    ProgramváltóVáltás a futó programok között.
    FolyamatfigyelőA nem válaszoló programok és rendszerösszetevők bezárása.
    NyomkövetőNavigálás, fájlokkal és mappákkal való munka és a Haiku fájlkezelőjének beállítása.
    Billentyűzet-kombinációkA legáltalánosabb billentyű-parancsok, melyek meggyorsítják a munkánkat.
    AsztalsávA "Start menü" Haiku változatának a használata.
    FájltípusokAlapértelmezett programok megadása, fájltípusok módosítása, létrehozása.
    JellemzőkA Haiku egyik legfőbb előnye, mellyel bármelyik fájlhoz adhatunk különféle adatokat.
    IndexAz indexelés lehetővé teszi a jellemzők keresését.
    LekérdezésekA Haiku villámgyors keresőjével gyorsan megtaláljuk, amik keresünk.
    Műhely: fájltípusok, jellemzők, indexek és lekérdezésekA Haiku legfontosabb tulajdonságainak bemutatása.
    Műhely: levelek kezeléseA Haiku levelező rendszerének használata egyéni lekérdezésekkel.
    Műhely: vezeték nélküli hálózatTitkosított vagy titkosítatlan vezeték nélküli hálózat beállítása.
    ProgramokA Haiku programjainak működése és újak telepítése, meglévők eltávolítása.
    Asztalsáv kisalkalmazásaiEgyszerű kis programok, melyeket az Asztalra illetve az Asztalsávra helyezhetünk.
    BeállításokA rendszer személyre szabása, beállítása.
    Bash és szkriptekNéhány érdekes szkript és interneten elérhető segédlet a szkriptek használatához.
    + +
    +
    + + + diff --git a/docs/userguide/hu/deskbar.html b/docs/userguide/hu/deskbar.html new file mode 100644 index 0000000000..2f7cc6d7ef --- /dev/null +++ b/docs/userguide/hu/deskbar.html @@ -0,0 +1,147 @@ + + + + + + + + + Asztalsáv (Deskbar) + + + + + + + + +
    +
    + + + + +
    Index
    + Asztalsáv menü
    + A Polc
    + Futó programok listája +
    + +

    Asztalsáv (Deskbar)

    + +

    Az Asztalsáv egy kis panel, ami alap esetben a jobb felső sarokban helyezkedik el. Ez a Haiku megfelelője a Windows Tálcájának. 3 része van: a menü, ahol a programok és beállítások találhatóak, a polc, az órával és a többi eszközzel, és a futó programok listája.

    +positions +

    Az Asztalsáv bármelyik sarokba illetve a képernyő aljára és a tetejére húzható a markoló segítségével. Továbbá nem csak a pozíció, hanem a mérete is módosítható: lehet kompakt vagy teljes.

    + +

    +index +Asztalsáv menü

    +

    A menü megnyílik, ha az Asztalsávon a logóra kattintunk:

    +deskbar.png +
      +
    • Haiku névjegye... - Alapvető rendszer és jogi információk.

    • + +
    • Keresés... - A Kereső panel megnyitása.

    • +
    • Replikánsok megjelenítése - A kis Replikáns jelek megjelenítése/elrejtése, aminek segítségével mozgatható, eltávolítható egy replikáns.

    • +
    • Csatolás - Ez az opció megegyezik az Asztal helyi menüjével (további információk a Lemezek csatolása fejezetben).

    • +
    • Asztalsáv-beállítások... - Az Asztalsáv beállításai (információk lejjebb).

    • +
    • Leállítás - A rendszer Újraindítása vagy Kikapcsolása.

    • +
    • Legutóbbi dokumentumok, mappák, programok - A legutóbb megnyitott dokumentumok, mappák illetve programok listája (bővebben az Asztalsáv beállítások részben alább).

    • +
    • Programok, Bemutatók, Asztali kisalkalmazások, Beállítások - Az elérhető programok, bemutatók és beállítások listája.
      További bejegyzéseket hozhatsz létre bármilyen elemhez (programhoz, mappához, fájlhoz, kereséshez, stb.), amihez hivatkozást készítesz a ~/config/be mappába.

    • +
    + +

    +indexAsztalsáv beállításai

    +configure.png +
      +
    • Menü
      +Megadható az utolsó dokumentumok, mappák illetve programok száma, amik majd megjelennek a menüben, vagy egyáltalán megjelenjen-e vagy sem.
      +A Menü szerkesztése... gomb megnyomásával megnyílik a /boot/home/config/be/ mappa. Itt megtaláljuk a menüben megjelenő összes mappát és hivatkozást, melyek alap esetben a Programok, Bemutatók, Asztali alkalmazások, és a Beállítások.
      +Ezek a bejegyzések törölhetőek vagy újak adhatóak hozzá.

      +

      A legegyszerűbb az, ha a jövőbeli helyére húzzuk a hivatkozást a menüben.

    • +
    • Ablak

      + + + + +
      Mindig felül Az Asztalsáv mindig a többi ablak előtt van.
      Automatikus előrehozás Az Asztalsáv előre hozása ha az egér felé kerül.
      Automatikus elrejtés Az Asztalsáv mérete lecsökken mindössze néhány képpontra, majd előjön ha az egér felé kerül.
    • +
    • Programok

      + + + + + + + +
      Futó programok rendezése A futó programok listájának ABC sorrend szerinti rendezése.
      A Nyomkövető mindig az első A Nyomkövető mindig az első a futó programok listájában.
      Programkiterjesztő mutatása Egy kis kapcsoló megjelenítése a program neve mellett, amivel megjeleníthetjük/elrejthetjük a programhoz tartozó ablakok listáját a program neve alatt.
      Új programok kibontása Az újonnan indított programok ablak-listájának automatikus megjelenítése.
      Programnevek elrejtése A futó programok listájában a programok neveinek elrejtése.
      Ikon mérete A futó programok listájában a programikonok mérete.
    • +
    • Óra

      + + + +
      Másodpercek megjelenítése A Polcon a másodpercek megjelenítése az óra mellett.
      A hét napjának mutatása A hét napjának nevének megjelenítése az óra mellett.
    • +
    + +

    +index +A Polc

    +calendar.png +

    Többek között a Polc egy órát is tartalmaz. Az egeret az óra felett tartava megjelenik az aktuális dátum. A bal egérgombbal megjelenik egy naptár is. Jobb gombbal pedig az óra megjeleníthető/elrejthető, illetve beállíthatjuk az Időt.

    +

    Bármelyik program elhelyezhető a polcon ikon formájában. A levelező rendszer másik ikont jelenít meg ha új levél érkezik, és egy menüvel is rendelkezik, ahonan például új levelet készíthetünk. A Folyamatkezelő egy másik példa, hogy miként jeleníthetünk meg információkat a polcon (processzor/memória használat) és hogy hogyan lehet még menüt hozzáadni.

    + +

    +index +Futó programok listája

    +list-of-apps.png +

    A programok között könnyedén válthatunk, csak az adott program egy ablakára kell kattintani. Jobb egérgombbal pedig elrejthető, bezárható az ablak vagy az egész program.

    +

    Ha engedélyeztük a programkiterjesztőt, akkor azzal megjeleníthetjük illetve elrejthetjük a programhoz tartozó ablakok listáját közvetlenül a program alatt.

    +

    Az ablakok melletti ikonok információt adnak az ablak állapotáról. A fehér ikon jelzi, hogy az ablak látható, a szürke ikon pedig azt, hogy el van rejtve. A három vonal az ikon előtt arról informál minket, hogy az ablak nem a jelenlegi munkaasztalon található.

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/desktop-applets.html b/docs/userguide/hu/desktop-applets.html new file mode 100644 index 0000000000..a4c9a4eacd --- /dev/null +++ b/docs/userguide/hu/desktop-applets.html @@ -0,0 +1,87 @@ + + + + + + + + + Asztalsáv kisalkalmazásai + + + + + + + + +
    +
    + +

    Asztalsáv kisalkalmazásai

    + +

    A Haiku több hasznos programot is tartalmaz, amik akár az Asztalsávra, akár az asztalra is kirakhatóak.

    + + + + + + + + + + + +
    iconIndítósáv A kedvenc programok indítóikonjai.
    iconHálózat állapota A hálózati kapcsolat állapota.
    iconEnergiaállapot A hordozható számítógép töltöttségének állapota.
    iconFolyamatkezelő A futó programok és szolgáltatások.
    iconMunkaasztalok A Munkaasztal mini változata.
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/desktop-applets/launchbox.html b/docs/userguide/hu/desktop-applets/launchbox.html new file mode 100644 index 0000000000..463b07c4f8 --- /dev/null +++ b/docs/userguide/hu/desktop-applets/launchbox.html @@ -0,0 +1,107 @@ + + + + + + + + + Indítósáv + + + + + + + + +
    +
    + +

    launchbox-icon_64.pngIndítósáv (LaunchBox)

    + + + + +
    Asztalsáv:Asztali kisalkalmazások
    Útvonal:/boot/system/apps/LaunchBox
    Beállítások:~/config/settings/LaunchBox/*
    +

    Egy vagy több Indítósávot is elindíthatunk a kedvenc programjaink és dokumentumaink gyorsindítására. Akár az összes munkaasztalon is megjelenhetnek. A program a dokumentumokat a megadott programmal is elindíthatja. Például, ha egy HTML fájlt egy, az Indítósávon lévő szövegszerkesztőre dobunk, akkor a program megnyitja azt a fájlt a szövegszerkesztőben.

    +launchbox.png +

    Az összes opció elérhető a helyi menüből:

    + + + + + + + +
    Új gomb Egy üres gomb hozzáadása.
    Gomb kiürítése Egy meglévő gombot kiürít.
    Gomb eltávolítása Eltávolítja a gombot.
    Beállítások
    +- Vízszintes elrendezés
    +- Ikonméret
    +- Dupla kattintás figyelmen kívül hagyása
    +- Ablak keretének mutatása
    +- Automatikus előrehozás
    +- Megjelenítés az összes munkaasztalon
     
    +A gombok vízszintesen helyzekednek el.
    +Az ikon méretének beállítása 16 és 64 képpont közötti méretre.
    +A gombok tartalmának indítása csupán egyszer, akkor is, ha (véletlenül) duplán kattintunk rajta.
    +Az ablak keretének megjelenítése.
    +Az Indítósáv előugrik, ha az egér a képernyő éle közelébe ér.
    +Az Indítósáv az összes munkaasztalon megjelenik.
    Tálca
    +- Új
    +- Klónozás
    +- Bezárás
     
    +Új tálca.
    +A jelenlegi tálca másolása.
    +Jelenlegi tálca bezárása.
    Indítósáv
    +- Névjegy...
    +- Kilépés
     
    +A névjegy megjelenítése.
    +Bázárja a programot az összes tálcával együtt.
     
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/desktop-applets/networkstatus.html b/docs/userguide/hu/desktop-applets/networkstatus.html new file mode 100644 index 0000000000..91fd99ca5a --- /dev/null +++ b/docs/userguide/hu/desktop-applets/networkstatus.html @@ -0,0 +1,92 @@ + + + + + + + + + Hálózat állapot + + + + + + + + +
    +
    + +

    networkstatus-icon_64.pngHálózat állapot (NetworkStatus)

    + + + + +
    Asztalsáv:Asztali kisalkalmazások
    Útvonal:/boot/system/apps/NetworkStatus
    Beállítások:Nincs
    +

    A Hálózat állapot kisalkalmazás a hálózati kapcsolat állapotát jelzi. Ha még nem fut, akkor a indításkor meg fogja kérdezni, hogy ablakban akarjuk-e futtatni, vagy az Asztalsávra szeretnénk helyezni. Ablakban futtatva lehetőségünk van átméretezni azt, vagy Replikánsként használni.
    +Ha már telepítve van, akkor a helyi menüvel vezérelhető.

    +

    NetworkStatus applet
    +Az első szakasz tartalmazza az összes hálózati kártyát, azok neveit és állapotát. Bármelyiken kattitnva egy üzenet ablakban megkapjuk a kátya adatait (például az IP-t).
    +A kártyák alatti listában az elérhető vezeték nélküli hálózatokat (amiket az első vezeték nélküli hálózati kártya talált) találjuk a nevükkel és a jelerőséggel. További információk a Műhely: vezeték nélküli hálózat fejezetben.
    +Végül pedig a Hálózati beállítások megnyitása... menüpont segítségével módosíthatjuk azokat a Hálózat beállítása panelen illetve a Bezárás menüvel kiléphetünk a programból.

    + +

    Állapot ikonok

    + + + + + + +
    KészA hálózati kapcsolat létrejött.
    KonfigurálásKapcsolódás folyamatban.
    Hiányos beállításNéhány beállítás még hiányzik (további információkat talál a Hálózat fejezetben).
    Nincs kapcsolatNincs hálózati kapcsolat (vagy nincsen kábel bedugva, vagy nincs elérhető vezeték nélküli hálózat).
    -Nincsen hálózati kártya a gépben (vagy az is lehet, hogy a rendszer nem találja meg, mert nincs hozzá vezérlőprogram).
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/desktop-applets/powerstatus.html b/docs/userguide/hu/desktop-applets/powerstatus.html new file mode 100644 index 0000000000..7fb1a5dfdc --- /dev/null +++ b/docs/userguide/hu/desktop-applets/powerstatus.html @@ -0,0 +1,93 @@ + + + + + + + + + Energiaállapot + + + + + + + + +
    +
    + +

    powerstatus-icon_64.pngEnergiaállapot (PowerStatus)

    + + + + +
    Asztalsáv:Asztali kisalkalmazások
    Útvonal:/boot/system/apps/PowerStatus
    Beállítások:~/config/settings/PowerStatus settings
    +

    Az Energiaállapot informál minket az akkumulátor töltöttségi szintjéről, ami igen hasznos hordozható számítógép használatakor. Ha még nem fut, akkor a program indításkor megkérdezi, hogy ablakban akarjuk-e futtatni vagy az Asztalsávon jelenjen meg. Ablakban futtatva lehetőségünk van átméretezni és Replikánsként használni.
    +Indítás után a helyi menüvel vezérelhető.

    +

    Megjegyzés: a program futásának a feltétele a működő ACPI.

    +PowerStatus applet +

    A helyi menü az alábbi opciókat tartalmazza:

    + + + + + + + + +
    Szöveges címke megjelenítéseAz akku töltöttségének illetve a hátralévő időnek a megjelenítése.
    Állapotikon megjelenítéseAz ikon megjelenítése.
    Százalék megjelenítéseVálaszthatunk, hogy töltöttségi százalék, vagy hátralévő idő jelenjen meg (Szöveges cimke megjelenítése be kell hogy jelölve legyen).
    Akki infó...Részletes akkumulátor információk megjelenítése külön ablakban.
    Névjegy...Névjegy megjelenítése.
    KilépésKilépés a programból.
    +

    Ha a Szöveges cimke megjelenítése be van jelölve, akkor a töltöttségi szint zárójelben jelenik meg a töltés ideje alatt.

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/desktop-applets/processcontroller.html b/docs/userguide/hu/desktop-applets/processcontroller.html new file mode 100644 index 0000000000..d576ab7e57 --- /dev/null +++ b/docs/userguide/hu/desktop-applets/processcontroller.html @@ -0,0 +1,109 @@ + + + + + + + + + Folyamatkezelő + + + + + + + + +
    +
    + +

    processcontroller-icon_64.pngFolyamatkezelő (ProcessController)

    + + + + +
    Asztalsáv:Asztali kisalkalmazások
    Útvonal:/boot/system/apps/ProcessController
    Beállítások:Nincs
    + +

    ProcessController appletA program elsődleges feladata a processzor(ok) és a memória kihasználtságának kijelzése. Ezen kívül lehetőséget nyújt a különféle folyamatok figyelésére, azok prioritásának módosítására, illetve a bezárásukra hiba esetén. Több processzoros gép esetén a processzorok/magok akár ki is kapcsolhatóak. Ha a Nyomkövető vagy az Asztalsáv futása (program)hiba miatt leáll, akkor azokat a menüből újra is indíthatjuk.

    +

    A bal oldali kijelző a processzor-használatot, míg a jobb oldali a memória használatát mutatja. A kijelzők száma a gépben található processzorok/magok számától függőn változhat.

    +

    Ha még nem fut a Folyamatkezelő, akkor indításkor megkérdezi, hogy ablakban fussun vagy az Asztalsávon helyezkedjen el. Ha ablakban fut, akkor azt átméretezhetjük, és akár Replikánsként is használhatjuk.
    +Bárhogy is fusson, egy helyi menü a rendelkezésünkre áll.
    +Ha törölni szeretnénk a programot a Polcról, akkor csak kattintsunk az Átrakás az Asztalsávra elemen a menüben.

    +

    Kilépés a programból

    +ProcessController - Quit an application +

    Egy program/folyamat bezárásához csak annak nevére kell kattintani a Program leállítása menüben. Ez a művelet megegyezik azzal, amikor a program bezárás gombján kattintunk. Arra azonban ügyelni kell, hogy a rendszer folyamatait (például *_server, *_daemon) ne zárjuk be, mert akkor annak működése veszélybe kerülhet.

    +

    Memória-használat

    +ProcessController - Memory usage +

    A memória-használat kijelzése pontatlan lehet.

    +

    Ez a menü lehetőséget nyújt a különböző folyamatok memória használatának figyelésére. A folyamat mellett két oszlop is található: az első a fenntartott írható memóriát, a második pedig az összes memóriát jelzi (például a funkciótárak által használt memóriát is).

    +

    Az első sor, a Rendszer erőforrásai és gyorsítótárai..., a rendszer és az összes program által használt memóriára vonatkozik. A kék sáv hossza a fizikai memória mennyiségének függvénye. A további sorok a programok memória használatát jelzik. A sávok hossza a jelenlegi memória használat függvényében változik, és a rendelkezésre álló memória mennyiségén alapul.

    + + + +
    Az adott program által használt (írható) memória.
    A memória a csak olvasható területet is beleszámítva (amiket a programok egymás közt megosztanak).
    + +

    Processzor és szál használat

    +

    Ez a menü arra ad lehetőséget, hogy a szálak prioritását módosítsuk, a programokat leállítsuk vagy hibát keressünk bennük.

    +
    Ezek a műveletek adatvesztéshez vagy a rendszer instabilitásához vezethetnek. Csak óvatosan!
    +ProcessController - Priority + + + + +
    Kernel kód
    Felhasználói kód
    Szál üresjáratban
    +

    Az első szinten a futó programok találhatóak. A rajtuk való kattintással bezárhatóak. A sáv sötétkék része a kernel kódban töltött idő, a világoskék a felhasználói kódban, míg a zöld az üresjáratban eltöltött időt jelzi. A kékkel teljesen kitöltött sáv esetében az adott program használja ki a processzor összes erőforrását.

    +

    A második szint a program száljait mutatja. Az ezen való kattintással vagy hibát kereshetünk, vagy megszakíthatjuk azt. Ha a sáv teljesen kékkel van kitöltve, akkor a szál egy processzort/magot lefoglal.

    +

    Az utolsó szinttel a szál prioritása módosítható. Csak óvatosan! Egy óvatlan mozdulat, és a szál máris az ellentétes mértékben fogja kihasználni a processzort. A processzor idő növekedése az alacsony prioritás eredménye. A prioritással nem ajánlott játszadozni, ugyanis a program készítőjének a dolga, hogy megfelelőt használjon a programja. Ha szükséges, akkor lépj kapcsolatba vele. +

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/desktop-applets/workspaces.html b/docs/userguide/hu/desktop-applets/workspaces.html new file mode 100644 index 0000000000..1ea78ba649 --- /dev/null +++ b/docs/userguide/hu/desktop-applets/workspaces.html @@ -0,0 +1,95 @@ + + + + + + + + + Munkaasztalok kisalkalmazás + + + + + + + + +
    +
    +

    workspaces-icon_64.pngMunkaasztalok kisalkalmazás (Workspaces)

    + + + + +
    Asztalsáv:Asztali kisalkalmazások
    Útvonal:/boot/system/apps/Workspaces
    Beállítások:~/config/settings/system/app_server/workspaces
    +~/config/settings/Workspaces_settings - az ablak pozícióját tartalmazza
    +


    +workspaces.png +

    A Munkaasztalok kisalkalmazást az Asztali kisalkalmazások közt találjuk meg az Asztalsávon. Ez a Munkaasztalok mini változata. Az alkalmazás helyi menüjéből több opció is elérhető.
    +A Munkaasztalok számának módosítása... a Képernyő beállításait fogja megnyitni, ahol megadhatjuk, hogy mennyi munkaasztalt akarunk használni (mennyi sort és oszlopot).

    +

    Mivel az alkalmazás egy Replikáns, csak méretezzük a megfelelő méretre, majd dobjuk az Asztalra (persze csak akkor, ha a Replikánsok megjelenítése be van jelölve az Asztalsávon). Tartsd lenyomva a SHIFT-et miközben átméretezed az ablakot, így megmaradnak a képernyő arányai.

    + +

    +index +Ablakok mozgatása a munkaasztalok között

    +

    Ha egy ablakot mozgatni szeretnénk, akkor csak mozgassuk a Munkaasztalok kisalkalmazásban az egyik munkaasztalról a másikra. Ez lehetőséget ad arra, hogy anélkül mozgassuk, hogy átváltanánk a másik munkaasztalra. Persze ez csak akkor használható, ha csak néhány ablak található az adott munkaasztalon. A másik lehetőség az ablakok munkaasztalok közötti mozgatásának, ha megfogjuk az ablakot és a billentyűzettel váltunk a munkaasztalok között (ALT Fx).

    +

    További információk és billentyű-kombinációk a Munkaasztalok fejezetben.

    + +

    +index +Speciális funkciók

    +

    További funkciók is elérhetőek, ha az ablakon kattintunk, miközben lenyomva tartjuk az alábbi billentyűk egyikét:

    + + + + +
    CTRLAz ablak előtérbe hozása.
    CTRL SHIFTAblak lekicsinyítése.
    OPTAblak hátraküldése.
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/filesystem-layout.html b/docs/userguide/hu/filesystem-layout.html new file mode 100644 index 0000000000..b0eef56eda --- /dev/null +++ b/docs/userguide/hu/filesystem-layout.html @@ -0,0 +1,159 @@ + + + + + + + + + Fájlrendszer felépítése + + + + + + + + +
    +
    + +

    Fájlrendszer felépítése

    + +

    A Haiku fájlrendszer felépítése átlátható, a fájlok és mappák elnevezései egyszerűek és egyértelműek. A rendszer számára fontos fájlok és mappák védve vannak a véletlen felhasználói hibáktól, és erre kapunk is figyelemztetést:

    +achtung-user.png  +achtung-system.png +

    A második típusú figyelmeztetés akkor jelenik meg, ha átnevezni vagy törölni szeretnénk a rendszer mappáján belül. Itt az "Átnevezés" gomb csak akkor lesz elérhető, ha a SHIFT-et is lenyomjuk.

    +

    Alapvetően 3 rész különíthető el a gyökér mappából kiindulva a rendszer-lemezen:

    + + + + +
    /boot/system/ A rendszer található itt. Nem ajánlott a módosítása!
    /boot/common/ A felhasználók közös fájljai.
    /boot/home/ A felhasználó saját mappája. A saját beállításaid és fájljaid itt találhatóak.
    + +

    +index +A rendszer mappa - /boot/system/

    +

    Az BeOS elődje után a Haiku rendszer mappája is a /boot/beos/. Ezt régebbi dokumentációkban is megtalálod (például az eredeti BeBook-ban).
    +Bármi is legyen a neve, a tartalmát nem ajánlott módosítani. A Haiku összes frissítése hozzáadhat, törölhet illetve felülírhat bene bármit. Ha bármit hozzá szeretnél adni a rendszerhez, például új kiegészítőket, vagy eszközvezérlőket, akkor azokat megteheted a /boot/home/ mappán belül, vagy ha szükséges, akkor az összes felhasználóra érvényes /boot/common/ mappában. Mivel a Haiku még nem rendelkezik felhasználók támogatásával, így jelenleg nincs különbség, ugyanis csak egy felhasználó és egy home mappa található. De ha a későbbiekben már a felhasználók kezelése működik, akkor már tudjuk, hogy mit és hogyan is kezelhetünk.

    +

    Nos; tegyük fel, hogy egy új értelemzőt szeretnél telepíteni a legújabb képformátumhoz, amit egyszerűen nem másolhatod a rendszer mappába. Emlékezz rá: ne módosítsd!
    +Így ennek a tükörképébe helyezheted azt a /boot/common/ vagy /boot/home/config/ mappán belül.

    +

    Ebben a példában a rendszer mappa a

    +

    /boot/system/add-ons/Translators/

    +

    Tehát, ennek a "tükörképe" a

    +

    /boot/home/config/add-ons/Translators/
    +vagy
    +/boot/common/add-ons/Translators/

    +

    Ennek a megoldásnak másik előnye is van: ha egy komponens meghibásodik (például eszköz vezérlők esetében), akkor választhatjuk a "Disable user add-ons" opciót a Rendszertöltő menüjében, és így a hibás összetevő nélkül indíthatjuk a gépet.

    +

    A legtöbb esetben nem találkozunk ilyen problémával, mivel a programok megbízható forrásból származnak, és tartalmaznak egy telepítő eljárást, ami megoldja a telepítést.
    + +

    + +

    +index +A közös mappa - /boot/common/

    +

    A Haiku még nem többfelhasználós rendszer. Ha ez már megvalósításra kerül, akkor minden felhasználónak lesz egy home mappája, ami a többiek számára nem hozzáférhető. Minden program vagy a rendszerhez adott kiegészítő és adat ami minden felhasználónak elérhető kell, hogy legyen, azokat a /boot/common/ mappán belülre kell másolni.

    + +

    +index +A saját mappa - /boot/home/

    +

    Ez a mappa a részedre lett létrehozva. Ide kedvedre másolhatsz illetve innen törölhetsz bármilyen fájlt vagy mappát. Mindazonáltal nem ajánlott a ~/config/ mappa tartalmát módosítani. Lehetőséged van kitörölni a ~/config/settings/ mappát anélkül, hogy a rendszer működésképtelenné válna, de ki akarná az összes beállítását illetve a programok adatait törölni? Mindenesetre a rendszer figyelmeztet mindket a végrehajtás előtt a fennt említett üzenetek egyikével.

    +

    A ~/config/add-ons/ mappán belül, ami a tükörképe a rendszer kiegészítőket tartalmazó mappájának, van néhány "érdekes" mappa. (A hullámosvonal ("~") egy hivatkozás a "/boot/home/" mappára a Terminálban, így nem kell azt mindig kiírni.)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ~/mail Alap esetben itt találhatóak a levelek.
    ~/queries A Lekérdezések tárolására szolgál, alap esetben csak ideiglenesen, 7 napig.
    ~/config/be/ Ez is egy BeOS örökség. A be mappa tartalmazza az Asztalsáv menüben megjelenő mappákat. Ehhez adhatunk hozzá vagy törölhetünk fájlokat, mappákat, hivatkozásokat illetve lekérdezéseket.
    ~/config/bin/ A rendszer mappa kiegészítéseként a /boot/system/bin/ mappa tartalmazza a felhasználó által megadott parancssori programokat.
    ~/config/boot/ Ebben a mappában találhatóak a Felhasználói szkriptek amik a rendszer indításakor, leállításakor és a leállítás végeztével hajtódnak végre.
    ~/config/boot/launch/ Az automatikusan induló programok vagy dokumentumok hivatkozásait tartalmazza.
    ~/config/data/fonts/ Egyszerűen csak másold ide a TrueType vagy a Postscript formátumú betűtípusokat.
    ~/config/settings/ Itt találhatóak a programok beállításai és néhány rendszer-beállítás fájlja. Néhány program a saját mappáján belül tarja a beállításait, a többi egyszerűen csak ide rakja őket.
    ~/config/settings/beos_mime/ A MIME adatbázis mappája minden fájltípust és azok beállításait tartalmazza.
    ~/config/settings/kernel/drivers/ Egy érdekes fájlt találhatunk itt: a kernel alacsony szintű konfigurálási lehetőséget biztosít például az SMP kikapcsolására, bekapcsolhatjuk a soros porti hibakeresést vagy engedélyezhetjük az energia-kezelést. Minden konfigurációs sor úgy aktiválható, hogy töröljük a sor elején lévő "#"-et. Csak óvatosan!
    ~/config/settings/Tracker/ A Nyomkövető beállításain kívül még néhány érdekes mappa is található itt:
    DefaultFolderTemplate/Az új mappa alapértelmezett sablonja, mely tartalmazza a megjelenítési és a rendezési beállításokat illetve az ablak méretét. Minden új létrehozott mappa ezt a sablont használja majd.
    DefaultQueryTemplates/Megadható a különféle fájltípusokhoz a lekérdezések eredményeinek megjelenése. További információk a Lekérdezések: Az eredmény ablak fejezetben.
    Go/Készíts hivatkozásokat ebbe a mappába a "kedvenc" mappáiról, hogy elérhetőek legyenek azok a megnyitás és mentés ablakokban. További információk A Haiku felhasználói felülete: Kedvencek és legutóbbi mappák fejezetben.
    Tracker New Template/Különböző fájltípusokhoz hozhatsz létre sablonokat, melyek a Nyomkövető Fájl | Új... menüjéből érhetőek el. További információk a Nyomkövető: Munka a fájlokkal fejezetben.
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/filetypes.html b/docs/userguide/hu/filetypes.html new file mode 100644 index 0000000000..27ecd3ab7b --- /dev/null +++ b/docs/userguide/hu/filetypes.html @@ -0,0 +1,124 @@ + + + + + + + + + Fájltípusok + + + + + + + + +
    +
    + +

    Fájltípusok

    + +

    A Windows-tól eltérően a Haiku-nál nem számít a fájl 3 betűs kiterjesztése (például: .txt, .jpg, .mp3). A kiterjesztést a rendszer csak a végső esetben veszi figyelembe. A Haiku esetében a MIME típus a használatos, épp úgy, mint az interneten.

    +
    Bár a Haiku esetében nem indokolt a fájl kiterjesztése, ne feledjük, hogy ha megosztjuk másokkal a fájt (például USB lemezen, vagy levélben), akkor a többi operációs rendszer már igényli a kiterjesztések meglétét, így azt hozzá kell adnunk a fájlhoz. Máskülönben a többi felhasználó nem tudja majd használni a fájlt a saját rendszerén.
    + +

    index +Egy fájl típusának megadása

    +

    Egy fájlnak a típusa, az ikonja, illetve a hozzá társított program is megváltoztatható. Ehhez csak ki kell jelölni a fájlt, és a Fájltípusok kiegészítőt választani.

    +filetype-addon.png + +

    +index +A fájl típusa

    +

    A fenti képen egy PNG fájl információit láthatjuk, aminek a MIME azonosítója image/png. Tegyük fel, hogy tudjuk, hogy ez egy GIF fájl és nem PNG. Ezt egyszerűen módosíthatjuk azzal, ha beírjuk a típus pontos nevét, vagy az alábbi két gombot használjuk:

    + + + +
    Kiválasztás... A fájltípusok hierarchikus listájában keressük meg az image | GIF Image típust.
    Ugyanaz, mint... Egy fájl ablakban keressünk egy olyan fájlt, aminek ugyan az a típusa, mint amit szeretnék adni a fájlnak..
    + +

    +index +Előnyben részesített program

    +

    Ez a menü tartalmazza azoknak a programoknak a listáját, amik kezelni tudják az adott fájlt. Itt kiválaszthatod azt a programot, ami automatikusan megnyílik, amikor duplán kattintunk egy fájlon. Lehetőséged van például a HTML fájlt egy böngésző helyett szövegszerkesztőhöz társítani. Minden HTML fájl továbbra is böngészőben nyílik meg, csak ez az egy fog szövegszerkesztőben.

    + +

    Az Alapértelmezett program az egyik, amit globálisan, minden fájlra be lehet állítani. Ha nem találod a listában a használni kívánt programot, akkor a Kiválasztás... és a Ugyanaz, mint... gombok segítségével megadhatsz másikat is, épp úgy, mint "A fájl típusa" esetében.

    + +

    +index +Az ikon

    +

    Felmerülhet a kérdés, hogy miért üres az ikon helye a jobb felső részben: a fájlok általában a rendszerben beállított, a fájltípusnak megfelelő ikont használják. Arra is lehetőségünk van, hogy megnyitjuk a Fájltípus kiegészítőjét egy másik fájlnak is, majd az ikonját áthúzzuk a saját fájlunknak az ikonjához. Vagy, duplán kattintva az ikon mezőben létrehozhatjuk vagy szerkeszthetjük annak az ikonját. További információk az Icon-O-Matic fejezetben.

    + +

    +index +Programok speciális beállításai

    +

    Ha a Fájltípusok kiegészítőt egy programmal nyitjuk meg (esetünkben: StyledEdit), akkor az alábbi ablakot kapjuk:

    +filetype-addon-stylededit.png +

    A felső mezőben a szabványos MIME típus helyett a program aláírása (egyéni azonosítója) látható. Segítségével a rendszer könnyedén megtalálja a programot, bárhol is legyen az.

    +

    Ez alatt a program különféle megjelölései találhatóak, amik a program működését szabályozzák:

    + + + + + + +
    Egyszer indítható A program (maga a programfájl) egy időben csak egyszer futhat. Azonban, ha a programnak több példánya is van, akkor azok persze futhatnak párhuzamosan.
    Többször indítható A program többször is elindítható egy időben.
    Kivételes indítás Kizárólag csak egy program futhat az adott program azonosítójával.
    Csak paraméterek Ez az opció azt jelzi, hogy a program nem reagál semmilyen rendszer szintű üzenetre.
    Futtatás a háttérben A program nem jelenik meg a Programváltóban vagy a futó programok listájában az Asztalsávon.
    +

    Alább látható egy lista a programmal használható fájltípusokkal. Hozzáadhatsz (vagy törölhetsz) egy fájltípust, ha úgy gondolod, hogy az adott program tudja azt kezelni. Ennek eredményeként a program megjelenik az előnyben részesített programok listájában, vagy a Tracker Megnyitás ezzel... listájában is, ha az adott típusú fájlon jobb gombbal kattintunk.

    +

    Végül pedig az ablak alján a verzió és a leírás, másolásvédelmi információ található. Mind a program aláírását (egyéni azonosítóját) is, ezt is a program készítője határozza meg, és nem ajánlott módosítani azt.

    + +

    +index +Általános beállítások a Fájltípusok beállítások panelen

    +

    A Fájltípusok beállítások esetében nem külön fájlonként, hanem általánosságban módosíthatóak a beállítások. Módosítható az ikon, az előnyben részesített program, hozzáadható, törölhető illetve módosítható egy egész fájltípus és annak a jellemzői. Továbbá egyéni fájltípust is létrehozhat.

    +

    Minden fájltípus és a hozzájuk tartozó beállítás a /boot/home/config/settings/beos_mime/ mappában található. Mielőtt módosítanád ennek a tartalmát, előtte mindenképp ajánlott róla készíteni egy másolatot...

    +

    További információkat találhatsz a Fájltípusok beállításairól a Műhely: fájltípusok, jellemzők, indexek és lekérdezések fejezetben.

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/gui.html b/docs/userguide/hu/gui.html new file mode 100644 index 0000000000..77ba902f77 --- /dev/null +++ b/docs/userguide/hu/gui.html @@ -0,0 +1,163 @@ + + + + + + + + + A Haiku felhasználói felülete + + + + + + + + +
    +
    + + + + +
    Index
    + Könnyű mozgatás és méretezés
    + Halmozás és csempézés
    + Megnyitás és mentés panel
    + Replikánsok
    + +

    A Haiku felhasználói felülete

    + +

    A Haiku grafikus felhasználói felülete a rendszer részét képezi. Ellentétben a Unix-szerű operációs rendszerekkel, nincs különálló ablakkezelő, és éppen ezért a csak parancssoros indítás sem lehetséges. A Haiku elsősorban az asztali felhasználóra összpontosít.

    +

    Minden bizonnyal már rendelkezel más grafikus környezetbeli ismerekkel, ezért most nem térünk ki a "szabványokra", mint például a menük, helyi menük, az egérrel való munka, stb. Most pedig nézzük át a Haiku felületének sajátosságait.

    +gui.png +

    Csupán néhány dolog jellemző a Haiku felületére, ami magyarázatra szorul.

    +
      +
    1. A Haiku "Start menüje" az Asztalsáv. További információk az Asztalsáv fejezetben.

    2. +
    3. A sárga fül nem csak egy program vagy egy fájl neve: +
      • Mozgathatjuk a SHIFT lenyomva tartásával, így lehetővé téve több ablak halmozását.
      • +
      • Az ablak elrejthető (az Asztalsávra kicsinyíthető), ha duplán kattintunk a fülön (vagy a CTRL ALT M kombinációval). A már elrejtett ablakok hozzáférhetőek az Asztalsávon illetve a Programváltóban.
      • +
      • Az ablak háttérbe küldhető, ha a fülön (vagy az ablak keretén) a jobb gombbal kattintunk.
    4. +
    5. Bezárás gomb.

    6. +
    7. Az ablak maximalizálására szolgáló gomb (CTRL ALT Z kombináció). A legtöbb programban az ablak teljes képernyőre történő átméretezésére szolgál. Azonban nem csak erre használható. A Nyomkövető például az ablakot a tartalom megjelenítésére optimalizált méretűre méretezi át.

    8. +
    9. Az ablak kerete. A bal oldali keret az ablak mozgatására, a jobb oldali pedig az ablak átméretezésére szolgál.

    10. +
    11. Méretező sarok.

    12. +
    + +

    +index +Könnyű mozgatás és méretezés

    +

    Az ablakok mozgatása és méretezése egy fontos része a programmal való interaktivitásnak. Ennek a kis sárga fülön és a vékony keret használatán túl van más módja is. A méretező sarok kis mérete miatt annak is megvannak a maga korlátai: csak a jobb alsó sarok irányában van lehetőség az ablak átméretezésére.
    A jobb oldali keret a méretezésre szintén használható, de pontosan kell célozni az egérrel.

    +

    Ezen problémák kiküszöbölésére a Haiku különféle ablakkezelő kombinációkat tud használni a CTRL ALT és az egér használatával. További információk a Billentyűzet-kombinációk fejezetben.

    +resizing.png +

    A CTRL ALT lenyomásakor az egérhez közeli ablakkeret kiemelésre kerül. Mozgasd az egeret a többi keret felé, hogy másik keret legyen kijelölve. Kattints a jobb egér gombbal és mozgasd azt az ablak átméretezéséhez a kijelölt keret mentén.

    +

    Tartsd a CTRL ALT billentyűt és a bal egér gombot lenyomva majd mozgasd azt az ablak bármely részén az ablak mozgatásához. Gyors duplakattintás a jobb egér gombbal pedig hátraküldi azt.

    + +

    +index +Halmozás és csempézés

    +

    A Haiku egy egyedi lehetőséget nyújt a teljes ablakhosszúságú fejléccel ellentétben a füles stílusú ablakfejléccel. Ez a "Halmozás és csempézés".
    +Mint azt az alábbi példa mutatja, a Nyomkövető ablak a könyvjelzőkkel és a WebPositive ablak csempeszerűen illeszkenek egymáshoz. Ugyanakkor a WebPositive maga pedig egy másik Nyomkövető ablakkal (Saját mappa) van csoportba ("halomba") rendezve. A kép jól mutatja, hogy miként válthatunk a két ablak közt.

    +gui-s+t.gif +

    Az ehhez hasonló halmozáskor az ablakok mozgatása és méretezése együtt történik. Ez remek lehetőség arra, ha egy feladat több részét együtt akarjuk kezelni. Például, ha van egy böngésző ablak a dokumentációnak, egy másik ablak a szövegszerkesztőnek, egy harmadik, Nyomkövető ablak a fájloknak, illetve egy feladathoz tartozó levél is meg van nyitva, akkor ezt mind egyben kezelhetjük.

    +

    Az ablakok összerendezése egyszerű: tartsuk lenyomva az OPT billentyűt mialatt az egyik ablakot a fülénél fogva a másik ablak füléhez közel húzzuk, vagy a keretet a másik keretig addig, amíg a színe át nem vált, majd engedjük fel az egér gombját.

    +

    A halmozás és a csempézés két részből áll.

    + + +
    gui-stacking.png

    A halmozáshoz az ablakokat a füleknél egymás fölé kell húzni, ezután automatikusan a fülek a megfelelő pozícióba kerülnek.
    +Az OPT billentyű lenyomása mellett a fülek színe megváltozik; ekkor csak engedjük el az ablakot a halmozáshoz.

    + + +
    gui-tilinging.png

    A "csempézés" annyit jelent, hogy az ablakokat függőlegesen vagy vízszintesen egymáshoz "ragasszuk".
    +Itt is az OPT billentyű lenyomva tartásánál mikor az ablakok egymás közelébe kerülnek, a szomszédos keretek színe megváltozik (melyek összeragadnak).

    +

    A szétválasztás hasonló módon történik, csak lenyomva kell tartani az OPT gombot, mialatt az ablakot kihúzzuk a csoportból.

    + +

    +index +Megnyitás és mentés panel

    +

    Megnyitáskor és mentéskor egy ehhez hasonló ablakot kapunk:

    +open-save.png +

    Itt megkapjuk a kiválasztott mappa tartalmát, mentés ablak esetében pedig egy beviteli mezőt is, ahová be tudjuk írni a fájl nevét, továbbá egy menüt is, amiben különféle típust választhatunk a fájl mentésekor.
    +Gyorsan a felsőbb szintű mappába juthatunk a lista feletti menüből.

    +

    A megnyitás ablakban tallózás helyett a kívánt mappát rá is dobhatjuk a megnyitás ablakra, amely automatikusan elnavigál a kívánt mappába.

    + +

    +index +Billentyű kombinációk

    +

    Sok kombináció rendelkezésünkre áll a megnyitás és mentés ablakokban, amik megegyeznek a Nyomkövető ablakban használatosakkal. Azon túlmenően, amik a Fájl menüből elérhetőek, néhány parancs nem teljesen nyilvánvaló:

    + + + + + + + +
    ALT NÚj mappa létrehozása.
    ALT EA kijelölt bejegyzés átnevezése.
    ALT Egy szinttel fejjeb lépünk
    ALT vagy ENTERA kijelölt mappába lépés.
    ALT DAz Asztalra ugrás.
    ALT HA Saját mappára ugrás.
    + +

    +index +Kedvencek és legutóbbi mappák

    +

    A Kedvencek menü a megnyitás és mentés ablakban tartalmazza a legutóbbi mappákat és a kedvenc helyeket, amiket magunk adhatunk meg. Ahogy azt a kis nyíl jelzi, ezek is használhatóak a navigálás során, ezek almenüjében is megjelenik a mappa tartalma.

    +favorites.png +

    Egy kedvenc mappa hozzáadásához egyszerűen csak keressük meg azt a mappát, és válasszuk a Kedvencek | Jelenlegi mappa hozzáadása menüt. Mostmár ez minden megnyitás/mentés ablakban megjelenik. Törlés esetében pedig a Kedvencek | Kedvencek szerkesztése... kiválasztásával töröljük a már feleslegessé vált bejegyzést.
    +A kedvencek a /boot/home/config/settings/Tracker/Go/ mappában találhatóak. Tehát, akár egyszerű hivatkozás létrehozásával is adhatunk hozzá kedvenc fájlt vagy mappát.

    + +

    +index +Replikánsok

    +

    A replikánsok egy program egyéni felülettel rendelkező részei, amiket más programokban felhasználhatunk. Az Asztalsáv Replikánsok megjelenítése bejelölésével a programok replikánsait jelző kis kéz szerű jel megjelenik, mely általában a jobb alsó sarokban található:

    +replicant.png +

    A legkiválóbb hely a replikánsok tárolására az Asztal: egyszerűen a kis kéz ikonnál fogva húzzuk ki az ablak tartalmát az Asztalra, mely ettől fogva az Asztal részét képezi, és a replikáns szülőprogramja már nem is kell, hogy tovább fusson.
    +A jobb gombbal kattintva a replikáns jelén kapunk egy helyi menüt, amiben az eredeti program Névjegye és a Replikáns eltávolítása gombot találjuk.

    +
    Ha bármi probléma van az Asztalra dobott replikánssal, akkor csak töröld ki a ~/config/settings/Tracker/tracker_shelf bejegyzést. Sajnos ezzel az összes replikáns törlődik az Asztalról.
    +

    A replikáns programokra remek példa a Folyamatmonitor grafikonjai, a Munkaasztalok kisalkalmazás vagy a Számológép.

    +
    +
    + + + + + diff --git a/docs/userguide/hu/images/apps-images/activitymonitor.png b/docs/userguide/hu/images/apps-images/activitymonitor.png new file mode 100644 index 0000000000..0990ef1a19 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/activitymonitor.png differ diff --git a/docs/userguide/hu/images/apps-images/bootmanager-1.png b/docs/userguide/hu/images/apps-images/bootmanager-1.png new file mode 100644 index 0000000000..d16470c33b Binary files /dev/null and b/docs/userguide/hu/images/apps-images/bootmanager-1.png differ diff --git a/docs/userguide/hu/images/apps-images/bootmanager-2.png b/docs/userguide/hu/images/apps-images/bootmanager-2.png new file mode 100644 index 0000000000..38f03e0b7f Binary files /dev/null and b/docs/userguide/hu/images/apps-images/bootmanager-2.png differ diff --git a/docs/userguide/hu/images/apps-images/bootmanager-3.png b/docs/userguide/hu/images/apps-images/bootmanager-3.png new file mode 100644 index 0000000000..c77e072eb9 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/bootmanager-3.png differ diff --git a/docs/userguide/hu/images/apps-images/bootmanager-4.png b/docs/userguide/hu/images/apps-images/bootmanager-4.png new file mode 100644 index 0000000000..a48cd4fb0f Binary files /dev/null and b/docs/userguide/hu/images/apps-images/bootmanager-4.png differ diff --git a/docs/userguide/hu/images/apps-images/bootmanager-5.png b/docs/userguide/hu/images/apps-images/bootmanager-5.png new file mode 100644 index 0000000000..5bd2a4c5dd Binary files /dev/null and b/docs/userguide/hu/images/apps-images/bootmanager-5.png differ diff --git a/docs/userguide/hu/images/apps-images/bootmanager-6.png b/docs/userguide/hu/images/apps-images/bootmanager-6.png new file mode 100644 index 0000000000..8cc7b57d3b Binary files /dev/null and b/docs/userguide/hu/images/apps-images/bootmanager-6.png differ diff --git a/docs/userguide/hu/images/apps-images/bootmanager-7.png b/docs/userguide/hu/images/apps-images/bootmanager-7.png new file mode 100644 index 0000000000..092c19b78c Binary files /dev/null and b/docs/userguide/hu/images/apps-images/bootmanager-7.png differ diff --git a/docs/userguide/hu/images/apps-images/bootmanager-8.png b/docs/userguide/hu/images/apps-images/bootmanager-8.png new file mode 100644 index 0000000000..6ab9b43e85 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/bootmanager-8.png differ diff --git a/docs/userguide/hu/images/apps-images/bootmenu.png b/docs/userguide/hu/images/apps-images/bootmenu.png new file mode 100644 index 0000000000..1fe7ead138 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/bootmenu.png differ diff --git a/docs/userguide/hu/images/apps-images/cdplayer.png b/docs/userguide/hu/images/apps-images/cdplayer.png new file mode 100644 index 0000000000..4b53262c95 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/cdplayer.png differ diff --git a/docs/userguide/hu/images/apps-images/charactermap.png b/docs/userguide/hu/images/apps-images/charactermap.png new file mode 100644 index 0000000000..3609a2fce2 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/charactermap.png differ diff --git a/docs/userguide/hu/images/apps-images/cli-alert.png b/docs/userguide/hu/images/apps-images/cli-alert.png new file mode 100644 index 0000000000..9343d1763f Binary files /dev/null and b/docs/userguide/hu/images/apps-images/cli-alert.png differ diff --git a/docs/userguide/hu/images/apps-images/cli-desklink.png b/docs/userguide/hu/images/apps-images/cli-desklink.png new file mode 100644 index 0000000000..9fe451c719 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/cli-desklink.png differ diff --git a/docs/userguide/hu/images/apps-images/cli-filepanel.png b/docs/userguide/hu/images/apps-images/cli-filepanel.png new file mode 100644 index 0000000000..453c0ce5af Binary files /dev/null and b/docs/userguide/hu/images/apps-images/cli-filepanel.png differ diff --git a/docs/userguide/hu/images/apps-images/codycam.png b/docs/userguide/hu/images/apps-images/codycam.png new file mode 100644 index 0000000000..09eb95b407 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/codycam.png differ diff --git a/docs/userguide/hu/images/apps-images/deskcalc.png b/docs/userguide/hu/images/apps-images/deskcalc.png new file mode 100644 index 0000000000..f204d13b29 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/deskcalc.png differ diff --git a/docs/userguide/hu/images/apps-images/diskprobe-about-attr.png b/docs/userguide/hu/images/apps-images/diskprobe-about-attr.png new file mode 100644 index 0000000000..f478e29e8a Binary files /dev/null and b/docs/userguide/hu/images/apps-images/diskprobe-about-attr.png differ diff --git a/docs/userguide/hu/images/apps-images/diskprobe.png b/docs/userguide/hu/images/apps-images/diskprobe.png new file mode 100644 index 0000000000..195f866239 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/diskprobe.png differ diff --git a/docs/userguide/hu/images/apps-images/diskusage.png b/docs/userguide/hu/images/apps-images/diskusage.png new file mode 100644 index 0000000000..371206d4bd Binary files /dev/null and b/docs/userguide/hu/images/apps-images/diskusage.png differ diff --git a/docs/userguide/hu/images/apps-images/drivesetup-create.png b/docs/userguide/hu/images/apps-images/drivesetup-create.png new file mode 100644 index 0000000000..a3017fa816 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/drivesetup-create.png differ diff --git a/docs/userguide/hu/images/apps-images/drivesetup-initialize.png b/docs/userguide/hu/images/apps-images/drivesetup-initialize.png new file mode 100644 index 0000000000..f01c633cf4 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/drivesetup-initialize.png differ diff --git a/docs/userguide/hu/images/apps-images/drivesetup.png b/docs/userguide/hu/images/apps-images/drivesetup.png new file mode 100644 index 0000000000..c7620d1fdf Binary files /dev/null and b/docs/userguide/hu/images/apps-images/drivesetup.png differ diff --git a/docs/userguide/hu/images/apps-images/expander-preferences.png b/docs/userguide/hu/images/apps-images/expander-preferences.png new file mode 100644 index 0000000000..156f820d37 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/expander-preferences.png differ diff --git a/docs/userguide/hu/images/apps-images/expander.png b/docs/userguide/hu/images/apps-images/expander.png new file mode 100644 index 0000000000..e658f6852b Binary files /dev/null and b/docs/userguide/hu/images/apps-images/expander.png differ diff --git a/docs/userguide/hu/images/apps-images/i-o-m-gradients.png b/docs/userguide/hu/images/apps-images/i-o-m-gradients.png new file mode 100644 index 0000000000..412131dee8 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/i-o-m-gradients.png differ diff --git a/docs/userguide/hu/images/apps-images/i-o-m-overview.png b/docs/userguide/hu/images/apps-images/i-o-m-overview.png new file mode 100644 index 0000000000..79e3da4d2f Binary files /dev/null and b/docs/userguide/hu/images/apps-images/i-o-m-overview.png differ diff --git a/docs/userguide/hu/images/apps-images/installer.png b/docs/userguide/hu/images/apps-images/installer.png new file mode 100644 index 0000000000..80ef060a4f Binary files /dev/null and b/docs/userguide/hu/images/apps-images/installer.png differ diff --git a/docs/userguide/hu/images/apps-images/magnify.png b/docs/userguide/hu/images/apps-images/magnify.png new file mode 100644 index 0000000000..7666c8bd76 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/magnify.png differ diff --git a/docs/userguide/hu/images/apps-images/mail-attachments.png b/docs/userguide/hu/images/apps-images/mail-attachments.png new file mode 100644 index 0000000000..305dbc9906 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/mail-attachments.png differ diff --git a/docs/userguide/hu/images/apps-images/mail-preferences.png b/docs/userguide/hu/images/apps-images/mail-preferences.png new file mode 100644 index 0000000000..3e30cdb0bb Binary files /dev/null and b/docs/userguide/hu/images/apps-images/mail-preferences.png differ diff --git a/docs/userguide/hu/images/apps-images/mail-read.png b/docs/userguide/hu/images/apps-images/mail-read.png new file mode 100644 index 0000000000..b987ebaf0d Binary files /dev/null and b/docs/userguide/hu/images/apps-images/mail-read.png differ diff --git a/docs/userguide/hu/images/apps-images/mail-signature.png b/docs/userguide/hu/images/apps-images/mail-signature.png new file mode 100644 index 0000000000..5f9d498d1c Binary files /dev/null and b/docs/userguide/hu/images/apps-images/mail-signature.png differ diff --git a/docs/userguide/hu/images/apps-images/mail-spellcheck.png b/docs/userguide/hu/images/apps-images/mail-spellcheck.png new file mode 100644 index 0000000000..13c7aefa50 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/mail-spellcheck.png differ diff --git a/docs/userguide/hu/images/apps-images/mail-write.png b/docs/userguide/hu/images/apps-images/mail-write.png new file mode 100644 index 0000000000..eb6c1b457b Binary files /dev/null and b/docs/userguide/hu/images/apps-images/mail-write.png differ diff --git a/docs/userguide/hu/images/apps-images/mediaplayer-info.png b/docs/userguide/hu/images/apps-images/mediaplayer-info.png new file mode 100644 index 0000000000..b15443bf0f Binary files /dev/null and b/docs/userguide/hu/images/apps-images/mediaplayer-info.png differ diff --git a/docs/userguide/hu/images/apps-images/mediaplayer-playlist.png b/docs/userguide/hu/images/apps-images/mediaplayer-playlist.png new file mode 100644 index 0000000000..41c3256165 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/mediaplayer-playlist.png differ diff --git a/docs/userguide/hu/images/apps-images/mediaplayer-settings.png b/docs/userguide/hu/images/apps-images/mediaplayer-settings.png new file mode 100644 index 0000000000..6615b5cb77 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/mediaplayer-settings.png differ diff --git a/docs/userguide/hu/images/apps-images/mediaplayer.png b/docs/userguide/hu/images/apps-images/mediaplayer.png new file mode 100644 index 0000000000..74dff97ec0 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/mediaplayer.png differ diff --git a/docs/userguide/hu/images/apps-images/midiplayer.png b/docs/userguide/hu/images/apps-images/midiplayer.png new file mode 100644 index 0000000000..024492ad38 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/midiplayer.png differ diff --git a/docs/userguide/hu/images/apps-images/newactivitymonitor.png b/docs/userguide/hu/images/apps-images/newactivitymonitor.png new file mode 100644 index 0000000000..94ee224e90 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/newactivitymonitor.png differ diff --git a/docs/userguide/hu/images/apps-images/packageinstaller-installer.png b/docs/userguide/hu/images/apps-images/packageinstaller-installer.png new file mode 100644 index 0000000000..9f9e8c3e30 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/packageinstaller-installer.png differ diff --git a/docs/userguide/hu/images/apps-images/packageinstaller.png b/docs/userguide/hu/images/apps-images/packageinstaller.png new file mode 100644 index 0000000000..3d22208fea Binary files /dev/null and b/docs/userguide/hu/images/apps-images/packageinstaller.png differ diff --git a/docs/userguide/hu/images/apps-images/people-files.png b/docs/userguide/hu/images/apps-images/people-files.png new file mode 100644 index 0000000000..1659058424 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/people-files.png differ diff --git a/docs/userguide/hu/images/apps-images/people.png b/docs/userguide/hu/images/apps-images/people.png new file mode 100644 index 0000000000..d4d2e2977c Binary files /dev/null and b/docs/userguide/hu/images/apps-images/people.png differ diff --git a/docs/userguide/hu/images/apps-images/poorman.png b/docs/userguide/hu/images/apps-images/poorman.png new file mode 100644 index 0000000000..e407b5cc85 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/poorman.png differ diff --git a/docs/userguide/hu/images/apps-images/screenshot.png b/docs/userguide/hu/images/apps-images/screenshot.png new file mode 100644 index 0000000000..35355f076f Binary files /dev/null and b/docs/userguide/hu/images/apps-images/screenshot.png differ diff --git a/docs/userguide/hu/images/apps-images/showimage-browse.jpg b/docs/userguide/hu/images/apps-images/showimage-browse.jpg new file mode 100644 index 0000000000..b0459e5233 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/showimage-browse.jpg differ diff --git a/docs/userguide/hu/images/apps-images/showimage-dnd.jpg b/docs/userguide/hu/images/apps-images/showimage-dnd.jpg new file mode 100644 index 0000000000..fb42ad16bd Binary files /dev/null and b/docs/userguide/hu/images/apps-images/showimage-dnd.jpg differ diff --git a/docs/userguide/hu/images/apps-images/showimage-edit.jpg b/docs/userguide/hu/images/apps-images/showimage-edit.jpg new file mode 100644 index 0000000000..043a529632 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/showimage-edit.jpg differ diff --git a/docs/userguide/hu/images/apps-images/showimage-toolbar.png b/docs/userguide/hu/images/apps-images/showimage-toolbar.png new file mode 100644 index 0000000000..a51f23f576 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/showimage-toolbar.png differ diff --git a/docs/userguide/hu/images/apps-images/showimage-view.jpg b/docs/userguide/hu/images/apps-images/showimage-view.jpg new file mode 100644 index 0000000000..1b58d23bd3 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/showimage-view.jpg differ diff --git a/docs/userguide/hu/images/apps-images/stylededit.png b/docs/userguide/hu/images/apps-images/stylededit.png new file mode 100644 index 0000000000..18be4205d0 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/stylededit.png differ diff --git a/docs/userguide/hu/images/apps-images/terminal-settings.png b/docs/userguide/hu/images/apps-images/terminal-settings.png new file mode 100644 index 0000000000..8e9cd4839f Binary files /dev/null and b/docs/userguide/hu/images/apps-images/terminal-settings.png differ diff --git a/docs/userguide/hu/images/apps-images/terminal.png b/docs/userguide/hu/images/apps-images/terminal.png new file mode 100644 index 0000000000..7680a19b93 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/terminal.png differ diff --git a/docs/userguide/hu/images/apps-images/textsearch.png b/docs/userguide/hu/images/apps-images/textsearch.png new file mode 100644 index 0000000000..e0f3abb8ec Binary files /dev/null and b/docs/userguide/hu/images/apps-images/textsearch.png differ diff --git a/docs/userguide/hu/images/apps-images/web+bookmarks.png b/docs/userguide/hu/images/apps-images/web+bookmarks.png new file mode 100644 index 0000000000..7d8647aed8 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/web+bookmarks.png differ diff --git a/docs/userguide/hu/images/apps-images/web+download.png b/docs/userguide/hu/images/apps-images/web+download.png new file mode 100644 index 0000000000..621e022340 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/web+download.png differ diff --git a/docs/userguide/hu/images/apps-images/web+downloads-folder.png b/docs/userguide/hu/images/apps-images/web+downloads-folder.png new file mode 100644 index 0000000000..f01f9e3b9b Binary files /dev/null and b/docs/userguide/hu/images/apps-images/web+downloads-folder.png differ diff --git a/docs/userguide/hu/images/apps-images/web+downloads-window.png b/docs/userguide/hu/images/apps-images/web+downloads-window.png new file mode 100644 index 0000000000..402072a463 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/web+downloads-window.png differ diff --git a/docs/userguide/hu/images/apps-images/web+settings.png b/docs/userguide/hu/images/apps-images/web+settings.png new file mode 100644 index 0000000000..7b9a0945ad Binary files /dev/null and b/docs/userguide/hu/images/apps-images/web+settings.png differ diff --git a/docs/userguide/hu/images/apps-images/webpositive-bookmarks.png b/docs/userguide/hu/images/apps-images/webpositive-bookmarks.png new file mode 100644 index 0000000000..cd63347ed1 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/webpositive-bookmarks.png differ diff --git a/docs/userguide/hu/images/apps-images/webpositive-downloads.png b/docs/userguide/hu/images/apps-images/webpositive-downloads.png new file mode 100644 index 0000000000..03840aa96c Binary files /dev/null and b/docs/userguide/hu/images/apps-images/webpositive-downloads.png differ diff --git a/docs/userguide/hu/images/apps-images/webpositive-locator.png b/docs/userguide/hu/images/apps-images/webpositive-locator.png new file mode 100644 index 0000000000..eeb3491e43 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/webpositive-locator.png differ diff --git a/docs/userguide/hu/images/apps-images/webpositive-settings.png b/docs/userguide/hu/images/apps-images/webpositive-settings.png new file mode 100644 index 0000000000..046f3d436d Binary files /dev/null and b/docs/userguide/hu/images/apps-images/webpositive-settings.png differ diff --git a/docs/userguide/hu/images/apps-images/webpositive-tabbar.png b/docs/userguide/hu/images/apps-images/webpositive-tabbar.png new file mode 100644 index 0000000000..5cf13f972e Binary files /dev/null and b/docs/userguide/hu/images/apps-images/webpositive-tabbar.png differ diff --git a/docs/userguide/hu/images/apps-images/webpositive.png b/docs/userguide/hu/images/apps-images/webpositive.png new file mode 100644 index 0000000000..56f1c34880 Binary files /dev/null and b/docs/userguide/hu/images/apps-images/webpositive.png differ diff --git a/docs/userguide/hu/images/attributes-images/people.png b/docs/userguide/hu/images/attributes-images/people.png new file mode 100644 index 0000000000..e0bb5223ec Binary files /dev/null and b/docs/userguide/hu/images/attributes-images/people.png differ diff --git a/docs/userguide/hu/images/deskbar-images/calendar.png b/docs/userguide/hu/images/deskbar-images/calendar.png new file mode 100644 index 0000000000..b805afaee5 Binary files /dev/null and b/docs/userguide/hu/images/deskbar-images/calendar.png differ diff --git a/docs/userguide/hu/images/deskbar-images/configure.png b/docs/userguide/hu/images/deskbar-images/configure.png new file mode 100644 index 0000000000..1e1eaf3b10 Binary files /dev/null and b/docs/userguide/hu/images/deskbar-images/configure.png differ diff --git a/docs/userguide/hu/images/deskbar-images/deskbar.png b/docs/userguide/hu/images/deskbar-images/deskbar.png new file mode 100644 index 0000000000..a66c6a89bf Binary files /dev/null and b/docs/userguide/hu/images/deskbar-images/deskbar.png differ diff --git a/docs/userguide/hu/images/deskbar-images/list-of-apps.png b/docs/userguide/hu/images/deskbar-images/list-of-apps.png new file mode 100644 index 0000000000..2e76b8362f Binary files /dev/null and b/docs/userguide/hu/images/deskbar-images/list-of-apps.png differ diff --git a/docs/userguide/hu/images/deskbar-images/positions.png b/docs/userguide/hu/images/deskbar-images/positions.png new file mode 100644 index 0000000000..8982be903f Binary files /dev/null and b/docs/userguide/hu/images/deskbar-images/positions.png differ diff --git a/docs/userguide/hu/images/desktop-applets-images/launchbox.png b/docs/userguide/hu/images/desktop-applets-images/launchbox.png new file mode 100644 index 0000000000..565e5dcd22 Binary files /dev/null and b/docs/userguide/hu/images/desktop-applets-images/launchbox.png differ diff --git a/docs/userguide/hu/images/filesystem-layout-images/achtung-system.png b/docs/userguide/hu/images/filesystem-layout-images/achtung-system.png new file mode 100644 index 0000000000..e19dfb93c3 Binary files /dev/null and b/docs/userguide/hu/images/filesystem-layout-images/achtung-system.png differ diff --git a/docs/userguide/hu/images/filesystem-layout-images/achtung-user.png b/docs/userguide/hu/images/filesystem-layout-images/achtung-user.png new file mode 100644 index 0000000000..0fe27e7596 Binary files /dev/null and b/docs/userguide/hu/images/filesystem-layout-images/achtung-user.png differ diff --git a/docs/userguide/hu/images/filetypes-images/filetype-addon-stylededit.png b/docs/userguide/hu/images/filetypes-images/filetype-addon-stylededit.png new file mode 100644 index 0000000000..505ef8f5e7 Binary files /dev/null and b/docs/userguide/hu/images/filetypes-images/filetype-addon-stylededit.png differ diff --git a/docs/userguide/hu/images/filetypes-images/filetype-addon.png b/docs/userguide/hu/images/filetypes-images/filetype-addon.png new file mode 100644 index 0000000000..5ca4d84e16 Binary files /dev/null and b/docs/userguide/hu/images/filetypes-images/filetype-addon.png differ diff --git a/docs/userguide/hu/images/gui-images/favorites.png b/docs/userguide/hu/images/gui-images/favorites.png new file mode 100644 index 0000000000..14f347c4e2 Binary files /dev/null and b/docs/userguide/hu/images/gui-images/favorites.png differ diff --git a/docs/userguide/hu/images/gui-images/gui-s+t.gif b/docs/userguide/hu/images/gui-images/gui-s+t.gif new file mode 100644 index 0000000000..ee1be94d51 Binary files /dev/null and b/docs/userguide/hu/images/gui-images/gui-s+t.gif differ diff --git a/docs/userguide/hu/images/gui-images/gui-stacking.png b/docs/userguide/hu/images/gui-images/gui-stacking.png new file mode 100644 index 0000000000..38c058144b Binary files /dev/null and b/docs/userguide/hu/images/gui-images/gui-stacking.png differ diff --git a/docs/userguide/hu/images/gui-images/gui-tiling.png b/docs/userguide/hu/images/gui-images/gui-tiling.png new file mode 100644 index 0000000000..7a46936a78 Binary files /dev/null and b/docs/userguide/hu/images/gui-images/gui-tiling.png differ diff --git a/docs/userguide/hu/images/gui-images/gui.png b/docs/userguide/hu/images/gui-images/gui.png new file mode 100644 index 0000000000..fec4917114 Binary files /dev/null and b/docs/userguide/hu/images/gui-images/gui.png differ diff --git a/docs/userguide/hu/images/gui-images/open-save.png b/docs/userguide/hu/images/gui-images/open-save.png new file mode 100644 index 0000000000..24dcd96696 Binary files /dev/null and b/docs/userguide/hu/images/gui-images/open-save.png differ diff --git a/docs/userguide/hu/images/gui-images/resizing.png b/docs/userguide/hu/images/gui-images/resizing.png new file mode 100644 index 0000000000..093246a264 Binary files /dev/null and b/docs/userguide/hu/images/gui-images/resizing.png differ diff --git a/docs/userguide/hu/images/networkstatus-images/applet.png b/docs/userguide/hu/images/networkstatus-images/applet.png new file mode 100644 index 0000000000..d677259f1e Binary files /dev/null and b/docs/userguide/hu/images/networkstatus-images/applet.png differ diff --git a/docs/userguide/hu/images/networkstatus-images/icon-connecting.png b/docs/userguide/hu/images/networkstatus-images/icon-connecting.png new file mode 100644 index 0000000000..84013cb9a6 Binary files /dev/null and b/docs/userguide/hu/images/networkstatus-images/icon-connecting.png differ diff --git a/docs/userguide/hu/images/networkstatus-images/icon-noconnection.png b/docs/userguide/hu/images/networkstatus-images/icon-noconnection.png new file mode 100644 index 0000000000..329d5a6c94 Binary files /dev/null and b/docs/userguide/hu/images/networkstatus-images/icon-noconnection.png differ diff --git a/docs/userguide/hu/images/networkstatus-images/icon-nodevices.png b/docs/userguide/hu/images/networkstatus-images/icon-nodevices.png new file mode 100644 index 0000000000..442f3b6c8a Binary files /dev/null and b/docs/userguide/hu/images/networkstatus-images/icon-nodevices.png differ diff --git a/docs/userguide/hu/images/networkstatus-images/icon-nosettings.png b/docs/userguide/hu/images/networkstatus-images/icon-nosettings.png new file mode 100644 index 0000000000..a0fa47e9b8 Binary files /dev/null and b/docs/userguide/hu/images/networkstatus-images/icon-nosettings.png differ diff --git a/docs/userguide/hu/images/networkstatus-images/icon-ready.png b/docs/userguide/hu/images/networkstatus-images/icon-ready.png new file mode 100644 index 0000000000..7d9ea72428 Binary files /dev/null and b/docs/userguide/hu/images/networkstatus-images/icon-ready.png differ diff --git a/docs/userguide/hu/images/powerstatus-images/applet.png b/docs/userguide/hu/images/powerstatus-images/applet.png new file mode 100644 index 0000000000..fb2f529771 Binary files /dev/null and b/docs/userguide/hu/images/powerstatus-images/applet.png differ diff --git a/docs/userguide/hu/images/prefs-images/appearance-antialiasing.png b/docs/userguide/hu/images/prefs-images/appearance-antialiasing.png new file mode 100644 index 0000000000..4e1a3d1527 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/appearance-antialiasing.png differ diff --git a/docs/userguide/hu/images/prefs-images/appearance-colors.png b/docs/userguide/hu/images/prefs-images/appearance-colors.png new file mode 100644 index 0000000000..e9cb499ce6 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/appearance-colors.png differ diff --git a/docs/userguide/hu/images/prefs-images/appearance-decorators.png b/docs/userguide/hu/images/prefs-images/appearance-decorators.png new file mode 100644 index 0000000000..5fac6463d0 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/appearance-decorators.png differ diff --git a/docs/userguide/hu/images/prefs-images/appearance-fonts.png b/docs/userguide/hu/images/prefs-images/appearance-fonts.png new file mode 100644 index 0000000000..41d4db2ea2 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/appearance-fonts.png differ diff --git a/docs/userguide/hu/images/prefs-images/appearance-glyph-off.png b/docs/userguide/hu/images/prefs-images/appearance-glyph-off.png new file mode 100644 index 0000000000..6a01c5807e Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/appearance-glyph-off.png differ diff --git a/docs/userguide/hu/images/prefs-images/appearance-glyph-on-subpixel.png b/docs/userguide/hu/images/prefs-images/appearance-glyph-on-subpixel.png new file mode 100644 index 0000000000..b2ddd9a7b8 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/appearance-glyph-on-subpixel.png differ diff --git a/docs/userguide/hu/images/prefs-images/appearance-glyph-on.png b/docs/userguide/hu/images/prefs-images/appearance-glyph-on.png new file mode 100644 index 0000000000..d10f807bbc Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/appearance-glyph-on.png differ diff --git a/docs/userguide/hu/images/prefs-images/appearance-subpixel.png b/docs/userguide/hu/images/prefs-images/appearance-subpixel.png new file mode 100644 index 0000000000..1f119df7e7 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/appearance-subpixel.png differ diff --git a/docs/userguide/hu/images/prefs-images/backgrounds.png b/docs/userguide/hu/images/prefs-images/backgrounds.png new file mode 100644 index 0000000000..32b7931ffa Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/backgrounds.png differ diff --git a/docs/userguide/hu/images/prefs-images/datatranslations.png b/docs/userguide/hu/images/prefs-images/datatranslations.png new file mode 100644 index 0000000000..5709c142ba Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/datatranslations.png differ diff --git a/docs/userguide/hu/images/prefs-images/e-mail-accounts.png b/docs/userguide/hu/images/prefs-images/e-mail-accounts.png new file mode 100644 index 0000000000..1f31ed9e83 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/e-mail-accounts.png differ diff --git a/docs/userguide/hu/images/prefs-images/e-mail-filter-header.png b/docs/userguide/hu/images/prefs-images/e-mail-filter-header.png new file mode 100644 index 0000000000..788db6a3b1 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/e-mail-filter-header.png differ diff --git a/docs/userguide/hu/images/prefs-images/e-mail-filter-notification.png b/docs/userguide/hu/images/prefs-images/e-mail-filter-notification.png new file mode 100644 index 0000000000..f60231805d Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/e-mail-filter-notification.png differ diff --git a/docs/userguide/hu/images/prefs-images/e-mail-filter-spam.png b/docs/userguide/hu/images/prefs-images/e-mail-filter-spam.png new file mode 100644 index 0000000000..6d75650b0d Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/e-mail-filter-spam.png differ diff --git a/docs/userguide/hu/images/prefs-images/e-mail-in.png b/docs/userguide/hu/images/prefs-images/e-mail-in.png new file mode 100644 index 0000000000..c9b3001342 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/e-mail-in.png differ diff --git a/docs/userguide/hu/images/prefs-images/e-mail-mailbox.png b/docs/userguide/hu/images/prefs-images/e-mail-mailbox.png new file mode 100644 index 0000000000..3a34c6192d Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/e-mail-mailbox.png differ diff --git a/docs/userguide/hu/images/prefs-images/e-mail-new-account-2.png b/docs/userguide/hu/images/prefs-images/e-mail-new-account-2.png new file mode 100644 index 0000000000..7e4186af5d Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/e-mail-new-account-2.png differ diff --git a/docs/userguide/hu/images/prefs-images/e-mail-new-account.png b/docs/userguide/hu/images/prefs-images/e-mail-new-account.png new file mode 100644 index 0000000000..dd6bda0239 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/e-mail-new-account.png differ diff --git a/docs/userguide/hu/images/prefs-images/e-mail-out.png b/docs/userguide/hu/images/prefs-images/e-mail-out.png new file mode 100644 index 0000000000..0acb5c0408 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/e-mail-out.png differ diff --git a/docs/userguide/hu/images/prefs-images/e-mail-settings.png b/docs/userguide/hu/images/prefs-images/e-mail-settings.png new file mode 100644 index 0000000000..c2c4ecf29d Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/e-mail-settings.png differ diff --git a/docs/userguide/hu/images/prefs-images/fonts.png b/docs/userguide/hu/images/prefs-images/fonts.png new file mode 100644 index 0000000000..fbf879455d Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/fonts.png differ diff --git a/docs/userguide/hu/images/prefs-images/keyboard.png b/docs/userguide/hu/images/prefs-images/keyboard.png new file mode 100644 index 0000000000..b7fd32e151 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/keyboard.png differ diff --git a/docs/userguide/hu/images/prefs-images/keymap.png b/docs/userguide/hu/images/prefs-images/keymap.png new file mode 100644 index 0000000000..47a2df9824 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/keymap.png differ diff --git a/docs/userguide/hu/images/prefs-images/locale-formatting.png b/docs/userguide/hu/images/prefs-images/locale-formatting.png new file mode 100644 index 0000000000..bc09fa08b6 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/locale-formatting.png differ diff --git a/docs/userguide/hu/images/prefs-images/locale-language.png b/docs/userguide/hu/images/prefs-images/locale-language.png new file mode 100644 index 0000000000..2473a56632 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/locale-language.png differ diff --git a/docs/userguide/hu/images/prefs-images/mouse.png b/docs/userguide/hu/images/prefs-images/mouse.png new file mode 100644 index 0000000000..a5519505c3 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/mouse.png differ diff --git a/docs/userguide/hu/images/prefs-images/network.png b/docs/userguide/hu/images/prefs-images/network.png new file mode 100644 index 0000000000..d5a457424c Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/network.png differ diff --git a/docs/userguide/hu/images/prefs-images/screen.png b/docs/userguide/hu/images/prefs-images/screen.png new file mode 100644 index 0000000000..38f59d72eb Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/screen.png differ diff --git a/docs/userguide/hu/images/prefs-images/screensaver-fade.png b/docs/userguide/hu/images/prefs-images/screensaver-fade.png new file mode 100644 index 0000000000..bedfc1b43e Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/screensaver-fade.png differ diff --git a/docs/userguide/hu/images/prefs-images/screensaver-modules.png b/docs/userguide/hu/images/prefs-images/screensaver-modules.png new file mode 100644 index 0000000000..6cd458dece Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/screensaver-modules.png differ diff --git a/docs/userguide/hu/images/prefs-images/sounds.png b/docs/userguide/hu/images/prefs-images/sounds.png new file mode 100644 index 0000000000..8976236b03 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/sounds.png differ diff --git a/docs/userguide/hu/images/prefs-images/time-time.png b/docs/userguide/hu/images/prefs-images/time-time.png new file mode 100644 index 0000000000..5ca300a229 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/time-time.png differ diff --git a/docs/userguide/hu/images/prefs-images/time-timezone.png b/docs/userguide/hu/images/prefs-images/time-timezone.png new file mode 100644 index 0000000000..c107301b28 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/time-timezone.png differ diff --git a/docs/userguide/hu/images/prefs-images/touchpad.png b/docs/userguide/hu/images/prefs-images/touchpad.png new file mode 100644 index 0000000000..6517ae31e1 Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/touchpad.png differ diff --git a/docs/userguide/hu/images/prefs-images/virtualmemory.png b/docs/userguide/hu/images/prefs-images/virtualmemory.png new file mode 100644 index 0000000000..a68912ca0a Binary files /dev/null and b/docs/userguide/hu/images/prefs-images/virtualmemory.png differ diff --git a/docs/userguide/hu/images/processcontroller-images/applet.png b/docs/userguide/hu/images/processcontroller-images/applet.png new file mode 100644 index 0000000000..6bb61d3151 Binary files /dev/null and b/docs/userguide/hu/images/processcontroller-images/applet.png differ diff --git a/docs/userguide/hu/images/processcontroller-images/memory.png b/docs/userguide/hu/images/processcontroller-images/memory.png new file mode 100644 index 0000000000..f1fb8d88f4 Binary files /dev/null and b/docs/userguide/hu/images/processcontroller-images/memory.png differ diff --git a/docs/userguide/hu/images/processcontroller-images/priority.png b/docs/userguide/hu/images/processcontroller-images/priority.png new file mode 100644 index 0000000000..7c21980c59 Binary files /dev/null and b/docs/userguide/hu/images/processcontroller-images/priority.png differ diff --git a/docs/userguide/hu/images/processcontroller-images/quit.png b/docs/userguide/hu/images/processcontroller-images/quit.png new file mode 100644 index 0000000000..3b7487ef49 Binary files /dev/null and b/docs/userguide/hu/images/processcontroller-images/quit.png differ diff --git a/docs/userguide/hu/images/queries-images/basic-query.png b/docs/userguide/hu/images/queries-images/basic-query.png new file mode 100644 index 0000000000..7cae8281a4 Binary files /dev/null and b/docs/userguide/hu/images/queries-images/basic-query.png differ diff --git a/docs/userguide/hu/images/queries-images/formula-query.png b/docs/userguide/hu/images/queries-images/formula-query.png new file mode 100644 index 0000000000..bcaf3440a4 Binary files /dev/null and b/docs/userguide/hu/images/queries-images/formula-query.png differ diff --git a/docs/userguide/hu/images/queries-images/query-window-filled.png b/docs/userguide/hu/images/queries-images/query-window-filled.png new file mode 100644 index 0000000000..5a78cca86b Binary files /dev/null and b/docs/userguide/hu/images/queries-images/query-window-filled.png differ diff --git a/docs/userguide/hu/images/queries-images/query-window.png b/docs/userguide/hu/images/queries-images/query-window.png new file mode 100644 index 0000000000..d131ae8e51 Binary files /dev/null and b/docs/userguide/hu/images/queries-images/query-window.png differ diff --git a/docs/userguide/hu/images/queries-images/result-window.png b/docs/userguide/hu/images/queries-images/result-window.png new file mode 100644 index 0000000000..dc35ccd326 Binary files /dev/null and b/docs/userguide/hu/images/queries-images/result-window.png differ diff --git a/docs/userguide/hu/images/teammonitor-images/teammonitor.png b/docs/userguide/hu/images/teammonitor-images/teammonitor.png new file mode 100644 index 0000000000..bee4fa243c Binary files /dev/null and b/docs/userguide/hu/images/teammonitor-images/teammonitor.png differ diff --git a/docs/userguide/hu/images/tracker-images/drill-down.png b/docs/userguide/hu/images/tracker-images/drill-down.png new file mode 100644 index 0000000000..d93d14f469 Binary files /dev/null and b/docs/userguide/hu/images/tracker-images/drill-down.png differ diff --git a/docs/userguide/hu/images/tracker-images/get-info.png b/docs/userguide/hu/images/tracker-images/get-info.png new file mode 100644 index 0000000000..4a3ccd4570 Binary files /dev/null and b/docs/userguide/hu/images/tracker-images/get-info.png differ diff --git a/docs/userguide/hu/images/tracker-images/mount-settings.png b/docs/userguide/hu/images/tracker-images/mount-settings.png new file mode 100644 index 0000000000..ec529c272f Binary files /dev/null and b/docs/userguide/hu/images/tracker-images/mount-settings.png differ diff --git a/docs/userguide/hu/images/tracker-images/new-menu.png b/docs/userguide/hu/images/tracker-images/new-menu.png new file mode 100644 index 0000000000..9aac1ae7b8 Binary files /dev/null and b/docs/userguide/hu/images/tracker-images/new-menu.png differ diff --git a/docs/userguide/hu/images/tracker-images/open-with-preferred.png b/docs/userguide/hu/images/tracker-images/open-with-preferred.png new file mode 100644 index 0000000000..3ab889e092 Binary files /dev/null and b/docs/userguide/hu/images/tracker-images/open-with-preferred.png differ diff --git a/docs/userguide/hu/images/tracker-images/open-with.png b/docs/userguide/hu/images/tracker-images/open-with.png new file mode 100644 index 0000000000..d61a385979 Binary files /dev/null and b/docs/userguide/hu/images/tracker-images/open-with.png differ diff --git a/docs/userguide/hu/images/tracker-images/tracker-preferences-navigator.png b/docs/userguide/hu/images/tracker-images/tracker-preferences-navigator.png new file mode 100644 index 0000000000..545bca4ac6 Binary files /dev/null and b/docs/userguide/hu/images/tracker-images/tracker-preferences-navigator.png differ diff --git a/docs/userguide/hu/images/tracker-images/transaction-status.png b/docs/userguide/hu/images/tracker-images/transaction-status.png new file mode 100644 index 0000000000..37cf3fb0d3 Binary files /dev/null and b/docs/userguide/hu/images/tracker-images/transaction-status.png differ diff --git a/docs/userguide/hu/images/tracker-images/window-drill-down.png b/docs/userguide/hu/images/tracker-images/window-drill-down.png new file mode 100644 index 0000000000..6281a26481 Binary files /dev/null and b/docs/userguide/hu/images/tracker-images/window-drill-down.png differ diff --git a/docs/userguide/hu/images/tracker-images/window-menu.png b/docs/userguide/hu/images/tracker-images/window-menu.png new file mode 100644 index 0000000000..23f2affab3 Binary files /dev/null and b/docs/userguide/hu/images/tracker-images/window-menu.png differ diff --git a/docs/userguide/hu/images/tracker-images/window-type-ahead.png b/docs/userguide/hu/images/tracker-images/window-type-ahead.png new file mode 100644 index 0000000000..e36d245b49 Binary files /dev/null and b/docs/userguide/hu/images/tracker-images/window-type-ahead.png differ diff --git a/docs/userguide/hu/images/workshop-email-images/browsing.png b/docs/userguide/hu/images/workshop-email-images/browsing.png new file mode 100644 index 0000000000..d8493e0f6e Binary files /dev/null and b/docs/userguide/hu/images/workshop-email-images/browsing.png differ diff --git a/docs/userguide/hu/images/workshop-email-images/daemon-in-deskbar.png b/docs/userguide/hu/images/workshop-email-images/daemon-in-deskbar.png new file mode 100644 index 0000000000..002fad792c Binary files /dev/null and b/docs/userguide/hu/images/workshop-email-images/daemon-in-deskbar.png differ diff --git a/docs/userguide/hu/images/workshop-email-images/query-1.png b/docs/userguide/hu/images/workshop-email-images/query-1.png new file mode 100644 index 0000000000..24ea8cc251 Binary files /dev/null and b/docs/userguide/hu/images/workshop-email-images/query-1.png differ diff --git a/docs/userguide/hu/images/workshop-email-images/query-2.png b/docs/userguide/hu/images/workshop-email-images/query-2.png new file mode 100644 index 0000000000..ab5cdd53ce Binary files /dev/null and b/docs/userguide/hu/images/workshop-email-images/query-2.png differ diff --git a/docs/userguide/hu/images/workshop-email-images/query-3.png b/docs/userguide/hu/images/workshop-email-images/query-3.png new file mode 100644 index 0000000000..8742634c0e Binary files /dev/null and b/docs/userguide/hu/images/workshop-email-images/query-3.png differ diff --git a/docs/userguide/hu/images/workshop-email-images/query-4.png b/docs/userguide/hu/images/workshop-email-images/query-4.png new file mode 100644 index 0000000000..c01106040a Binary files /dev/null and b/docs/userguide/hu/images/workshop-email-images/query-4.png differ diff --git a/docs/userguide/hu/images/workshop-email-images/status.png b/docs/userguide/hu/images/workshop-email-images/status.png new file mode 100644 index 0000000000..eeb250d4b1 Binary files /dev/null and b/docs/userguide/hu/images/workshop-email-images/status.png differ diff --git a/docs/userguide/hu/images/workshop-filetypes+attributes-images/filetype-extra-attribute.png b/docs/userguide/hu/images/workshop-filetypes+attributes-images/filetype-extra-attribute.png new file mode 100644 index 0000000000..6230689921 Binary files /dev/null and b/docs/userguide/hu/images/workshop-filetypes+attributes-images/filetype-extra-attribute.png differ diff --git a/docs/userguide/hu/images/workshop-filetypes+attributes-images/filetypes-dvddb-empty.png b/docs/userguide/hu/images/workshop-filetypes+attributes-images/filetypes-dvddb-empty.png new file mode 100644 index 0000000000..efe3b30dc5 Binary files /dev/null and b/docs/userguide/hu/images/workshop-filetypes+attributes-images/filetypes-dvddb-empty.png differ diff --git a/docs/userguide/hu/images/workshop-filetypes+attributes-images/filetypes-dvddb.png b/docs/userguide/hu/images/workshop-filetypes+attributes-images/filetypes-dvddb.png new file mode 100644 index 0000000000..d565a73630 Binary files /dev/null and b/docs/userguide/hu/images/workshop-filetypes+attributes-images/filetypes-dvddb.png differ diff --git a/docs/userguide/hu/images/workshop-filetypes+attributes-images/filetypes-new-file-type.png b/docs/userguide/hu/images/workshop-filetypes+attributes-images/filetypes-new-file-type.png new file mode 100644 index 0000000000..f01ed0a208 Binary files /dev/null and b/docs/userguide/hu/images/workshop-filetypes+attributes-images/filetypes-new-file-type.png differ diff --git a/docs/userguide/hu/images/workshop-filetypes+attributes-images/query-dvddb.png b/docs/userguide/hu/images/workshop-filetypes+attributes-images/query-dvddb.png new file mode 100644 index 0000000000..6dc07e7c48 Binary files /dev/null and b/docs/userguide/hu/images/workshop-filetypes+attributes-images/query-dvddb.png differ diff --git a/docs/userguide/hu/images/workshop-wlan-images/join-network.png b/docs/userguide/hu/images/workshop-wlan-images/join-network.png new file mode 100644 index 0000000000..2fedecda91 Binary files /dev/null and b/docs/userguide/hu/images/workshop-wlan-images/join-network.png differ diff --git a/docs/userguide/hu/images/workshop-wlan-images/join-status.gif b/docs/userguide/hu/images/workshop-wlan-images/join-status.gif new file mode 100644 index 0000000000..dea116d418 Binary files /dev/null and b/docs/userguide/hu/images/workshop-wlan-images/join-status.gif differ diff --git a/docs/userguide/hu/images/workspaces-images/workspaces.png b/docs/userguide/hu/images/workspaces-images/workspaces.png new file mode 100644 index 0000000000..bde64d43f8 Binary files /dev/null and b/docs/userguide/hu/images/workspaces-images/workspaces.png differ diff --git a/docs/userguide/hu/index.html b/docs/userguide/hu/index.html new file mode 100644 index 0000000000..6807a8bef9 --- /dev/null +++ b/docs/userguide/hu/index.html @@ -0,0 +1,166 @@ + + + + + + + + + Index + + + + + + + + +
    +
    + +

    Index

    + +

    A Jellemzők és a Lekérdezések kulcsfontosságú részei a Haiku-nak. Míg a jellemzők magukban is hasznosak, a fájl kiegészítő információit jelenítik meg, kereséshez (lekérdezéshez) azonban már indexelni kell őket. Az indexek a jellemzőket egy kereső táblába rakják, ami a keresést nagyon gyorsá teszi.
    +Az index a fájlrendszer részét képezi, és minden lemezen/partíción elkülönítve van tárolva.

    + +

    +Indexel kapcsolatos parancsok a Terminálban

    +

    Több parancs is rendelkezésünkre áll az indexek kezelésére:

    +
      +
    • lsindex - Megjeleníti az aktuális lemezen lévő indexelt jellemzőket.
      +Alap esetben ezek a jellemzőket indexeli a rendszer:
    • +
    +
     ~ ->lsindex 
    +BEOS:APP_SIG 
    +MAIL:account 
    +MAIL:cc 
    +MAIL:chain 
    +MAIL:draft 
    +MAIL:flags 
    +MAIL:from 
    +MAIL:name 
    +MAIL:pending_chain 
    +MAIL:priority 
    +MAIL:reply 
    +MAIL:status 
    +MAIL:subject 
    +MAIL:thread 
    +MAIL:to 
    +MAIL:when 
    +META:address 
    +META:city 
    +META:company 
    +META:country 
    +META:email 
    +META:fax 
    +META:group 
    +META:hphone 
    +META:name 
    +META:nickname 
    +META:state 
    +META:url 
    +META:wphone 
    +META:zip 
    +_signature 
    +_status 
    +_trk/qrylastchange 
    +_trk/recentQuery 
    +be:deskbar_item_status 
    +last_modified 
    +name 
    +size 
    +
    +
      +
    • mkindex - Új jellemző hozzáadása az indexhez a lemezen.
    • +
    +
    használat: mkindex [opciók] <jellemző> 
    +Új index létrehozása a megadott jellemzőhöz. 
    + 
    +  -d, --volume=ÚTVONAL  annak a lemeznek az útvonala, ahová az indexet hozzá akarjuk adni, 
    +                        alap esetben ez az aktuális lemez 
    +  -t, --type=TÍPUS      az indexelni kívánt jellemző típusa, mely a következő lehet:
    +                        "int", "llong", "string", "float", "double". 
    +                        ha nem adunk meg semmit, akor "string" (szöveg) lesz 
    +      --copy-from       annak a lemeznek az útvonala, ahonnan az indexet másolni akarjuk 
    +  -v, --verbose         a létrehozás folyamata közbeni információk megjelenítése 
    +
    +
    +

    Csak az új fájlok (azokkal a jellemzőkkel) kerülnek bele az indexbe!
    +Már létező fájlokat kézzel kell hozzáadni úgy, hogy átmásoljuk majd töröljük utána az eredetit. Alternatív megoldásként használhatjuk a reindex parancsot is. +

    +
      +
    • reindex - Egy meglévő fájl jellemzőit a lemez/partíció újonnan készített indexébe rakja.
    • +
    +
    használat: reindex [-rvf] útvonal <fájlok/mappák listája> 
    +  -r    a mappák almappáit is indexeli
    +  -v    a létrehozás folyamata közbeni információk megjelenítése
    +  -f    létrehozza/frissíti az összes indexet a forrás lemezről,
    +        a "útvonal" a forráslemez útvonala
    +
    +
    +
      +
    • rmindex - Eltávolít egy jellemzőt a lemez/partíció indexéből.
    • +
    +
    használat: rmindex [OCIÓK]... INDEX_NEVE 
    + 
    +Törli az INDEX_NEVE nevű indexet a lemezről. Miután ez elkészült,
    +a rendszer már nem fogja tudni megkeresni a fájlokat az INDEX_NEVE nevű jellemző alapján. 
    + 
    +  -d, --volume=ÚTVONAL  annak a lemeznek az útvonal, ahonnan az indexet törölni szeretnénk
    +  -h, --help            ez a segítség megjelenítése 
    +  -p, --pattern         az INDEX_NEVE egy minta 
    +  -v, --verbose         az eltávolítási folyamata közbeni információk megjelenítése  
    + 
    +Az INDEX_NEVE egy fájl jellemzőjének a neve. 
    + 
    +Ha nincs lemez megadva, akkor a jelenlegi lemez lesz használva.
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/keyboard-shortcuts.html b/docs/userguide/hu/keyboard-shortcuts.html new file mode 100644 index 0000000000..0aeeb5c75a --- /dev/null +++ b/docs/userguide/hu/keyboard-shortcuts.html @@ -0,0 +1,149 @@ + + + + + + + + + Billentyűzet-kombinációk + + + + + + + + +
    +
    + +

    Billentyűzet-kombinációk

    + +

    Alap esetben a Haiku billentyűzet-kombinációk nem a CTRL-al, hanem az ALT billentyűvel hívhatóak meg. Ennek "történelmi" okai vannak, ugyanis a Haiku-t a BeOS-t, azt pedig a MacOS ihlette. Használat közben is megvannak az előnyei, ugyanis például az ALT C és az ALT V kombinációk is épp úgy használhatóak a bash shell-ben is a Terminálban. Ott ugye a CTRL C megszakítja az épp futó programot, így azt nem használhatnánk a másolásra.

    +

    A Billentyűzetkiosztás beállításainál felülbírálhatjuk ezt a beállítást, ha inkább a CTRL billentyűt szeretnénk használni. Ez az útmutató minden esetben az alapértelmezett beállítás alapján értendő, vagyis, hogy az említett kombinációk az ALT-al használatosak.

    +

    Ha azon elmélkedsz, hogy vajon melyik az az OPT vagy MENU billentyű, akkor nézd meg azt a Billentyűzetkiosztás beállításainál. Ekkor könnyedén megtudhatod, hogy melyik leütött billentyű melyik is a billentyűzeten.

    + +

    +index +Elsődleges kombinációk

    +

    A következő táblázatban megtalálhatóak az általánosan használt kombinációk, melyek minden esetben elérhetőek, akár van hozzá menü, akár nincs:

    + + + + + + + + + + + + + + + + + + + + + + +
    ALT FxVáltás a Munkaasztalok között (az X az Fx esetében a munkaasztal száma, mely megfelel egy-egy funkció-billentyűnek). Az aktuális ablakot magunkal is vihetjük az új munkaasztalra, ha közben lenyomva tartjuk a SHIFT-et.
    CTRL ALT / / / Egy virtuális táblázat/rács segítségével navigálhatunk, váltogathatunk a munkaasztalok között. Az aktuális ablakot magunkal is vihetjük az új munkaasztalra, ha közben lenyomva tartjuk a SHIFT-et.
    OPTHa az OPT-ot lenyomva tartjuk miközben mozgatjuk az ablakot egy másik ablak közelében, akkor azokat csoportba rendezhetjük (további információk A Haiku felhasználói felülete témakörben).
    CTRL ALT + bal egérgombAz ablak mozgatása annak bármely részén (további információk A Haiku felhasználói felülete témakörben).
    CTRL ALT + jobb egérgombAz ablak méretezése a keretek körüli területen (további információk A Haiku felhasználói felülete témakörben).
    CTRL ALT ZAz ablak alternatív méretűre növelése (ez a legtöbb esetben a maximális mérettel egyenértékű).
    CTRL ALT MA jelenlegi ablak minimális méretűre kicsinyítése
    CTRL ALT HElrejti a jelenlegi ablakot (az Asztalsárva kicsinyíti).
    CTRL ALT FAz aktív ablakot az előtérbe hozza (csak akkor működik, ha az egér beállításainál a Ha az egér felette van opció ki van választva).
    CTRL ALT BA jelenlegi ablak háttérbe küldése.
    CTRL TABLenyomva tartásakor jelenik meg a Programváltó.
    CTRL ALT DELMegnyitja a Folyamatfigyelőt.
    ALT ESCA menü aktiválása (bezárása az ESC lenyomásával).
    ALT CA kiválasztott tartalmat a vágólapra másolja.
    ALT XA kiválasztott tartalmat a vágólapra helyezi (az eredeti törlésével).
    ALT VBeilleszti a vágólap tartalmát.
    ALT WAz aktuális ablak bezárása.
    ALT QA program bezárása.
    PRINTKépernyőképet készít, majd megnyitja a Képernyőkép ablakát.
    SHIFT PRINTKépernyőképet készít "csendes módban" (az ablak nem jelenik meg), miközben figyelembe veszi a legutóbbi beállításokat.
    CTRL PRINTSzintén "csendes módban" készíti el a képernyőképet, azonban a képet nem menti el, csak a vágólapra másolja azt.
    + +

    +index +Nyomkövető kombinációk

    +

    Néhány kiegészítő kombináció a Nyomkövetőben való navigáláshoz:

    + + + + + + + +
    ALT A szülő mappa megnyitása.
    ALT vagy ENTERA kiválasztott mappa megnyitása.
    OPTLenyomva tartásával amikor egy mappát megnyitunk, akkor a szülő mappa bezáródik. Ez egérrel történő navigálás esetén is működik.
    MENUMegnyitja az Asztalsáv menüt (bezárás az ESC-el).
    ALT ZA legutóbbi művelet visszavonása. A visszavonási előzmények száma a rendelkezésre álló memóriától függ. Itt megjegyzendő, hogy ez csak magán a fájlon működik, a jellemzők illetve az engedélyek visszavonására nem használható. Továbbá, ha a fájl már törlődött a Szemetesből, akkor az már nem vonható vissza.
    ALT SHIFT ZAz ALT Z kombinációval visszavont művelet újra végrehajtása.
    + +

    +index +Terminál kombinációk

    + + + + + + + + + + + + + + + + +
    ALT NÚj Terminál ablakot nyit meg.
    ALT TÚj lapot nyit meg.
    ALT 1, 2, 3 ...Változatás a lapok közt.
    ALT TABA következő Terminál ablakra vált.
    SHIFT / Balra/jobbra váltogat a lapok közt.
    ALT SHIFT / A jelenlegi lapot mozgatja balra/jobbra.
    ALT + / -Növeli illetve csökkenti a betűméretet.
    ALT ENTERTeljesképernyős mód váltása.
    SHIFT / A Terminálban lévő kimenet görgetése soronként.
    SHIFT Page↑ / Page↓A Terminálban lévő kimenet görgetése oldalanként.
    TABTab-kiegészítés. Miután leütöttünk néhány karaktert, nyomjuk le egyszer a TAB-ot, hogy automatikusan kiegészítse a fájl vagy útvonal nevét. Ha egynél több egyezést talál, akkor a kiegészítés ott megáll, amíg nem ütünk le újabb karaktereket a további szűréshez. Arra is lehetőségünk van, hogy kétszer üssük le a TAB-ot, így megkapjuk az összes egyezést.
    / A parancsok előzményei között váltogathatunk.
    CTRL RBash előzmények. Minden kiadott parancs a ~/.bash_history fájlban van eltárolva. Nyomjuk le a CTRL R kombinációt, majd kezdjük el beírni a keresett parancsot addig, amíg az első taálat meg nem jelenik. Tartsuk lenyomva a CTRL R-t mindaddig, amíg meg nem találjuk a megfelelő parancsot, majd üssük le az ENTER-t a futtatáshoz.
    CTRL CAz aktuális parancs megszakítása.
    CTRL DA jelenlegi Terminál bezárása.
    + +

    +index +További kombinációk

    +

    Lehetőségünk van arra, hogy a kijelöléshez hozzáadjunk új elemeket vagy töröljünk meglévőt egy módosító billentyű lenyomásával egy elemen (vagy például egy fájlon a Nyomkövetőben).

    + + + +
    SHIFTMinden elem kijelölése az első kijelöléstől az utolsóig.
    ALTHozzáad egy elemet a kijelöléshez vagy töröl egy elemet onnan.
    +

    A Nyomkövető ablakban csak el kell kezdeni gépelni, majd a Nyomkövető az első találathoz ugrik. Ha nincs olyan bejegyzés (fájl) az ablakban, ami a beírt karakterekkel kezdődik, akkor arra a találatra fog ugrani, aminek a nevében, vagy az egyik megjelenített jellemzőjében megtalálható az, amit keresünk. Ez a keresés nem kisbetű/nagybetű érzékeny.
    +A beírt karakterek az ablak bal alsó sarkában jelennek meg (ahol normál esetben az elemek számát jelöli). Egy másodperc múlva visszaáll a normál állapotra, és új keresést kezdeményezhetünk.
    +Azzal szemben, hogy a fájlra ugrik az első találatkor, a Nyomkövető ki is tudja szűrni a nem egyezőket. További információk a Gépelés közbeni szűrés fejezetben.

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/preferences.html b/docs/userguide/hu/preferences.html new file mode 100644 index 0000000000..f941c9b629 --- /dev/null +++ b/docs/userguide/hu/preferences.html @@ -0,0 +1,117 @@ + + + + + + + + + Beállítások + + + + + + + + +
    +
    + +

    Beállítások

    + +

    Bár a Haiku filozófiája az, hogy minden különféle konfigurálás nélkül működjön, néha mégis szükség van az egyéni beállításokra. Az összes beállítás megtalálható az Asztalsáv Beállítások menüjében.

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    iconMegjelenés A grafikus felület tulajdonságainak módosítása.
    iconHáttér Az asztal vagy a mappák színe illetve háttere.
    iconÉrtelmezők A támogatott adat-formátumok.
    iconAsztalsáv Asztalsáv beállítása.
    iconE-mail E-mail fiókok megadása.
    iconFájltípusok Fájltípusok hozzáadása, törlése, beállítása.
    iconBillentyűzet A billentyűzet ismétlése és késleltetése.
    iconBillentyűzetkiosztás A billentyűzetkiosztás megadása.
    iconNyelv Megjelenési nyelv és formátum beállítása.
    iconMédia Hang- és videóvezérlők megadása, és a hangerőszabályzó.
    iconEgér Az egér tulajdonságainak módosítása.
    iconHálózat Hálózat beállítása.
    iconNyomtatók Nyomtatók hozzáadása, törlése.
    iconKépernyő A képernyő felbontása, a színek, a frekvencia és a munkaasztalok számának megadása.
    iconKépernyővédő Képernyővédő hozzáadása, törlése, beállítása.
    iconHangok Hangok rendelése a különféle rendszer-eseményekhez.
    iconDátum és idő Idő, dátum és az időzóna beállítása.
    iconNyomkövető A Haiku fájlkezelőjének beállítása.
    iconÉrintőtábla Az érintőtábla ("tapipad") konfigurálása.
    iconVirtuális memória A virtuális memória méretének megadása.
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/preferences/appearance.html b/docs/userguide/hu/preferences/appearance.html new file mode 100644 index 0000000000..1eecc31c45 --- /dev/null +++ b/docs/userguide/hu/preferences/appearance.html @@ -0,0 +1,139 @@ + + + + + + + + + Megjelenés + + + + + + + + +
    +
    + +

    appearance-icon_64.pngMegjelenés (Appearance)

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/Appearance
    Beállítások:~/config/settings/system/app_server/appearance
    +~/config/settings/system/app_server/decorator_settings
    +~/config/settings/system/app_server/fonts
    +

    A Haiku megjelenési beállításait szabhatjuk személyre ezen a felületen.

    + +

    +index +Betűtípusok

    +appearance-fonts.png +

    A Haiku 3 szabványos betűtípust támogat. Beállítható az alap, a félkövér és a rögzített szélességű betűtípusok és a méreteik, amit a rendszer használ. Ezeken kívül pedig a menüben használt betűtípus is megadható.

    + +

    +index +Új betűtípusok telepítése

    +

    Új betűtípusok esetében azokat csak be kell másolni a megfelelő mappába (/boot/common/data/fonts/ vagy /boot/home/config/data/fonts/) (további információk a Fájlrendszer szerkezete fejezetben).

    + +

    +index +Színek

    +appearance-colors.png +

    A Színek fülön a felület különféle részeinek a színei módosíthatóak. A színek megadhatóak úgy is, ha egy palettából (például a WonderBrush-ból vagy az Icon-O-Matic-ból) dobjuk ide a megfelelő színt.

    + +

    +index +Megjelenés

    +appearance-decorators.png +

    A dekorációk az ablak és a vezérlőelemek megjelenésének megadásra szolgálnak. Jelenleg a Haiku csak egy dekorációval rendelkezik. Több dekoráció esetében a listából tudjuk kiválasztani a szükségeset.
    A dupla nyíl pedig azt jelenti, hogy a görgetősáv mind a két végén dupla nyíl található. A dupla nyíl mink a két irányú görgető-nyilat tartalmazza.

    + +

    +index +Élsimítás

    +appearance-antialiasing.png +

    Az Élsimítás fülön a megjelenítési módot szabályozhatjuk.

    + +

    +index +Betűképek körvonala

    +

    A Betűképek körvonala bekapcsolásakor a karakterek igazítása két képpont közt történik függőlegesen és vízszintesen a karakter vonalainak éléhez képes. Ez tökéletes kontrasztot eredményez épp úgy, mint a fekete a fehéren. A szöveg így élesebben jelenik meg. A rögzített szélességű betűknek van egy külön beállítása, ami különösen az alacsony felbontású eszközök esetében lehet segítség. A kisebb méretű betűk a betűképek körvonalának bekapcsolásakor elég rosszul néznek ki, de ezt a beállítást kihasználhatjuk a szöveg szerkesztőknél vagy a Terminálnál.

    +

    Lássuk most a különbséget a körvonalak használatára a nagyított képen:

    + + +
    appearance-glyph-off.png
    Körvonal: ki
    appearance-glyph-on.png
    Körvonal: be
    +

    Azt azért meg kell jegyezni, hogy a Nagyító ablakok ezen az oldalon két különféle beállításokkal lettek létrehozva. Leginkább akkor látjuk a különbséget, amikor a fenti két képen megnézzük akár a sárga fülön a címet, akár az alatta lévő szöveget.

    + +

    +index +Élsimítás típusa

    +

    Egy másik technika a megjelenítés javítására az Élsimítás, amit mind a vektoros grafikák mind pedig a szöveg esetében használhatunk. Ez elmossa a vonalakat úgy, hogy néhány képpont színét módosítja. Ezt kétféleképpen teheti meg:

    +

    A Szürkeárnyalat az élek intenzitását módosítja.
    +Az LCD-szubpixel ettől jobb munkát végez, különösen (nagy felbontású) LCD monitorok esetében. Az intenzitás helyett a képpont színét módosítja az élek mentén mozogva, mert az LCD monitorok minden képpontot a piros, zöld és kék színekből állítanak össze.

    +

    Szintén két példa a különböző megjelenésre:

    + + +
    appearance-glyph-off.png
    Szürkeányalat, körvonal: ki
    appearance-subpixel.png
    LCD-szubpixel, körvonal: ki
    +

    A szubpixeles élsimítás színes fényt ad az objektumoknak, amit nem mindenki tolerál. Ezért a Haiku mind a két élsimítási módot tudja egyszerre használni, mindenki megtalálhatja a megfelelő kombinációt a csuszka mozgatásával.

    +
    A szubpixel alapú élsimítás és a betűképek körvonalának kombinációja szabadalom alatt áll, ezért alap esetben nem engedélyezett. Attól függően, hogy a Föld mely részén élsz, olyan verzióval is rendelkezhetsz, aminél ez engedélyezve van. Ezért elnézést kérünk. Beszélj a helyi képviselőddel.
    +

    Ha a körvonalakat az LCD szubpixelel együtt használod a forráskód módosításával és újrafordításával, akkor ezt kapod eredményül a szürkeárnyalatossal összehasonlítva:

    + + +
    appearance-glyph-on.png
    Szürkeárnyalat, körvonal: be
    appearance-glyph-on-subpixel.png
    LCD-szubpixel, körvonal: be
    +


    +

    A panel alján két gombot találhatunk:

    + + + +
    Eredeti Az eredeti beállítások megadása.
    Visszaállít A panel megnyitásakori állapot vsszaállítása.
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/preferences/backgrounds.html b/docs/userguide/hu/preferences/backgrounds.html new file mode 100644 index 0000000000..1c78c2978a --- /dev/null +++ b/docs/userguide/hu/preferences/backgrounds.html @@ -0,0 +1,96 @@ + + + + + + + + + Hátterek + + + + + + + + +
    +
    + +

    backgrounds-icon_64.pngHátterek (Backgrounds)

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/Backgrounds
    Beállítások:~/config/settings/system/app_server/workspaces
    +~/config/settings/Backgrounds settings - az ablak pozícióját tartalmazza
    +

    A munkaasztalok illetve mappák háttérszínét vagy a háttérképét módosíthatjuk.

    +


    +backgrounds.png +

    A felső menüben kiválaszthatjuk, hogy az aktuális munkaasztalra, az összes munkaasztalra, a megadott mappára vagy az összes új mappára legyenek érvényesek a beállítások.

    +

    Az alatta lévő menüben megadható maga a háttérkép, vagy válasszuk a Nincs opciót, ha egyszerűen csak egy színt szeretnénk használni. A képet egyszerűen bele is dobhatjuk az előnézeti ablakba.

    +

    Háttérkép esetén a kép elhelyezkedését is megadhatjuk:

    + + + + + +
    Kézi elhelyezés Saját magunk adjuk meg a kép pozícióját. A kép a bal oldali kis képernyőn is mozgatható, vagy megadhatjuk a pontos X és Y pozíciót.
    Középre A kép a képernyő közepén jelenik meg.
    Kitöltés A képet a képernyő méretére méretezve tölti ki a háttérben. A méretarány nem feltétlenül marad meg.
    Sorminta A kép ismétlésével tölti ki a hátteret.
    +

    Az Ikonfelirat körvonalat bejelölve vékony körvonal kerül az ikonok feliratának köré.

    +

    Az ikon felirat szövege fekete vagy fehér színű a kiválasztott háttérszín függvényében. A sötétebb színek esetén fehér, a világosabb színek esetén fekete lesz. Tehát, ha nagyon fényes/világos háttérképet választunk, akkor a háttér színét is állítsuk világosra, hogy az ikonok felirata olvasható legyen. (Vagy egyszerűen csak jelöljük be a jelölőnégyzetet.)
    +A kiválasztott szín a Munkaasztalokon is megjelenik, azonban a háttérkép nem.

    + + + +
    Visszaállít A panel megnyitásakori állapot vsszaállítása.
    Alkalmaz A beállítások véglegesítése.
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/preferences/datatranslations.html b/docs/userguide/hu/preferences/datatranslations.html new file mode 100644 index 0000000000..751a1ad0e6 --- /dev/null +++ b/docs/userguide/hu/preferences/datatranslations.html @@ -0,0 +1,105 @@ + + + + + + + + + Értelmezők + + + + + + + + +
    +
    + +

    datatranslations-icon_64.pngÉrtelmezők (DataTranslations)

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/DataTranslations
    Beállítások:~/config/settings/* - minden értelmező ide menti a módosított beállításait
    +~/config/settings/system/DataTranslations settings - az ablak pozícióját tartalmazza
    +

    Minden program lehetőséget nyújt arra, hogy bármilyen formátumot megnyisson, illetve elmentsen, amihez rendelkezünk értelmezővel. Az értelemzők tulajdonságai, beállításai ezen a felületen módosíthatóak.

    +


    +datatranslations.png +

    A formátumoktól függően minden értelmező egyedi beállításokkal rendelkezik. Ezen kívül az Információk gombot lenyomva jogi illetve elérhetőségi információkat is kaphatunk.
    +Az alábbi táblázat összefoglalja az alapértelmezett értelmezőket és a leggyakoribb opcióit.

    + + + + + + + + + + + + + + + + +
    BMP kép24 bites, tömörítetlen, áttetszőség nem támogatott
    EXR képILM nagy dinamikus tartományú (HDR) formátum
    GIF kép8 bites, veszteséges tömörítés, áttetszőség támogatása
    +A fájl mérete csökkenthető a színek számának korlátozásával.
    +Készíthetünk áttesztő képeket is: ekkor vagy automatikusan az alfa csatorna lesz használva, vagy manuálisan is megadható az RGB színkód, mint áttesztő szín.
    JPEG2000 kép24 bites, tömörített, áttetszőség nem támogatott
    +Csak a kimenet minőségére kell figyelni.
    JPEG kép24 bites, tömörített, áttetszőség nem támogatott
    +A kimeneten lehet finomítani, viszont ekkor a kép elmosódhat.
    PCX kép24 bites, tömörítetlen, áttetszőség nem támogatott, PC Paintbrush Exchange formátum
    PNG kép32 bites, veszteségmentes tömörítés, áttetszőség támogatása
    PPM kép24 bites, tömörítetlen, áttetszőség nem támogatott, Portable PixMap formátum
    RAW (nyers) képmaximum 48 bites, tömörítetlen, áttetszőség nem támogatott
    RTF szövegFormázott szöveg
    SGI kép24 bites, veszteségmentes tömörítés támogatása, áttetszőség támogatása
    StyledEdit szövegFormázott szöveg
    TGA kép32 bites, veszteségmentes tömörítés támogatása, áttetszőség támogatása
    TIFF kép24 bites, veszteségmentes tömörítés támogatása, rétegek támogatása, áttetszőség támogatása
    WonderBrush kép32 bites, rétegek támogatása, áttetszőség támogatása, vektoros/képpontos adat
    +


    +
    Képernyőképek, grafikonok, fekete és fehér képek illetve olyan képek, amik csupán néhány színt tartalmaznak vagy kis méretű képek esetében ajánlott GIF-ként (maximum 256 szín) vagy PNG-ként (több millió szín) elmenteni. JPEG esetében tömörítési hibák is előfordul(hat)nak, de a kép mérete kisebb lesz.
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/preferences/deskbar.html b/docs/userguide/hu/preferences/deskbar.html new file mode 100644 index 0000000000..f61e6e0fb9 --- /dev/null +++ b/docs/userguide/hu/preferences/deskbar.html @@ -0,0 +1,81 @@ + + + + + + + + + Asztalsáv (Deskbar) + + + + + + + + +
    +
    + +

    deskbar-icon_64.pngAsztalsáv (Deskbar)

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/Deskbar
    Beállítások:~/config/settings/Deskbar_settings
    +~/config/settings/Deskbar_security_code
    +


    +

    Az Asztalsáv beállításai magából az Asztalsávból is elérhetőek. További információk az Asztalsáv fejezetben.

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/preferences/e-mail.html b/docs/userguide/hu/preferences/e-mail.html new file mode 100644 index 0000000000..8cfac46ec8 --- /dev/null +++ b/docs/userguide/hu/preferences/e-mail.html @@ -0,0 +1,235 @@ + + + + + + + + + E-mail + + + + + + + + +
    +
    + + + + +
    Index
    + E-mail fiók létrehozása
    + Fiók beállításai
    + Bejövő levelek beállítása
    + Kimenő levelek beállítása
    + Figyelmeztetések és szűrők
    + Levelező-rendszer beállítása +
    + +

    e-mail-icon_64.pngE-mail

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/E-mail
    Beállítások:~/config/settings/Mail/*
    +

    A Haiku rendelkezik egy levelező rendszerrel (mail_daemon-ként is ismert), ami megadott időközönként letölti a leveleket, és egyenként elmenti egy szöveges fájlba. Letöltéskor a program a levél alapján beállítja annak jellemzőit, például a feladót, címzettet, tárgyat, stb., amelyekre ezután már lekérdezést is készíthetünk. Ezzel a megoldással könnyen válthatunk a levelező programok között, ugyanis az adatok és a beállítások ugyan azok maradnak.
    +A konfigurálást az E-Mail beállítások panelen hatjhatjuk végre.

    + +

    +index +E-mail fiók létrehozása

    +

    Nézzük végig a felhasználói fiók beállításának lépéset.
    +A Hozzáadás gomb megnyomásával létrehozunk egy új, üres fiókot. Ekkor megnyílik egy panel, ahol a hozzáférési adatokat kell megadnunk:

    +e-mail-new-account.png +

    Elsőként válasszuk ki, hogy hogyan akarjuk a leveleinket letölteni: POP3 vagy IMAP protokol használatával.

    +

    Ezután meg kell adnunk az E-mail címet, a felhasználói nevet és jelszót, a fiók elnevezését és az Ön valódi nevét.

    +

    Ha az e-mail címed egy ismert szolgáltatónál van, akkor a Haiku ismeri annak technikai adatait, mint például a kiszolgáló IP-címét. Egyéb esetben, kattintsunk a Következő gombra, ahol megadhatjuk ezeket az adatokat:

    +e-mail-new-account-2.png +

    Elsőként adjuk meg a kiszolgáló nevét, a bejelentkezés és a biztonság típusát mind a bejövő, mind pedig a kimenő levelek esetében. A szükséges információk megtalálhatóak a szolgálató oldalán.
    +Alább további információkat kaphatunk a különféle beállításokról és opciókról.

    + +

    +index +Fiók beállításai

    +

    A bal oldalon a fiók nevének kiválasztásakor néhány alap beállítás módosíható:

    +e-mail-accounts.png +

    A Fiók neve egy elnevezés, ami megjelenik például az e-mail beállításoknál, illetve az értesítés-ablakokban. A Valódi név az, ami majd mint feladó jelenik meg a címzett levelezőprogramjában. A Válasz cím pedig az az e-mail cím, amire az Ön által küldött levélre válaszoláskor megszeretné azt kapni. Ez általában megegyezik azzal a címmel, amiről küldi a levelet.

    +

    Ha az e-mail fiókot csak küldésre vagy fogadásra szeretné használni, akkor a fiók nevén jobb gombbal kattintva ki- illetve bekapcsolhatja a megfelelő funkciót.

    + +

    +index +Bejövő levelek beállítása

    +

    Kattintson a Bejövő listaelemre az e-mial fiók neve alatt a bejövő levelek beállításához.

    +e-mail-in.png +

    Az első beállítás a Kiszolgáló, ahonnan a bejövő leveleket fogadja. Ha a szolgáltató egyéni portot használ, akkor azt is meg kell adni a kiszolgáló neve után kettősponttal elválasztva. Például: mail.szolgaltato.hu:1400.

    +

    Ezután a hozzáférési információkat adhatjuk meg: a Felhasználót és a Jelszót, és szükség esetén a Bejelentkezés típusát is módosíthatjuk, ami lehet Sima szöveg illetve APOP.

    +

    POP3 használatakor, ha több számítógépen is letöltjük a leveleinket, akkor ajánlott bejelölni a Levelek meghagyása a kiszolgálón, és a Levelek törlése a kiszolgálóról is opciót.

    +

    IMAP esetében pedig, ajánlott bejelölni a Levelek törlése a kiszolgálóról is opciót. Továbbá, megadhatja az IMAP mappákat, hogy csak az adott mappákat és almappákat szinkronizálja.

    +

    Arra is van lehetőségünk, hogy megadjuk a Letöltési mérethatárt. Ha a levél mérete nagyobb a megadottnál, akkor csak a levél fejléce töltődik le, majd eldöntheti, hogy letölti-e a levél többi részét vagy sem. FIGYELEM: jelenleg ha lassú az internetünk, akkor ezt az opciót ki kell kapcsolni, mert külünben a levélnek csak a fejléce fog letöltődni.

    +

    A bejövő levelek mappájának Útvonala is módosítható (alapértelemzett: /boot/home/mail/in/), ami hasznos lehet, ha több fiókkal is rendelkezünk, és mindegyik levelet külön akarjuk tárolni. Ugyanakkor a lekérdezések használatával is hasonló eredményt kaphatunk.

    + + +

    +index +Kimenő levelek beállítása

    +

    A Kimenő listaelemre kattintva a levélküldési beállításokat adhatjuk meg.

    +e-mail-out.png +

    Elsőként a Kiszolgáló címét adjuk meg. Mint a bejövő leveleknél, itt is megadható a port. Például: mail.szolgaltato.hu:1200.

    +

    Ha szükséges bejelentkezni a küldés előtt, akkor válasszuk ki a Bejelentkezés típusa listából az ESMTP)-t, majd adjuk meg a felhasználói nevünket és a jelszavunkat is. A másik lehetőség az, amikor a szolgáltató azonosítás céljából az új levelek ellenőrzését kéri küldés előtt: POP3 az SMTP előtt.

    +

    Itt is szintén megadhatjuk az Útvonalát az elküldött levelek mappájának (alapértelmezett: /boot/home/mail/out/).

    + +

    +index +Figyelmeztetések és szűrők

    +

    Az új levelekhez figyelmeztetéseket és szűrőket is állíthatunk be az E-Mail szűrők listaelemre kattitnva. Több szűrő is hozzáadható a listához, amiknek a sorrendje határozza meg a kiválasztott műveletek végrehatását. A sorrend pedig a listában lévő szűrők mozgatásával módosítható.
    +Jelenleg három Bejövő levél szűrő áll a rendelkezésünkre. Miután a szűrőt hozzáadjuk a listához, jelöljük ki azt hogy meg tudjuk adni a hozzá tartozó beállításokat.

    + +

    +index +Kéretlen levél szűrő (AGMS Bayesian)

    +e-mail-filter-spam.png +

    A kéretlen levelek szűrése sztatisztikai alapon osztályozza a leveleket. Minden esetben egy 0 és 1 közötti értéket rendel a levelekhez, majd eldönthetjük, hogy mekkora értéktől jelölje a levelet kéretlennek.
    +Ezt az értéket hozzáfűzhetjük a levél címéhez is.
    A levél szűrő tanulni is képes minden bejövő levélből. Természetesen nekünk kell megtanítanunk a programnak, hogy mely levelek azok, melyek hibásan lettek kéretlennek jelölve. További információk a Levelezés leírásánál.

    +

    A Szabály szűrővel együtt automatikusan kigyomlálhatjuk a kéretlen leveleket.

    + +

    +index +Szabály szűrő

    +e-mail-filter-header.png +

    Ez a szűrő a levél fejlécét hasonlítja össze a megadott feltétellel, és végrehajtja a megadott műveletet is.
    +Az első oszlopban lévő mezőket ellenőrizheti a szűrő. Érvényes mezőnevek:

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Name A feladó neve.
    From A feladó e-mail címe.
    To A címzett e-mail címe.
    Reply to A levélben megadott válasz-cím.
    When A levél fogadásának ideje.
    Subject A levél tárgya.
    Cc Azok a címek, akik másolatot kaptak a levélből.
    Account Fiók neve.
    Status A levél aktuális állapota. Alap esetben ez lehet: "Read" (olvasott), "Replied" (megválaszolt), "Sent" (elküldött), "Forwarded" (továbbított), "New" (új), vagy bármi, amit Te határoztál meg. Ugyanakkor amíg meg nem változtatod azt, a levelező rendszer újnak jelöl minden beérkezett levelet.
    Priority Fontosság (például: "urgent" (sürgős)).
    Thread Lényegében ugyan az, mint a "Subject" (tárgy), de a jelölések nélkül: például Re: vagy Fwd:.
    Classification group Az alapján, hogy a kéretlen levél szűrő miként sorolta be, lehet üres (nem besorolt) vagy tartalmazhatja a "Genuine" (valós) illtve "Spam" (kérelten) jelzőt.
    Spam/Genuine estimate Ez egy olyan szám, amit a kéretlen levél szűrő állapított meg a levélhez. Ez a szám tudományos formában jelenik meg, ahol a 1.065e-12 az jelenti, hogy a 1.065 osztva 10 a tizenkettedikennel, ami ebben az esetben 0.000000000001065.
    +

    A második beviteli mező tartalmazza a keresendő mintát. Itt megadhatunk általános kifejezéseket, melyek remekül variálhatóak, de sajnos sokszor nagyon is túlbonyolíthatóak. Kicsit utána olvasva rájön, hogy nem is olyan bonyolult a keresési minták használata.

    +

    Az előugró menüből megadhatunk egy műveletet, amit a rendszer végrehajt a minta egyezésekor. Elmozgathatjuk vagy törölhetjük a levelet, "Olvasott"-nak vagy más állapotúnak jelölhetjük, vagy beállíthatjuk, hogy melyik fiókból fogunk válaszolni rá.

    + +

    +index +Figyelemztetés új levelek érkezésekor

    +e-mail-filter-notification.png +

    Több módon is kaphatunk értesítést új levelek érkezésekor. A Művelet menüben több, kombinálható lehetőség közül is válaszhatunk:

    + + + + + + + + + + + + + + + +
    nincs Nincs figyelmeztetés.
    hangjelzés Lejátsza azt a hangot, ami az "Új E-mail" eseményhez lett beállítva a Hangok beállításánál minden egyes levél érkezésekor.
    jelzés Egy üzenet-ablakot jelenít meg minden egyes új levél érkezésekor.
    billentyűzet-villogás A nagy betűk (Caps Lock) LED villogtatása.
    központi jelzés Egy üzenet-ablakot jelenít meg mindig, amikor levél érkezik.
    központi hangjelzés Lejátsza azt a hangot, ami az "Új E-mail" eseményhez lett beállítva a Hangok beállításánál, de csak egyszer, amikor levél érkezik.
    napló ablak A naplóablak megjelenítése.
    + +

    +index +Kimenő levelek szűrője

    +

    Jelenleg csak egy szűrő áll rendelkezésre a kimenő levelek esetében: fortune. +
    Ezzel a levél elküldése előtt véletlenszerűen egy vicces "szerecse sütit" csatolhatunk hozzá. Akár ki is próbálhatod, ha a Terminálban kiadod a fortune parancsot.

    + +

    +index +Levelező-rendszer beállítása

    +

    A bejövő és kimenő kiszolgálók és a szűrők beállítása után most lássuk, hogy a levelező rendszer milyen beállításokkal rendelkezik.

    +e-mail-settings.png +

    A Levelek ellenőrzése részben beállíthatjuk, hogy milyen gyakorisággal ellenőrizze az új leveleket.
    +Ha betárcsázós internettel rendelkezünk, ajánlott bejelölni a Csak mikor az internet elérhető és a Kimenő levelek küldése internetre csatlakozáskor jelölőnégyzetet az állandó ellenőrzés elkerülése érdekében.

    +

    A levelező rendszer rendelkezik egy állapot ablakkal, ami megadható, hogy mikor jelenjen meg: Soha, Küldés közben, Küldéskor / fogadáskor vagy Mindig.

    +

    Győződjünk meg arról is, hogy az Automatikus indítás be legyen jelölve, ugyanis csak akkor fogja tudni használni a levelező rendszer szolgáltatásaikat.

    +e-mail-mailbox.png +

    A Postafiókmenü szerkesztése… megnyitja a /boot/home/config/Mail/Menu Links/ mappát. Minden mappa és lekérdezés(!) vagy azok hivatkozása, ami ebben a mappában szerepel, az megjelenik a postaláda ikon helyi menüjében a Polcon az Asztalsávon.

    +

    A menüből ezen kívül az alábbiakat is elérjük: Új üzenet..., Üzenetek ellenőrzése most és Beállítások....

    +

    A SHIFT lenyomva tartásával a menü megnyitásakor további funkciók is elérhetőek:

    + + + + + + + +
    Csak a levelek lekérdezése Egy almenüt kapunk, ahol egy fiók új leveleit ellenőrizhetjük le.
    Függőben lévő levelek küldése A még el nem küldött leveleket küldi el, de nem keres új leveleket.
    Levelezés szolgáltatásainak leállítása A teljes levelező rendszer (mail_daemon) leállítása.
    +

    Maga a postaláda ikonja is jelzi az új leveleket: az ikon megváltozik egy levéllel teli postaládára.

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/preferences/filetypes.html b/docs/userguide/hu/preferences/filetypes.html new file mode 100644 index 0000000000..9dded799a0 --- /dev/null +++ b/docs/userguide/hu/preferences/filetypes.html @@ -0,0 +1,79 @@ + + + + + + + + + Fájltípusok + + + + + + + + +
    +
    + +

    filetypes-icon_64.pngFájltípusok (FileTypes)

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/FileTypes
    Beállítások:~/config/settings/FileTypes settings
    +~/config/settings/beos_mime/* - az összes MIME típust mappaként tárolja
    +

    További információkat találsz a Fájltípusok és a Fájltípusok, Kiegészítő információk, Index-ek és lekérdezések fejezetben.

    + +
    +
    + + + + diff --git a/docs/userguide/hu/preferences/fonts.html b/docs/userguide/hu/preferences/fonts.html new file mode 100644 index 0000000000..7f68524352 --- /dev/null +++ b/docs/userguide/hu/preferences/fonts.html @@ -0,0 +1,91 @@ + + + + + + + + + Betűtípusok + + + + + + + + +
    +
    + +

    Since "Fonts" moved into the Appearance panel, this is an outdated page. Do not translate!

    + +

    fonts-icon_64.pngBetűtípusok

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/Fonts
    Beállítások:~/config/settings/system/app_server/fonts
    +~/config/settings/Font_settings - az ablak pozícióját tartalmazza
    +


    +fonts.png +

    A Haiku 3 szabványos betűtípust támogat. Beállítható az alap, a félkövér és a rögzített szélességű betűtípusok és a méreteik, amit a rendszer használ. Ezeken kívül pedig a menüben használt betűtípus is megadható.

    + + + +
    Eredeti Az eredeti beállítások megadása.
    Visszaállít Az ablak megnyitásakori beállítások visszaállítása.
    + +

    +index +Új betűtípusok telepítése

    +

    Új betűtípusok esetében azokat csak be kell másolni a megfelelő mappába (/boot/common/data/fonts/ vagy /boot/home/config/data/fonts/) (további információk a Fájlrendszer szerkezete fejezetben).

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/preferences/keyboard.html b/docs/userguide/hu/preferences/keyboard.html new file mode 100644 index 0000000000..0ff67e941f --- /dev/null +++ b/docs/userguide/hu/preferences/keyboard.html @@ -0,0 +1,85 @@ + + + + + + + + + Billentyűzet + + + + + + + + +
    +
    + +

    keyboard-icon_64.pngBillentyűzet (Keyboard)

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/Keyboard
    Beállítások:~/config/settings/Keyboard_settings
    +


    +keyboard.png +

    Megadható az ismétlési gyakoriság illetve a két billentyű leütése közötti késleltetés. A módosításokat az alsó részen lehet kipróbálni.

    + + + +
    Eredeti Az eredeti beállítások megadása.
    Visszaállít Az ablak megnyitásakori beállítások.
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/preferences/keymap.html b/docs/userguide/hu/preferences/keymap.html new file mode 100644 index 0000000000..4912d16fcc --- /dev/null +++ b/docs/userguide/hu/preferences/keymap.html @@ -0,0 +1,384 @@ + + + + + + + + + Billentyűzetkiosztás + + + + + + + + +
    +
    + +

    keymap-icon_64.pngBillentyűzetkiosztás (Keymap)

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/Keymap
    Beállítások:~/config/settings/Keymap/* - módosított kiosztások helye
    +~/config/settings/Key_map
    +


    +keymap.png +

    A jobb oldalon az billentyűzetednek megfelelője látható. Minden billentyű leütésekor a fenti billentyűzeten is megjelenik az, és az adott karakter az alatta lévő Próba és vágólap mezőbe kerül. Innen pedig kimásolhatóak a vágólapra, majd onnan bárhová beilleszthetők.
    +A panel nem csupán a kiosztás beállítására használható, hanem a speciális karaktereket is könnyedén megtalálhatjuk a billentyűzeten. Például, ha "Francia" kiosztást választunk, akkor megkereshetjük a "ç" karaktert, majd egy levélbe másolhatjuk azt: François. (Ugyanakkor más kiosztásnál is megtalálhatjuk a "cedil" karaktert...)

    +

    A módosító billentyűk leütésekor, mint például SHIFT, CONTROL vagy OPTION a megjelenített billentyűzetet azonnal megváltoztatja.

    +

    Ekkor kék színnel is jelennek meg billentyűk. Ezek a Beragadó billentyűk, ami módosíthatja a leütés után a billentyűt. Ha az egérrel kattintunk a kék billentyűn, akkor sárga színnel jelölve megjelennek a módosítható billentyűk. Újra kattintás után minden visszaáll normális kiosztásra. Például ilyen billentyűk az é, az ñ, az ó vagy az ë.

    +

    A billentyűzet alatt további két opció található:

    + + + +
    Beragadó gombok kiválasztása A fennt említett kék billentyűk megadása.
    Billentyűkombináció váltása... A billentyűzet-kombinációk Windows/Linux szerűen, például CONTROL (általában CTRL) vagy Haiku szerűen, például COMMAND (általában ALT).
    +

    A bal oldalon található listában az előre deffiniált, illetve ha már vannak, akkor az egyéni kiosztások találhatóak. A virtuális billentyűzeten a gombokat módosíthatjuk is. Ekkor a bal egérgombbal a billentyű mozgatható, míg a jobb gombbal kicserélhető két billentyű.
    +Ha elkészültünk, akkor a Fájl | Mentés... menüvel el is tárolhatjuk azt. Ezután a kiosztás megjelenik az egyéni listában, és a ~/config/settings/Keymap/ mappában. Egyéb esetben pedig a Fájl | Megnyitás... menüvel tölthető be.

    +

    A pontosabb megjelenítés érdekében, hogy a virtuális billentyűzet jobban hasonlítson a valós billentyűzetre, a Elrendezés menüből néhány billentyűzett-típus közül választhatunk.

    +

    A virtuális billentyűzeten használt betűtípus módosítható a Betűtípus menüből.

    +

    Végül pedig a Visszavon gomb az összes beállítást az indításkori állapotra állít vissza.

    + +

    +index +Komolyabb kiosztás-módosítás

    +

    Van egy másik módja is a kiosztás személyre szabásának. Ekkor szöveges fájlként szerkeszthetjük a billentyűk hexadecimális kódjait.

    +

    A jelenlegi kiosztást elmenthetjük az alábbi parancs segítségével a Teminálban:

    +
    keymap -d > MyKeymap
    +

    Az elkészült szöveges fájl bármely szövegszerkesztőben megnyitható. Győződjünk meg arról, hogy rögzített betűtípust használunk, így biztosan nem fogjuk eltéveszteni a fájlban tárolt adatokat.
    +A fájl elején egy kis magyarázat található a stilizált billentyűzetre a hexadecimális értékekkel együtt. Ez alatt az aktuális társítások találhatóak minden értékhez. Ugyan azokat a módosításokat érhetjük el itt is, mint a beállítások panelen, talán még kicsit többet is. Ha a billentyűzetén néhány speciális szimbólum is található, akkor itt könnyen aktiválhatjuk azokat. Ezek egy külön billentyűként is vagy kombinációként is használhatóak. Arra azonban nincs lehetőség, hogy például a hangerőt növeljük vagy csökkentsük, illetve elindítsunk néhány programot. Erre használható például a Parancsgombok program.

    +

    Miután végeztünk, elmenthetjük és betölthetjük a módosításokat a következő parancs kiadásával:

    +
    keymap -s < MyKeymap
    +

    Ahhoz, hogy ezt a kiosztást betöltsük a Billentyűzetkiosztás panelba, előtte bináris formátumúvá kell azt alakítani:

    +
    keymap -c < MyKeymap
    +

    Ennek eredményeként egy keymap.out nevű fájl készül, amit már betölthetünk a beállítások panel Megnyitás... menüben. Ugyanakkor a parancssorból is megtehető ez a lépés: keymap -l < keymap.out

    +

    Ez egy példa a szöveges fájlra:

    + +
    #!/bin/keymap -s
    +#
    +#	Raw key numbering for 101 keyboard...
    +#                                                                                    
    +#                                                                                    
    +# [esc]       [ f1] [ f2] [ f3] [ f4] [ f5] [ f6] [ f7] [ f8] [ f9] [f10] [f11] [f12]
    +#  0x01        0x02  0x03  0x04  0x05  0x06  0x07  0x08  0x09  0x0a  0x0b  0x0c  0x0d
    +#
    +# [ ` ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 6 ] [ 7 ] [ 8 ] [ 9 ] [ 0 ] [ - ] [ = ] [bck]
    +#  0x11  0x12  0x13  0x14  0x15  0x16  0x17  0x18  0x19  0x1a  0x1b  0x1c  0x1d  0x1e
    +#
    +# [tab] [ q ] [ w ] [ e ] [ r ] [ t ] [ y ] [ u ] [ i ] [ o ] [ p ] [ [ ] [ ] ] [ \ ]
    +#  0x26  0x27  0x28  0x29  0x2a  0x2b  0x2c  0x2d  0x2e  0x2f  0x30  0x31  0x32  0x33
    +#
    +# [cap] [ a ] [ s ] [ d ] [ f ] [ g ] [ h ] [ j ] [ k ] [ l ] [ ; ] [ ' ] [  enter  ]
    +#  0x3b  0x3c  0x3d  0x3e  0x3f  0x40  0x41  0x42  0x43  0x44  0x45  0x46     0x47   
    +#
    +# [shift]     [ z ] [ x ] [ c ] [ v ] [ b ] [ n ] [ m ] [ , ] [ . ] [ / ]     [shift]
    +#   0x4b       0x4c  0x4d  0x4e  0x4f  0x50  0x51  0x52  0x53  0x54  0x55       0x56 
    +#
    +# [ctr]             [cmd]             [  space  ]             [cmd]             [ctr]
    +#  0x5c              0x5d                 0x5e                 0x5f              0x60
    +#
    +#	NOTE: On a Microsoft Natural Keyboard:
    +#			left option  = 0x66
    +#			right option = 0x67
    +#			menu key     = 0x68
    +#	NOTE: On an Apple Extended Keyboard:
    +#			left option  = 0x66
    +#			right option = 0x67
    +#			keypad '='   = 0x6a
    +#			power key    = 0x6b
    +Version = 3
    +CapsLock = 0x3b
    +ScrollLock = 0x0f
    +NumLock = 0x22
    +LShift = 0x4b
    +RShift = 0x56
    +LCommand = 0x5d
    +RCommand = 0x60
    +LControl = 0x5c
    +RControl = 0x00
    +LOption = 0x66
    +ROption = 0x5f
    +Menu = 0x68
    +#
    +# Lock settings
    +# To set NumLock, do the following:
    +#   LockSettings = NumLock
    +#
    +# To set everything, do the following:
    +#   LockSettings = CapsLock NumLock ScrollLock
    +#
    +LockSettings = 
    +# Legend:
    +#   n = Normal
    +#   s = Shift
    +#   c = Control
    +#   C = CapsLock
    +#   o = Option
    +# Key      n        s        c        o        os       C        Cs       Co       Cos     
    +Key 0x00 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x01 = 0x1b     0x1b     0x1b     0x1b     0x1b     0x1b     0x1b     0x1b     0x1b     
    +Key 0x02 = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x03 = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x04 = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x05 = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x06 = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x07 = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x08 = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x09 = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x0a = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x0b = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x0c = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x0d = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x0e = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x0f = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x10 = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x11 = '^'      0xc2b0   ''       ' '      ''       '^'      0xc2b0   ' '      ''       
    +Key 0x12 = '1'      '!'      ''       ' '      ''       '!'      '1'      ' '      ''       
    +Key 0x13 = '2'      '"'      ''       0xc2b2   ''       '"'      '2'      0xc2b2   ''       
    +Key 0x14 = '3'      0xc2a7   ''       0xc2b3   ''       0xc2a7   '3'      0xc2b3   ''       
    +Key 0x15 = '4'      '$'      ''       ' '      ''       '$'      '4'      ' '      ''       
    +Key 0x16 = '5'      '%'      ''       ' '      ''       '%'      '5'      ' '      ''       
    +Key 0x17 = '6'      '&'      ''       ' '      ''       '&'      '6'      ' '      ''       
    +Key 0x18 = '7'      '/'      ''       '{'      ''       '/'      '7'      '{'      ''       
    +Key 0x19 = '8'      '('      ''       '['      ''       '('      '8'      '['      ''       
    +Key 0x1a = '9'      ')'      ''       ']'      ''       ')'      '9'      ']'      ''       
    +Key 0x1b = '0'      '='      ''       '}'      ''       '='      '0'      '}'      ''       
    +Key 0x1c = 0xc39f   '?'      ''       '\\'     ''       '?'      0xc39f   '\\'     ''       
    +Key 0x1d = 0xc2b4   '`'      ''       ' '      ''       0xc2b4   '`'      ' '      ''       
    +Key 0x1e = 0x08     0x08     0x08     0x08     0x08     0x08     0x08     0x08     0x08     
    +Key 0x1f = 0x05     0x05     0x05     0x05     0x05     0x05     0x05     0x05     0x05     
    +Key 0x20 = 0x01     0x01     0x01     0x01     0x01     0x01     0x01     0x01     0x01     
    +Key 0x21 = 0x0b     0x0b     0x0b     0x0b     0x0b     0x0b     0x0b     0x0b     0x0b     
    +Key 0x22 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x23 = '/'      '/'      '/'      '/'      '/'      '/'      '/'      '/'      '/'      
    +Key 0x24 = '*'      '*'      '*'      '*'      '*'      '*'      '*'      '*'      '*'      
    +Key 0x25 = '-'      '-'      '-'      '-'      '-'      '-'      '-'      '-'      '-'      
    +Key 0x26 = 0x09     0x09     0x09     0x09     0x09     0x09     0x09     0x09     0x09     
    +Key 0x27 = 'q'      'Q'      0x11     '@'      ''       'Q'      'q'      '@'      ''       
    +Key 0x28 = 'w'      'W'      0x17     ' '      ''       'W'      'w'      ' '      ''       
    +Key 0x29 = 'e'      'E'      0x05     0xe282ac ''       'E'      'e'      0xe282ac ''       
    +Key 0x2a = 'r'      'R'      0x12     ' '      ''       'R'      'r'      ' '      ''       
    +Key 0x2b = 't'      'T'      0x14     ' '      ''       'T'      't'      ' '      ''       
    +Key 0x2c = 'z'      'Z'      0x1a     ' '      ''       'Z'      'z'      ' '      ''       
    +Key 0x2d = 'u'      'U'      0x15     ' '      ''       'U'      'u'      ' '      ''       
    +Key 0x2e = 'i'      'I'      0x09     ' '      ''       'I'      'i'      ' '      ''       
    +Key 0x2f = 'o'      'O'      0x0f     ' '      ''       'O'      'o'      ' '      ''       
    +Key 0x30 = 'p'      'P'      0x10     ' '      ''       'P'      'p'      ' '      ''       
    +Key 0x31 = 0xc3bc   0xc39c   0x1b     ' '      ''       0xc39c   0xc3bc   ' '      ''       
    +Key 0x32 = ' '      '*'      0x1d     '~'      ''       '*'      ' '      '~'      ''       
    +Key 0x33 = '#'      '\''     0x1c     ' '      ''       '\''     '#'      ' '      ''       
    +Key 0x34 = 0x7f     0x7f     0x7f     0x7f     0x7f     0x7f     0x7f     0x7f     0x7f     
    +Key 0x35 = 0x04     0x04     0x04     0x04     0x04     0x04     0x04     0x04     0x04     
    +Key 0x36 = 0x0c     0x0c     0x0c     0x0c     0x0c     0x0c     0x0c     0x0c     0x0c     
    +Key 0x37 = 0x01     '7'      0x01     0x01     '7'      0x01     '7'      0x01     '7'      
    +Key 0x38 = 0x1e     '8'      0x1e     0x1e     '8'      0x1e     '8'      0x1e     '8'      
    +Key 0x39 = 0x0b     '9'      0x0b     0x0b     '9'      0x0b     '9'      0x0b     '9'      
    +Key 0x3a = ' '      ' '      ' '      ' '      ' '      ' '      ' '      ' '      ' '      
    +Key 0x3b = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x3c = 'a'      'A'      0x01     ' '      ''       'A'      'a'      ' '      ''       
    +Key 0x3d = 's'      'S'      0x13     ' '      ''       'S'      's'      ' '      ''       
    +Key 0x3e = 'd'      'D'      0x04     ' '      ''       'D'      'd'      ' '      ''       
    +Key 0x3f = 'f'      'F'      0x06     ' '      ''       'F'      'f'      ' '      ''       
    +Key 0x40 = 'g'      'G'      0x07     ' '      ''       'G'      'g'      ' '      ''       
    +Key 0x41 = 'h'      'H'      0x08     ' '      ''       'H'      'h'      ' '      ''       
    +Key 0x42 = 'j'      'J'      0x0a     ' '      ''       'J'      'j'      ' '      ''       
    +Key 0x43 = 'k'      'K'      0x0b     ' '      ''       'K'      'k'      ' '      ''       
    +Key 0x44 = 'l'      'L'      0x0c     ' '      ''       'L'      'l'      ' '      ''       
    +Key 0x45 = 0xc3b6   0xc396   ''       ' '      ''       0xc396   0xc3b6   ' '      ''       
    +Key 0x46 = 0xc3a4   0xc384   ''       ' '      ''       0xc384   0xc3a4   ' '      ''       
    +Key 0x47 = 0x0a     0x0a     0x0a     0x0a     0x0a     0x0a     0x0a     0x0a     0x0a     
    +Key 0x48 = 0x1c     '4'      0x1c     0x1c     '4'      0x1c     '4'      0x1c     '4'      
    +Key 0x49 = ''       '5'      ''       ''       '5'      ''       '5'      ''       '5'      
    +Key 0x4a = 0x1d     '6'      0x1d     0x1d     '6'      0x1d     '6'      0x1d     '6'      
    +Key 0x4b = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x4c = 'y'      'Y'      0x19     ' '      ''       'Y'      'y'      ' '      ''       
    +Key 0x4d = 'x'      'X'      0x18     ' '      ''       'X'      'x'      ' '      ''       
    +Key 0x4e = 'c'      'C'      0x03     ' '      ''       'C'      'c'      ' '      ''       
    +Key 0x4f = 'v'      'V'      0x16     ' '      ''       'V'      'v'      ' '      ''       
    +Key 0x50 = 'b'      'B'      0x02     ' '      ''       'B'      'b'      ' '      ''       
    +Key 0x51 = 'n'      'N'      0x0e     ' '      ''       'N'      'n'      ' '      ''       
    +Key 0x52 = 'm'      'M'      0x0d     0xc2b5   ''       'M'      'm'      0xc2b5   ''       
    +Key 0x53 = ','      ';'      ','      ' '      ''       ';'      ','      ' '      ''       
    +Key 0x54 = '.'      ':'      '.'      ' '      ''       ':'      '.'      ' '      ''       
    +Key 0x55 = '-'      '_'      ''       ' '      ''       '-'      '_'      ' '      ''       
    +Key 0x56 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x57 = 0x1e     0x1e     0x1e     0x1e     0x1e     0x1e     0x1e     0x1e     0x1e     
    +Key 0x58 = 0x04     '1'      0x04     0x04     '1'      0x04     '1'      0x04     '1'      
    +Key 0x59 = 0x1f     '2'      0x1f     0x1f     '2'      0x1f     '2'      0x1f     '2'      
    +Key 0x5a = 0x0c     '3'      0x0c     0x0c     '3'      0x0c     '3'      0x0c     '3'      
    +Key 0x5b = 0x0a     0x0a     0x0a     0x0a     0x0a     0x0a     0x0a     0x0a     0x0a     
    +Key 0x5c = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x5d = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x5e = ' '      ' '      0x00     ' '      ' '      ' '      ' '      ' '      ' '      
    +Key 0x5f = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x60 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x61 = 0x1c     0x1c     0x1c     0x1c     0x1c     0x1c     0x1c     0x1c     0x1c     
    +Key 0x62 = 0x1f     0x1f     0x1f     0x1f     0x1f     0x1f     0x1f     0x1f     0x1f     
    +Key 0x63 = 0x1d     0x1d     0x1d     0x1d     0x1d     0x1d     0x1d     0x1d     0x1d     
    +Key 0x64 = 0x05     '0'      0x05     0x05     '0'      0x05     '0'      0x05     '0'      
    +Key 0x65 = 0x7f     ','      0x7f     0x7f     ','      0x7f     ','      0x7f     ','      
    +Key 0x66 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x67 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x68 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x69 = '<'      '>'      ''       '|'      ''       '<'      '>'      '|'      ''       
    +Key 0x6a = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x6b = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x6c = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x6d = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x6e = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x6f = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x70 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x71 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x72 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x73 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x74 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x75 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x76 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x77 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x78 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x79 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x7a = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x7b = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x7c = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x7d = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x7e = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x7f = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Acute ' '       = 0xc2b4   
    +Acute 'A'       = 0xc381   
    +Acute 'E'       = 0xc389   
    +Acute 'I'       = 0xc38d   
    +Acute 'O'       = 0xc393   
    +Acute 'U'       = 0xc39a   
    +Acute 'Y'       = 0xc39d   
    +Acute 'a'       = 0xc3a1   
    +Acute 'e'       = 0xc3a9   
    +Acute 'i'       = 0xc3ad   
    +Acute 'o'       = 0xc3b3   
    +Acute 'u'       = 0xc3ba   
    +Acute 'y'       = 0xc3bd   
    +Acute ''        = ''       
    +Acute ''        = ''       
    +Acute ''        = ''       
    +AcuteTab = Normal Shift Option Option-Shift CapsLock CapsLock-Shift CapsLock-Option CapsLock-Option-Shift 
    +Grave ' '       = '`'      
    +Grave 'A'       = 0xc380   
    +Grave 'E'       = 0xc388   
    +Grave 'I'       = 0xc38c   
    +Grave 'O'       = 0xc392   
    +Grave 'U'       = 0xc399   
    +Grave 'a'       = 0xc3a0   
    +Grave 'e'       = 0xc3a8   
    +Grave 'i'       = 0xc3ac   
    +Grave 'o'       = 0xc3b2   
    +Grave 'u'       = 0xc3b9   
    +Grave ''        = ''       
    +Grave ''        = ''       
    +Grave ''        = ''       
    +Grave ''        = ''       
    +Grave ''        = ''       
    +GraveTab = Normal Shift Option Option-Shift CapsLock CapsLock-Shift CapsLock-Option CapsLock-Option-Shift 
    +Circumflex ' '       = '^'      
    +Circumflex 'A'       = 0xc382   
    +Circumflex 'E'       = 0xc38a   
    +Circumflex 'I'       = 0xc38e   
    +Circumflex 'O'       = 0xc394   
    +Circumflex 'U'       = 0xc39b   
    +Circumflex 'a'       = 0xc3a2   
    +Circumflex 'e'       = 0xc3aa   
    +Circumflex 'i'       = 0xc3ae   
    +Circumflex 'o'       = 0xc3b4   
    +Circumflex 'u'       = 0xc3bb   
    +Circumflex ''        = ''       
    +Circumflex ''        = ''       
    +Circumflex ''        = ''       
    +Circumflex ''        = ''       
    +Circumflex ''        = ''       
    +CircumflexTab = Normal Shift Option Option-Shift CapsLock CapsLock-Shift CapsLock-Option CapsLock-Option-Shift 
    +Diaeresis ' '       = 0xc2a8   
    +Diaeresis 'A'       = 0xc384   
    +Diaeresis 'E'       = 0xc38b   
    +Diaeresis 'I'       = 0xc38f   
    +Diaeresis 'O'       = 0xc396   
    +Diaeresis 'U'       = 0xc39c   
    +Diaeresis 'Y'       = 0xc5b8   
    +Diaeresis 'a'       = 0xc3a4   
    +Diaeresis 'e'       = 0xc3ab   
    +Diaeresis 'i'       = 0xc3af   
    +Diaeresis 'o'       = 0xc3b6   
    +Diaeresis 'u'       = 0xc3bc   
    +Diaeresis 'y'       = 0xc3bf   
    +Diaeresis ''        = ''       
    +Diaeresis ''        = ''       
    +Diaeresis ''        = ''       
    +DiaeresisTab = Normal Shift Option Option-Shift CapsLock CapsLock-Shift CapsLock-Option CapsLock-Option-Shift 
    +Tilde ' '       = '~'      
    +Tilde 'A'       = 0xc383   
    +Tilde 'O'       = 0xc395   
    +Tilde 'N'       = 0xc391   
    +Tilde 'a'       = 0xc3a3   
    +Tilde 'o'       = 0xc3b5   
    +Tilde 'n'       = 0xc3b1   
    +Tilde ''        = ''       
    +Tilde ''        = ''       
    +Tilde ''        = ''       
    +Tilde ''        = ''       
    +Tilde ''        = ''       
    +Tilde ''        = ''       
    +Tilde ''        = ''       
    +Tilde ''        = ''       
    +Tilde ''        = ''       
    +TildeTab = Normal Shift Option Option-Shift CapsLock CapsLock-Shift CapsLock-Option CapsLock-Option-Shift 
    + +
    +
    + + + + + + diff --git a/docs/userguide/hu/preferences/locale.html b/docs/userguide/hu/preferences/locale.html new file mode 100644 index 0000000000..82ec56e951 --- /dev/null +++ b/docs/userguide/hu/preferences/locale.html @@ -0,0 +1,103 @@ + + + + + + + + + Nyelv + + + + + + + + +
    +
    + +

    locale-icon_64.pngNyelv (Locale)

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/Locale
    Beállítások:~/config/settings/Locale settings
    +


    +

    A Haiku nyelvi rendszere nem csak egyszerűen annyiból áll, hogy a szövegek lefordításra kerülnek, hanem például a formátumok, a dátum és az idő is az általunk megadott nyelvnek megfelelően jelenik meg.

    +
    Ha szeretnél segíteni a fordításban, vagy egy jelenleg még nem létező fordítást szeretnél elkezdeni, akkor vedd fel velünk a kapcsolatot a Haiku-i18n-hu levelezőlistán.
    +

    +indexNyelv

    +

    A Haiku már jelenleg is több nyelvhez tartalmaz fordítást, de sajnos még nem mindegyik teljes. Éppen ezért több nyelvet is választhatunk előnyben részesített nyelvként. Ha egy szöveg fordítása hiányzik, akkor az a következő előnyben részesített nyelv alapján kerül lefordításra. Ha valamelyik szöveget egyártalán nem tudja lefordítani a rendszer, akkor automatikusan az angol szöveg jelenik meg (mégha az nem is szerepel a listában).

    +locale-language.png +

    A fenti példában az előnyben részesített nyelv a Magyar. A második az Olasz, és ha a lefordítandó szöveg ott is hiányzik, akkor az Angolt veszi figyelembe.
    +Amint látjuk, egy nyelvnek több változata is lehet, melyeket a nyelv kibontásával jeleníthetünk meg.

    +

    +indexFormátum

    +

    A Formátum lapon a dátum és idő formátumát, valamint a szám illetve a pénz formátumot állíthatjuk be a választott előnyben részesített nyelvtől függetlenül.

    +locale-formatting.png +

    Például magyarként dolgozhatsz olasz nyelvterületen Svájcban. Tehát, az elsődleges nyelv a Magyar, de a szám és a pénz formátuma épp olyan, mint a munkahelyen, Svájci/Olasz.
    +Arra is lehetőségünk van, hogy a nap és a hónap neveit (vagyis, például a fájlok módosítási dátumát) is lefordítsuk a kiválasztott nyelvre. Ehhez jelöljük be az Előnyben részesített nyelv hónap- és napneveinek használata jelölő négyzetet.

    +

    Bár a fenti példa nem mondható általánosnak, mégis remekül jelzi, hogy milyen rugalmas a rendszerünk.

    +

    +indexOpciók - Ez a funkció le van tiltva, így a programok és a mappák az eredeti néven jelennek meg!

    +

    Az utolsó fülre kattintva mindössze egy módosítási lehetőségünk van: Az programok és mappák neveinek lefordítása az Asztalsávban és a Nyomkövetőben.. Ezt az opciót csak akkor jelöljük be, ha a felület nyelvének megfelelően a programok és a fontosabb mappák nevét is le akarjuk fordítani. FIGYELEM: jelenleg ezt a megoldást nem minden program támogatja, így ha valamelyik nem indul, akkor kapcsoljuk ki ezt az opciót.

    +


    +

    A módosítások azonnal életbe lépnek, habár a jelenleg futó programokat lehet, hogy újra kell indítani, hogy a választott nyelvnek megfelelően jelenjen meg.

    + + + +
    Eredeti Az eredeti beállítások megadása.
    Visszaállít A panel megnyitásakori állapot vsszaállítása.
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/preferences/media.html b/docs/userguide/hu/preferences/media.html new file mode 100644 index 0000000000..4de2362afa --- /dev/null +++ b/docs/userguide/hu/preferences/media.html @@ -0,0 +1,79 @@ + + + + + + + + + Média + + + + + + + + +
    +
    + +

    media-icon_64.pngMédia (Media)

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/Media
    Beállítások:~/config/settings/Media/*
    +~/config/settings/System Audio Mixer
    +~/config/settings/MediaPrefs Settings - az ablak pozícióját tartalmazza
    +

    A leírás még hiányzik. Ha szeretnél írni egy leírást, akkor jelezd azt a Documentation mailing list levelező listán a többszöri változat megelőzése érdekében.

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/preferences/mouse.html b/docs/userguide/hu/preferences/mouse.html new file mode 100644 index 0000000000..e336dec0cd --- /dev/null +++ b/docs/userguide/hu/preferences/mouse.html @@ -0,0 +1,94 @@ + + + + + + + + + Egér + + + + + + + + +
    +
    + +

    mouse-icon_64.pngEgér (Mouse)

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/Mouse
    Beállítások:~/config/settings/Mouse_settings
    +


    +mouse.png +

    Elsőként megadhatjuk az egér típusát: 1, 2 vagy 3 gombos. A 2. egérgomb (=jobb) szimulálható, ha lenyomva tartjuk a CTRL-t miközben kattintunk a bal egérgombbal. A 3. gomb (=középső) pedig a CTRL ALT lenyomásakor a bal gombbal kattintva.

    +

    A gombok felcserélhetőek ha a gombon a helyi menüből kiválasztjuk az új gomb számát.

    +

    A jobb oldali csuszkák használatával az egér dupla-kattintási sebessége, az egér sebessége és gyorsulása módosítható. Az egér képe alatti területen gyakorolva beállíthatjuk az optimális sebességeket: csak jelöljük ki valamelyik szót és szükség esetén állítsuk gyorsabbra vagy lassabbra, ezután pedig próbálkozzunk újra.

    +

    Az Ablak aktiválása három módon történhet:

    + + + + +
    Kattintással (az előre hozáshoz is) Ez az alap beállítás. Az ablak aktiválásához és a többi ablak elé hozásához is az ablakon történő kattintás szükséges.
    Kattintással Ebben az esetben ha egy ablakra kattintunk, akkor aktiválja azt, azonban nem hozza a többi ablak elé. Ehhez az szükséges, hogy miközben az ablak keretére vagy a sárga fülre kattintunk, közben lenyomva kell tartania az ablakkezelő gombokat (CTRL ALT).
    Ha az egér felette vanAz egér-kurzor alatti ablak automatikusan aktiválásra kerül. Az ablak előrehozása fedig a Kattintással módnál leírtak szerint történik.
    +

    Az Első kattintásra opció bejelölével mindjárt az első kattintásra aktiválódnak az ablak vezérlői, mint például a menü vagy a gombok. Ennek a használatakor fennáll az a veszély, hogy véletlenül bezárjuk az ablakot, azonban a munkát felgyorsíthatja.

    +

    A módosítások azonnal érvénybe lépnek.

    + + + +
    Eredeti Az eredeti beállítások megadása.
    Visszaállít Az ablak megnyitásakori értékek visszaállítása.
    + +
    +
    + + + + + + diff --git a/docs/userguide/hu/preferences/network.html b/docs/userguide/hu/preferences/network.html new file mode 100644 index 0000000000..4e52de9c76 --- /dev/null +++ b/docs/userguide/hu/preferences/network.html @@ -0,0 +1,86 @@ + + + + + + + + + Hálózat + + + + + + + + +
    +
    + +

    network-icon_64.pngHálózat (Network)

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/Network
    Beállítások:/boot/common/settings/network/resolv.conf
    +


    +network.png +

    Az ablak felső részében válasszuk ki a beállítandó hálózati kártyát.

    +

    Ezután adjuk meg a beállításokat automatikusan (DHCP-vel) vagy manuálisan (kézi beállítások). Manuálisan meg kell adni az IP-címet, a hálózat maszkot, az átjárót és a DNS kiszolgálók címét. Egyébként pedig a DHCP által megadott beállítások látszanak majd.

    + + + +
    Visszaállít Az ablak megnyitásakori állapot visszaállítása.
    Alkalmaz A beállított konfiguráció alkalmazása.
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/preferences/printers.html b/docs/userguide/hu/preferences/printers.html new file mode 100644 index 0000000000..abeed204dd --- /dev/null +++ b/docs/userguide/hu/preferences/printers.html @@ -0,0 +1,79 @@ + + + + + + + + + Nyomtatók + + + + + + + + +
    +
    + +

    printers-icon_64.pngNyomtatók (Printers)

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/Printers
    Beállítások:~/config/settings/printers/*
    +

    A leírás még hiányzik. Ha szeretnél írni egy leírást, akkor jelezd azt a Documentation mailing list levelező listán a többszöri változat megelőzése érdekében.

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/preferences/screen.html b/docs/userguide/hu/preferences/screen.html new file mode 100644 index 0000000000..48a07b350c --- /dev/null +++ b/docs/userguide/hu/preferences/screen.html @@ -0,0 +1,87 @@ + + + + + + + + + Képernyő + + + + + + + + +
    +
    + +

    screen-icon_64.pngKépernyő (Screen)

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/Screen
    Beállítások:~/config/settings/system/app_server/workspaces
    +~/config/settings/kernel/drivers/vesa - csak VESA mód esetében
    +~/config/settings/Screen_data - az ablak pozícióját tartalmazza
    +

    Minden munkaasztalnak egyéni felbontása, színmélysége és frissítési frekvenciája lehet.

    +screen.png +

    A felső menüvel megadhatjuk, hogy a módosítások minden munkaasztalra vagy csak az aktuálisra vonatkozzanak. A grafikus kártya függvényében a többi menü tartalmazza az elérhető felbontást, a színmélységet illetve a frissítési frekvenciát.

    +

    Az Alkalmaz gombra kattintás után a megjelenítési beállítások módosulnak, majd kapunk egy figyelmeztetés, hogy megtartsuk-e ezeket a módosításokat vagy sem. Ha nem válaszolunk a kérdésre, akkor 12 másodperc múlva automatikusan visszaáll az előző beállítás. Ez hasznos, mert lehet, hogy nem látjuk az üzenetet, ugyanis a monitor nem támogatja az adott értékeket.

    +

    A bal oldalon a képernyő kicsinyített megfelelőjét láthatjuk a gyártó, a modell és a felbontás (dpi) információival együtt. Az egeret a kis képernyő fölött tartva megkaphatjuk a grafikus kártya nevét ha van hozzá megfelelő eszközvezérlő. Ha nincs, akkor "VESA" jelenik meg, ugyanis az egy használható megoldás olyan grafikus kártyák esetében, amihez nem rendelkezünk eszközvezérlővel.

    +

    A Visszaállít megnyomásával a program indításakori beállítások kerülnek visszaállításra.

    +
    Bár a Haiku VESA módja igen jól működik, néhány korlátozásra számíthatunk. Lehet, hogy a szélesképernyős monitornak nem tudunk szélesképernyős felbontást megadni, így elmosódhat a megjelenő kép. Szintén lehet korlátozás a színek és a frekvencia tekintetében is.
    +

    A bal alsó részen megadhatjuk a munkaasztalok számát illetve elosztását (sor és oszlop megadásával virtuális rácsba rendezve) és megnyithatjuk a Hátterek beállítását is.

    + +
    +
    + + + + + + diff --git a/docs/userguide/hu/preferences/screensaver.html b/docs/userguide/hu/preferences/screensaver.html new file mode 100644 index 0000000000..c0bff9870d --- /dev/null +++ b/docs/userguide/hu/preferences/screensaver.html @@ -0,0 +1,101 @@ + + + + + + + + + Képernyővédő + + + + + + + + +
    +
    +

    screensaver-icon_64.pngKépernyővédő (ScreenSaver)

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/Screensaver
    Beállítások:~/config/settings/ScreenSaver_settings
    + +

    A beállítások 2 részre oszthatóak: +

    + +

    +index +Aktiválás

    +screensaver-fade.png +
    +

    A felső jelölőnégyzettel ki- illetve bekapcsolhatjuk a képernyővédőt.
    +Az alatta taláható csúszkával pedig megadható az aktiválás késleltetése. +

    +

    A következő 2 csúszka az aktiválás után hasznos:
    +- az első megadja, hogy mikor kapcsoljon ki a monitor
    +- a második pedig megadja, hogy mennyi idő után kérjen jelszót a feloldáshoz. +

    +

    Az alsó két képernyőn bármelyik sarokba kattintva megadható, hogy bekapcsoljon, illetve ideiglenesen letiltásra kerüljön a képernyővédő, ha az egér az adott sarokban van. A képernyők közepén kattinva kikapcsolható ez a funkció. +

    + +

    +index +Képernyővédők

    +screensaver-modules.png +
    +

    A második fülön találhatóak az elérhető képernyővédők és az esetleges beállítások. Ezek azonnal ki is próbálhatóak a Teszt gombbal, illetve további képernyővédők is adhatóak a listához a Hozzáad... gombra kattintva, vagy ha behúzzuk azt a listába. Természetesen a megfelelő mappába (/boot/common/add-ons/Screen Savers/ vagy /boot/home/config/add-ons/Screen Savers/) is behúzhatjuk az új képernyővédőt. (További információk a Fájlrendszer felépítése fejezetben). +

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/preferences/sounds.html b/docs/userguide/hu/preferences/sounds.html new file mode 100644 index 0000000000..5a151f2b2b --- /dev/null +++ b/docs/userguide/hu/preferences/sounds.html @@ -0,0 +1,86 @@ + + + + + + + + + Hangok + + + + + + + + +
    +
    + +

    sounds-icon_64.pngHangok (Sounds)

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/Sounds
    Beállítások:~/config/settings/Media/MMediaFilesManager
    +


    +sounds.png +

    A különféle rendszer-eseményekhez hangot társíthatunk. Csak ki kell jelölni egy eseményt, és válasszunk hozzá egy hangot.

    + + +
    Nincs Nem történik hangjelzés.
    Egyéb... Ha nem szerepel a listában amit szeretnénk használni, akkor keressük azt meg a számítógépen.
    +

    Bármilyen formátum használható amit a rendszer ismer. Ha a Médialejátszó le tudja játszani, akkor a többi program is.
    +Ki is próbálhatjuk a hangokat, ha kiválasztunk egyet, és használjuk a Lejátszás és Leállítás gombokat.

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/preferences/time.html b/docs/userguide/hu/preferences/time.html new file mode 100644 index 0000000000..e0dfc8cc0f --- /dev/null +++ b/docs/userguide/hu/preferences/time.html @@ -0,0 +1,95 @@ + + + + + + + + + Dátum és idő + + + + + + + + +
    +
    + +

    time-icon_64.pngDátum és idő (Time)

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/Time
    Beállítások:~/config/settings/RTC_time_settings
    +~/config/settings/timezone - hivatkozás az aktuális időzónára a /boot/system/etc/timezones/*/* mappába
    +~/config/settings/Time_settings - az ablak pozíciója
    +

    A beállítások 2 részre oszthatóak:

    + +

    +index +Dátum és idő

    +time-time.png +

    A bal oldalon a hónap napja állítható be. Egyszerűen csak az adott napra kell kattintani a naptárban. Az év és a hónap a le/fel nyilakra kattintva, vagy billentyűzettel adható meg.

    +

    Az idő beállítása is hasonló. Továbbá kétféle módon is állítható az óra (az időzóna beállításainál):

    + + + +
    Helyi idő A helyi időt mutatja.
    GMT A Greenwich-i középidőt mutatja.
    + +

    +index +Időzóna

    +time-timezone.png +

    Egyszerűen csak válasszuk ki a régiót a menüből, majd a listából a várost, majd kattintsunk az Időzóna beállítása gombra.

    +

    A Visszaállít gombbal az ablak megnyitásakori állapot állítható vissza.

    + +
    +
    + + + diff --git a/docs/userguide/hu/preferences/touchpad.html b/docs/userguide/hu/preferences/touchpad.html new file mode 100644 index 0000000000..573276e754 --- /dev/null +++ b/docs/userguide/hu/preferences/touchpad.html @@ -0,0 +1,96 @@ + + + + + + + + + Érintőpad + + + + + + + + +
    +
    + +

    touchpad-icon_64.pngÉrintőpad (Touchpad)

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/Touchpad
    Beállítások:~/config/settings/Touchpad_settings
    + +

    Ezen a panelen több, az érintőpad tulajdonságait módosító beállítás található, melyek elsősorban notebook esetén hasznosak.

    + +touchpad.png + +

    A vízszintes vagy függőleges vonalak mozgatásával a görgetősáv mérete módosítható az érintőpadon. Ha ezen a görgetősávon mozgatjuk az ujjunkat, az egyenértékű azzal, ha az ablak görgetősávját mozgatjuk az egérrel.

    +

    A jobb oldali csúszkák segítségével az általános gyorsulás, és a vízszintes és függőleges görgetés sebessége állítható.
    +A gyorsulás megadja, hogy a listát milyen gyorsan görgesse, amikor a görgetősávon húzzuk az ujjunkat. A görgetés sebessége pedig azt, hogy a többi, görgethető vezérlő milyen sebességgel mozogjon.

    +

    Az érintőpad grafikus megfelelője alatt a jelölőnégyzetekkel engedélyezhetjük a "Kétujjas görgetést" a vízszintes és a függőleges grögetősáv esetén. Mozgassuk párhuzamosan a két ujjunkat vízszintesen vagy függőlegesen az ablak görgetősávjának mozgatásához. A legjobban akkor működik, ha mindkét kezünk egy-egy ujját használjuk.
    +Ha úgy kényelmesebb, akkor feloszthatjuk, hogy az érintőpad nagyobb része legyen használatos a görgetéshez a navigáláshoz képest.

    +

    Az alsó csúszka pedig az érintőpad "kattintási" érdékenységét adja meg. Ha a "kattintások" kihagynak, akkor növelni, ha pedig minden mozdulatot kattintásnak érzékel a rendszer, akkor csökkenteni kell azt.

    + + + +
    Eredeti Az eredeti beállítások megadása.
    Visszaállít A panel megnyitásakori állapot vsszaállítása.
    +

    Ez az ötlet bár nem tartozik ehhez a beállításhoz, de a témához igen:
    +Tudtad azt, hogy az érintőpaddal is mozgathatsz objektumokat épp úgy, mint a gombok használatával? Ehhez csak annyit kell tenni, hogy kattints duplán az ujjaddal, de a második kattintás után ne engedd fel azt. Ekkor a "megfogott" objektum az ujjaink mozgatásával mozgatható. Az érintőpad elengedésével pedig az objektum elengedhető.

    +

    Hogyan húzhatjuk tovább az objektumot, ha az ujjunkkal már elértük az érintőpad szélét, de még szeretnénk tovább húzni azt? Hiszen ha felemeljük az ujjunkat, ezzel elengedjük az objektumot is.
    +Attól függően, hogy milyen hardverrel rendelkezünk, lehetőségünk van arra, hogy az érintőpad széléhez érve nem engedjük fel az ujjunkat, hanem várunk egy kicsit. Ekkor automatikusan folytatódik a mozgás.

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/preferences/tracker.html b/docs/userguide/hu/preferences/tracker.html new file mode 100644 index 0000000000..4881cb5519 --- /dev/null +++ b/docs/userguide/hu/preferences/tracker.html @@ -0,0 +1,81 @@ + + + + + + + + + Nyomkövető (Tracker) + + + + + + + + +
    +
    + +

    tracker-icon_64.pngNyomkövető (Tracker)

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/Tracker
    Beállítások:~/config/settings/Tracker/TrackerSettings
    +


    +

    A Nyomkövető beállításai szintén elérhetőek az összes fájl ablakból az Ablak | Beállítások.... menüben.
    +További leírás a Nyomkövető fejezetben.

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/preferences/virtualmemory.html b/docs/userguide/hu/preferences/virtualmemory.html new file mode 100644 index 0000000000..92ad83e5b7 --- /dev/null +++ b/docs/userguide/hu/preferences/virtualmemory.html @@ -0,0 +1,85 @@ + + + + + + + + + Virtuális memória + + + + + + + + +
    +
    + +

    virtualmemory-icon_64.pngVirtuális memória (VirtualMemory)

    + + + + +
    Asztalsáv:Beállítások
    Útvonal:/boot/system/preferences/VirtualMemory
    Beállítások:~/config/settings/kernel/drivers/virtual_memory
    +~/config/settings/VM_data - az ablak pozícióját tartalmazza
    +

    A virtuális memória lehetőséget ad arra, hogy a memória tartalmát átrakjuk a lemezre ha fontosabb adat tárolására van szükségünk a memóriában. Tehát, hacsak nem rendelkezik a számítógépünk sok memóriával, akkor a virtuális memória használata ajánlott.

    +virtualmemory.png +

    A méret megadásakor a fizikai memória méreténél többet ajánlott megadni. A napjainkban kapható lemezek mérete miatt ez nem okozhat problémát. Azonban, ha mégis kifogynánk a helyből, a virtuális memória mérete gyorsan módosítható. Ebben az esetben érdemes egy pillantást vetni a Lemezhasználatra, hogy kiderüljön mi okozza a lemez terheltségét.

    +

    Normál esetben a virtuális memória a rendszerlemezre kerül. Ha azt tapasztaljuk, hogy a lemezen nagyon gyakori az írás/olvasás, akkor használjunk másik lemezt a virtuális memória számára. Csak egy másik partíció ugyan azon a lemezen nem segít.
    +Persze a legjobb megoldás a fizikai memória méretének növelése lenne...

    + + + +
    Eredeti Az eredeti beállítások megadása.
    Visszaállít Visszaállítás a program indításakori állapotra.
    + +
    +
    + + + + diff --git a/docs/userguide/hu/queries.html b/docs/userguide/hu/queries.html new file mode 100644 index 0000000000..e6b02ccc70 --- /dev/null +++ b/docs/userguide/hu/queries.html @@ -0,0 +1,166 @@ + + + + + + + + + Lekérdezések + + + + + + + + +
    +
    + + + + + +
    Index
    + A kereső ablak
    + Egyszerű lekérdezések - "név szerint"
    + Összetett lekérdezések - "jellemzők szerint"
    + Még összetettebb lekérdezések - "képlet alapján"
    + Az eredmény ablak
    + Keresési sablonok +
    + +

    Lekérdezések

    + +

    A lekérdezés nem más, mint fájlok keresése jellemzők alapján, és végrehajtható mind a Nyomkövetőben, mind a Terminálban. A lékérdezések (keresések) a /boot/home/queries/ mappában kerülnek eltárolásra, és alap esetben 7 nap után törli azokat a rendszer. Itt megjegyzendő, hogy ezek a keresések nem egy állandó eredmény tárolnak, hanem azok megnyitásakor a rendszer újra és újra végrehajtja a keresést.
    +Persze, nem csak e módon kaphatjuk meg a keresések eredményét. A menü navigációnak köszönhetően egy elmentett keresésen jobb gombbal kattintva a helyi menüben is megjelenik a keresés eredménye.

    + +

    +index +A kereső ablak

    +

    Új keresés indítható az Asztalsáv Keresés... menüjéből, bármely Nyomkövető ablakból, az Asztalról vagy épp az ALT F kombinációval. Minden esetben egy kereső ablakkal találkozunk:

    +basic-query.png +
      +
    1. Előző vagy mentett keresések megnyitása, vagy a jelenlegi paraméterek mentése keresési sablonként.

    2. +
    3. Keresés Minden fájl és mappa között, vagy megadott típusú fájlokban.

    4. +
    5. A keresés módjának meghatározása:
        +
      • név szerint - egyszerű keresés fájl vagy mappa nevek alapján
      • +
      • jellemző szerint - keresés egy vagy több jellemző alapján
      • +
      • képlet alapján - összetett keresési lehetőséget nyújt
    6. +
    7. Melyik lemezen keressen a rendszer.

    8. +
    9. A keresés feltétele.

    10. +
    11. További opciók megjelenítése/elrejtése..

    12. +
    13. Az opció bejelölésekor a keresés csak Ideiglenesen kerül eltárolásra, és 7 nap után automatikusan törlődni fog.

    14. +
    15. A rendszer A Szemetesben is keresni fog.

    16. +
    17. Lehetőségünk van a keresésnek egy elnevezést is adni.

    18. +
    19. Ezt az ikont bármely Nyomkövető ablakba történő húzásával a keresés gyorsan eltárolható. Ezt a jobb gombbal végrehajtva sablonként menti el a program a keresést.

    20. +
    + +

    +index +Egyszerű lekérdezések - "név szerint"

    +

    Hacsak egyszerűen egy fájl vagy mappa nevében akarunk keresni a csatolt lemezeken, akkor a keresés módja név szerint történik. Ekkor csak a feltételt kell beírni a mezőbe, és lenyomni az ENTER-t.

    + +

    +index +Összetett lekérdezések - "jellemző szerint"

    +

    Egy új összetett keresés indítható, ha először megadjuk a fájl típusát, és a jellemző szerinti módot választjuk. Ehhez persze a jellemzőknek indexelve kell lenniük.

    +query-window.png +

    A példában a fájl típusa a Minden fájl és mappa helyett text | E-mail és a keresés módja jellemző szerint.

    +

    Ekkor megjelenik egy menü, egy beviteli mező és egy Hozzáadás és Eltávolítás gomb. A menüből ki kell választanunk azt a jellemzőt, amire keresni szeretnénk. A Hozzáadás és az Eltávolítás gombbal további jellemzők is hozzáadhatóak, vagy meglévők törölhetőek. Több jellemző között És és Vagy kapcsolat közül választhatunk.

    +

    Most hajtsunk végre egy keresést a leveleinkre:

    +query-window-filled.png +

    Így néz ki egy keresési ablak, ha azokra a levelekre akarunk keresni, ahol a feladó neve tartalmazza a "trac" szót, a levél állapota új ("New"), a levél tárgyában pedig szerepel a "Translator" és az "About" szó.
    +Kereshetünk időben is: "last 2 months" (utóbbi 2 hónapban), "today" (ma), "yesterday" (tegnap), "Monday" (hétfőn) vagy "last Monday" (a legutóbbi hétfőn, vagy "last 2 minutes/hours/days/weeks" (az utóbbi 2 percben/órában/napon/héten).
    +Ez egy jó megoldás a keresés eredményének a számának a csökkentésére..

    + +

    +index +Még összetettebb lekérdezések - "képlet alapján"

    +

    Kézzel megírni egy keresési képletet hosszadalmas és nem is igazán praktikus.

    +

    Ha már megadtunk minden jellemzőt és feltételt, akkor a képlet alapján mód választásakor megkapjuk az annak megfelelő képletet:

    +formula-query.png +

    Kicsit olvashatóbb formában:

    +
    (((((MAIL:from=="*[tT][rR][aA][cC]*")
    +       &&(MAIL:status=="[nN][eE][wW]"))
    +       &&(MAIL:subject=="*[tT][rR][aA][nN][sS][lL][aA][tT][oO][rR]*"))
    +       &&(MAIL:subject=="*[aA][bB][oO][uU][tT]*"))
    +       &&(BEOS:TYPE=="text/x-email"))
    +

    Mire is használható mindez?

    +
      +
    • Levélben, fórumon vagy IRC-n keresztül is megosztható másokkal.

    • +
    • Jellemzők módban megadva a feltételeket miután átváltunk képlet módra a kapott szöveg (képlet) már felhasználható a parancssorban, így például szkriptek írásánál is.

    • +
    • Tovább hangolható a képlet, ha helyettesítő karaktereket is használunk, figyelünk a betű-érzékenységre illetve ellentétes feltételeket adunk meg. Például: "==" helyett "!=" az És tagadásaként. Csupán az alapokat kell elsajátítanunk a általános kifejezés oldalon és esetleg egy kis szkriptelési ismereteket is szereznünk kell.

    • +
    + +

    +index +Az eredmény ablak

    +

    A keresés indítása után a kereső ablakot felváltja az eredmény ablak. Itt egy példa a "server" szót tartalmazó találatokra:

    +result-window.png +

    A szürke háttértől függetlenül ez az ablak épp úgy működik, mint bármely Nyomkövető ablak. Néhány dolog talán még jobban is:

    +
      +
    • Egy találat mappája megnyithat ha az útvonalon kattintunk.

    • +
    • A Fájl | Keresés szerkesztése menüvel vagy az ALT G kombinációval visszajutunk a kereső ablakba, ahol módosíthatjuk a feltételeket.

    • +
    • A keresés élő, vagyis például ha egy fájl, ami megfelel a keresési feltételnek és megjelenik a keresés helyén (azon a lemezen, ahol keresünk) vagy épp eltűnik onnan, akkor a változást azonnal látjuk az ablakban.

    • +
    +

    Az eredmény ablak megjelenését a keresett fájltípusnak megfelelően alakíthatjuk ki. Ezt akár úgy is megtehetjük, hogy egy meglévő mappát megnyitunk, aminek megfelelő az elrendezése (a megfelelő oszlopok jelennek meg), és azt átmásoljuk a Jellemzők | Elrendezés másolása menüvel.

    +

    Nyissuk meg a /boot/home/config/settings/Tracker/DefaultQueryTemplates mappát, majd hozzunk létre egy új mappát csoport/fájltípus néven, ahol a "per" jelet kicseréljük egy aláhúzás jellel, például "audio_x-mp3". Ezután ezt megnyitva a Jellemzők | Elrendezés beillesztése menüt választva az előbb másolt elrendezést alkalmazhatjuk ezen a mappán.

    + + +

    +index +Keresési sablonok

    +

    Ha egy elmentett keresésen duplán kattintunk, akkor azonnal elkezdődik a keresés és mindjárt a keresés eredményét látjuk. Ugyanakkor nem biztos, hogy épp ezeket a keresési paramétereket akarjuk használni, hanem csak kicsit hangolni szeretnénk rajta.
    +A Keresés mentése sablonként... menüt választva (az 1-es pont az első képen) vagy az ikont (10-es pont) egy Nyomkövető ablakba húzva jobb gombbal készíthetünk sablont. Ezen duplán kattitnva nem az eredmény ablakot nyitja meg, hanem a kereső ablakot lehetőséget adva a feltételek módosítására.

    +

    Bárhová is hozzunk létre sablonokat, az megjelenik a kereső ablak menüjében.

    +
    +
    + + + + + diff --git a/docs/userguide/hu/teammonitor.html b/docs/userguide/hu/teammonitor.html new file mode 100644 index 0000000000..a9d591339a --- /dev/null +++ b/docs/userguide/hu/teammonitor.html @@ -0,0 +1,79 @@ + + + + + + + + + Folyamatfigyelő (Team Monitor) + + + + + + + + +
    +
    + +

    Folyamatfigyelő (Team Monitor)

    + +

    A CTRL ALT DEL lenyomásával előhívhatjuk a Folyamatfigyelőt, ami megmutatja az összes futó programot és azok állapotát.

    +teammonitor.png +

    A rendszerfolyamatok kék színnel vannak megkülönböztetve a fekete felhasználói folyamatokatól/programoktól.
    +Azok a programok, amik nem válaszolnak, vélhetőleg programhiba folytán, azok piros színnel jelennek meg. Meg lehet próbálni bezárni a programot, ha a kiválasztás után lenyomjuk a Program leállítása gombot (vagy a DEL vagy a Q lenyomásával). Ha ez nem működik, akkor használjuk az Program megszakítása gombot (vagy a SHIFT DEL vagy a K billentyűt).

    +

    A Terminál is előhívható a OPT ALT T billentyűk lenyomásával.

    +

    Ha a Nyomkövető vagy az Asztalsáv futása leáll, akkor alul megjelenik egy újabb gomb is (előtte persze le kell állítani az adott programot): Asztal újraindítása, ami újraindítja a Nyomkövetőt illetve az Asztalsávot.

    + +
    +
    + + + + diff --git a/docs/userguide/hu/tracker-add-ons.html b/docs/userguide/hu/tracker-add-ons.html new file mode 100644 index 0000000000..c0d04a2dba --- /dev/null +++ b/docs/userguide/hu/tracker-add-ons.html @@ -0,0 +1,98 @@ + + + + + + + + + Nyomkövető kiegészítők + + + + + + + + +
    +
    + +

    Nyomkövető kiegészítők

    + +

    A programok különféle kiegészítőket telepíthetnek a gépre, amik egyszerűen előhívhatóak a kijelölt fájlokkal a Nyomkövetőben. Csak azok jelennek meg a Kiegészítők közt, amik tudják kezelni a kiválasztott fájltípust. Ezek szintén elérhetőek a Fájl menüben a Nyomkövető ablakban. Néhány kiegészítőnek nem szükséges, hogy egy fájlon nyissuk meg (tehát fájl-függetlenek), így mindig megtaláljuk őket a listában.

    +

    A Nyomkövető kiegészítők, vagy olyan programok hivatkozásai, amik kiegészítőként is működhetnek, az alábbi 3 mappába telepíthetőek (további információk a Fájlrendszer felépítése fejezetben):

    + + + + +
    /boot/system/add-ons/Tracker/   A rendszer kiegészítői.
    /boot/common/add-ons/Tracker/   Az összes felhasználó számára elérhető kiegészítők.
    /boot/home/config/add-ons/Tracker/   Csak a jelenlegi felhasználó kiegészítői.
    +

    A kiegészítő neve végződhet egy kötőjellel és egy nagy betűvel, így billentyű kombinációval is előhívhatóak. Például a Cél mappa megnyitása-O az ALT OPT O kombinációval is előhívható.
    +Természetesen, meg kell gondolni, hogy milyen betűt választunk, ugyanis nem lehet azonos betű megadva két kiegészítőnek.

    + +

    A Haiku Nyomkövető kiegészítői

    +

    A következő kiegészítők a Haiku részeit képezik:

    + + + + + + + + + + + + + +
    Hátterek-BMegnyitja a Hátterek beállítások panelt, ahol megtudjuk változtatni az Asztal vagy bármely mappa háttérszínét és a háttérképét. Egy képen való előhívásakor a kép automatikusan megnyitásra kerül, mint háttérkép a beállítások panelen.
    Lemezhasználat-IElindítja a Lemezhasználat nevű programot a kiválasztott mappával, mint kiindulási mappával.
    Fájltípusok-F
    FileType
    Egy fájlon megnyitva a fájlhoz tartozó Fájltípus panelt hívja elő, egyéb esetben pedig a Fájltípusok beállítás panel jelenik meg.
    Cél mappa megnyitása-O
    Open Target Folder
    Csak fájl-hivatkozáson használható. Megnyitja a hivatkozott fájlt tartalmazó mappát.
    Szövegkeresés-G
    TextSearch
    A Szövegkeresés programot elindítva a keresés a megadott mappában (és a almappákban) történik.
    ZipOMatic-ZKijelölt fájlok esetében azok becsomagolásra kerülnek egy zip csomagba, egyéb esetben csak a csomagoló ablak jelenik meg, amibe belehúzással csomagolhatunk be fájlokat.
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/tracker.html b/docs/userguide/hu/tracker.html new file mode 100644 index 0000000000..629b7ab15e --- /dev/null +++ b/docs/userguide/hu/tracker.html @@ -0,0 +1,210 @@ + + + + + + + + + Nyomkövető (Tracker) + + + + + + + + +
    +
    + + + + + +
    Index
    + Lemezek csatolása
    + Navigálás
    + Megjelenés
    + Beállítások
    + Munka a fájlokkal
    + Folyamatjelző +
    + +

    Nyomkövető (Tracker)

    + +

    A Nyomkövető egy grafikus felület a fájlokhoz. Használatával új fájlokat és mappákat hozhatunk létre vagy kereshetünk; elindíthatunk, átnevezhetünk, másolhatunk vagy törölhetünk már meglévőket.

    +

    Programként (az Asztal mindössze egy teljes képernyős ablak a háttérben), mint az összes többi, a Nyomkövető is megjelenik az Asztalsávon, és ezt is be lehez zárni, illetve újra lehet indítani. A legegyszerűbb módja a meghibásodott Nyomkövető (ugyanakkor az Asztalsáv) újraindításának az, ha a Folyamatfigyelőben tesszük azt meg.

    + +

    +index +Lemezek csatolása

    +

    Hogy hozzáférjünk a merevlemezekhez, CD-hez, USB lemezekhez, stb., elsőként csatolni kell, így a rendszer már használni tudja azt. Ezt megtehetjük az Asztalon vagy egy lemezen jobb gombbal kattitnva, majd a Csatolás menüből a szükségeset kiválasztva. Ugyan ilyen Csatolás menü található az Asztalsávon is.

    +drill-down.png +

    Egy Beállítások menü is a rendelkezésünkre áll, így megadható, hogy ne kelljen minden esetben kézzel csatolni a szükséges lemezeket.
    +A fenti beállítás alapján a rendszer az összes elérhető BeOS lemezt automatikusan csatolni fogja, ugyanakkor indításkor a legutóbb használt lemezeket is csatolja majd.

    +
    Miután eltávolítunk egy lemezt a gépből, előtte le kell választani azt. Ez a lépés garantálja, hogy minden adatátvitel befejeződött. Ellenkező esetben adatvesztés történhet a lemezen!
    + +

    +index +Navigálás

    +

    Alap esetben ha duplán kattintunk egy mappán, akkor a Nyomkövető megnyit egy új ablakot. Ezzel a megoldással gyorsan túlzsúfolt lehet az Asztalunk.
    +Ez megelőzhető: tartsuk lenyomva az OPT billentyűt, így a szülő mappa ablaka automatikusan bezárul.
    +Ez ugyan úgy igaz a billentyűzettel való navigálás esetén is. További információk a Billentyűzet-kombinációk fejezetben.

    +

    A mappákkal történő munka a Nyomkövető egyik funkciója, épp úgy, mint a fájlkezelők esetében a többi operációs rendszernél. A Haiku-ban a Nyomkövetőnek van néhány sajátossága, ami növeli a hatékonyságot.

    + +

    +indexMenü navigáció

    +

    Ahelyett, hogy az almappákon végig kattintgatnánk, van erre egy egyszerűbb módszer is:

    +drill-down.png + +

    Egy mappán jobb gombbal kattintva a hagyományos helyi menü tetején találunk egy almenüt, amivel navigálhatunk az adott mappán belül. Csak mennjünk végig az egész hierarchián, amíg meg nem találjuk az adott fájlt vagy mappát, amire szükségünk van. A fenti példában a /boot/apps/BePDF/ mappa tartalmát látjuk.
    +Ha egy fájlt megfogva hajtjuk ezt végre, akkor az abba a mappába kerül áthelyezésre, amelyikbe dobjuk (amelyiken az egér gombját felengedjük).

    +

    Hasonló érhető el minden Nyomkövető ablakból is:

    +window-drill-down.png +

    Kattintsunk a bal alsó sarokban található területre, ahol a megjelenített elemek száma látható, és ekkor megjelenik egy almenü, ahol szintről szintre megjelennek a mappák ahol a jelenlegi mappa található. Innen pedig szintén navigálhatunk a megjelenő mappákon belül.

    +

    Itt megjegyzendő, hogy az Asztal mindig is a legfelső szintnek fele meg, ahol a lemezek is megjelennek. Tehát, ha egy másik lemezre szeretnénk menni, akkor elsőként a legfelső szintre kell navigálni, vagyis az Asztalra, és onnan már mehetünk a másik lemezre.


    +

    Ugyan ez az almenü-navigáció jelenik meg, amikor egy fájlt egy mappa fölé húzunk. Miután rövid ideig felette tartjuk, a menü megjelenik, és így megkereshetjük azt, amelyikre szükségünk van. Ha a jobb egér gombbal indítottuk el a navigációt, akkor választhatunk másolás, mozgatás vagy hivatkozás létrehozása között az egér gombjának felengedése után.

    + +

    +index +Fájlra ugrás billentyű leütés hatására

    +

    Ismerősnek tűnhet ez a funkció a más operációs rendszereken használatos fájlkezelőkből: az első néhány karaktert leütve az első egyező találatra ugrik a fájlálistában. A Haiku egy lépéssel tovább megy. Ha nincs olyan bejegyzés, ami a leütött karakterekkel kezdődik, akkor a bejegyzés nevében keres tovább, így ha a neve tartalmazza a megadott karaktereket, akkor arra a bejegyzésre ugrik amit elsőként így megtalál. Ha így sem talál egyet sem, akkor a jellemzők következnek.

    +window-type-ahead.png +

    A fenti példában sok olyan fájl van, ami "welcome"-al kezdődik, így ezt begépelve nem jutunk eredményre. Azonban, ha már a "hu" szót írjuk be, akkor már a "welcome_hu.html" nevű fájlra ugrik. A beírt karakterek a bal alsó sarokban jelennek meg, ott ahol normál esetben a bejegyzések száma látható. Egy másodperccel a karakter leütése után az ablak visszavált normál módra, így új keresés indítható.

    +

    +index +Gépelés közbeni szűrés

    +

    Ahelyett, hogy egy fájlra ugranánk gépelés közben, arra is lehetőségünk van, hogy a keresésnek nem megfelelő találatok ne jelenjenek meg a listában. Ezzel a megoldással könnyedén lehet szűrni azokat a mappákat is, amelyek sok bejegyzést tartalmaznak. A SHIFT SPACE, mint elválasztó használatával több szóra is szűrhetünk egyszerre.
    +Ellentétben a billentyű leütésekor a fájlra ugró megoldással, itt a szűrés befejezéséhez vagy az ESC-et kell leütni, vagy pedig az ablakot be kell zárni (illetve, ha egy ablakos böngészést használunk, akkor lépjünk egy szinttel fejjebb).
    +Ez a típusú szűrés beállítható a Nyomkövető beállításoknál.

    + +

    +index +Megjelenés

    +window-menu.png +

    A Nyomkövető ablakok három különféle megjelenítést tesznek lehetővé, melyeket az Ablak menüben érünk el:

    +
      +
    • Ikon nézet (ALT 1) - Nagy ikonok, melynek a mérete módosítható az almenüből, illetve az ALT +/- kombinációval.

    • +
    • Mini ikon nézet (ALT 2) - Kicsi ikonok.

    • +
    • Lista nézet (ALT 3) - Részletes lista a fájlokról a jellemzők megtekintésével illetve elrejtéssel. (További információk a Jellemzők fejezetben.)

    • +
    +

    Az Ablak menü több más funkciót is tartalmaz:

    +
      +
    • Átméretezés hogy elférjen (ALT Y) - Az ablakot az ideális méretűre méretezi.

    • +
    • Rendezés... - Csak ikon és mini ikon nézetben érhető el, mikoris az alábbi lehetőségek közül választhatunk:

      +
        +
      • Név, Valódi név, Méret, Módosítva, Létrehozva, Típus, Hely, Engedélyek

      • +
      • Fordított sorrend - A rendezés irányának megváltoztatása.

      • +
      • Rendrakás (ALT K) - Az összes ikon egy képzeletbeli rácshoz való illesztése. A SHIFT-et lenyomva tartva a menü átvált az Összes rendezésére, ami ezen kívül még a megadott feltétel szerint sorba is rendezi azt.

      • +
    • +
    • Kijelölés... (SHIFT ALT A) - A fájlok kijelölése általános kifejezés alapján.

    • +
    • Bezárás (ALT W) - Az ablak bezárása. Tartsuk lenyomva a SHIFT billentyűt és a menüben az Összes bezárása jelenik meg, ami az összes Nyomkövető ablakot bezárja.

    • +
    • Bezárás minden munkaasztalon (ALT Q) - Az összes Nyomkövető ablakot bezárja a jelenlegi munkaasztalon. Ez hasznos lehet, ha elfelejtjük az OPT billentyűt lenyomva tartani miközben megnyitjuk az újabb mappákat amivel "rendetlenséget" hagyunk magunk után.

    • +
    +

    Néha csak néhány ikont szeretnénk rendezni anélkül, hogy a teljes Rendrakást (ALT K) elvégeznénk. Ebben az esetben válasszuk ki a rendezni kívánt ikonokat, és mozgassuk azokat az új helyükre. Mielőtt oda húznánk az ikonokat, tartsuk lenyomva az ALT billentyűt. Így az ikonok a rácshoz lesznek igazítva.

    +

    A funkciók többsége magától értetődő.

    + +

    +index +Beállítások

    +

    Az Ablak | Beálítások... menü megnyit egy panelt, ahol több beállítás is található amik talán nem egészen egyértelműek. Mivel az összes beállítás módosítása élő, így azonnali eredménnyel jár. +
    Az alábbi beállítások érhetőek el:

    +
      +
    • Asztal - Eldönthetjük, hogy az összes csatolt lemez közvetlenül az Asztalon jelenjen meg, vagy egy külön ablakban, mely a Lemezek ikonnal nyithat meg.

    • +
    • Ablakok - Itt állítható be az Egyablakos navigáció, aminek hatására egy mappa megnyitásakor annak tartalma ugyanazon ablakban jelenik meg. Ez nem ugyan az, mint amikor kattintás közben lenyomva tartjuk az OPT billentyűt, mint már említettük, ugyanis most elveszítjük az ablak méretét és pozícióját is. +

      +tracker-preferences-navigator.png +

      Mielőtt egy ablakos módba váltunk, ha az kézenfekvőbb, akkor azt ajánljuk, hogy előtte ki kell próbálni azt, ugyanis nem biztos, hogy sokkal gyorsabb lesz, mint az alap beállítás. Másrészről az egy ablakos böngészés egy Navigátor használatát is lehetővé teszi, ahová beírhatunk, másolhatunk vagy beilleszthetünk útvonal címet, továbbá tartalmaz egy vissza, előre és egy szinttel fejjebb gombot is.

      +

      A Gépelés közbeni szűrés engedélyezése funkció aktiválásával az ablak tartalmának szűrésekor az a bejegyzés (fájlnév vagy jellemző) jelenik majd meg, ami megfelel a szűrés feltételeinek. További részletek feljebb.

    • +
    • Szemetes - A fájlok törlésének módja.

    • +
    • Lemez ikonok - A lemezek ikonja mellett a lemez kihasználtságát jelző sáv bekapcsolása és színének beállítása.

    • +
    +

    Ez a panel szintén elérhető Nyomkövető néven az Asztalsáv Beállítások menüjében.

    + +

    +index +Munka a fájlokkal

    +

    Ha aktiválunk egy fájlt, akkor a Fájl menüben lévő parancsok nagyrésze a helyi menüben is megtalálható.

    +

    Mint mindig, a parancsok itt is egyértelműek.

    +
      +
    • Keresés... - Egy fájl vagy mappa megkeresése. További információk a Lekérdezések fejezetben.

    • +
    • Új - Új fájlt vagy mappát készíthetünk sablon alapján. +

      +new-menu.png +

      A Sablonok szerkesztése... megnyitja a /boot/home/config/settings/Tracker/Tracker New Templates mappát. Az ebben a mappában létrehozott fájlok fognak megjelenni sablonként az Új menüben A sablon alapján kap a fájl egy nevet, illetve a jellemzői is megegyeznek a sablonéval. Jelen példában van egy "Text" fájlunk, aminek a típusa text/plain. További információk a Fájltípusok fejezetben.

    • +
    • Megnyitás ezzel... - Ez a menü tartalmazza az összes programot, ami kezelni tudja az adott fájlt. +

      +open-with.png + +

      A listában az alapértelmezett program be van jelölve (az, ami dupla kattintással a fájlon megnyitja azt). A listában elsőként azok a programok jelennek meg, amik pontosan az adott típusú fájlok kezelésére szolgálnak, esetünkben: text/plain. Sorban ezek után jönnek azok a programok, melyek a fájl fő típusát kezelik (esetünkben: text/*). Végül pedig a listában azok jelennek meg, melyek bármit is tudnak kezdeni a fájllal. Ha nem egy programon kattintunk a menüben, hanem magán a Megnyitás ezzel... menün, akkor egy új panel nyílik meg:

      +

      +open-with-preferred +

      Itt megintcsak megtaláljuk azokat a programokat, melyek a menüben is megjelentek. Egyet kiválasztva, majd a Megnyitás és előnyben részesítés gombra nyomva megadható, hogy az összes ugyan ilyen típusú fájlt (esetünkben a text/plain típus) az adott programmal nyíssuk meg a későbbiekben.

    • +
    • Információk +

      +get-info +

      Ez a panel információkat szolgáltat a kijelölt fájlról, lehetőséget nyújt az előnyben részesített program módosítására, és a panel alsó részének kinyitásakor a fájl engedélyei és tulajdonosa is változtatható. Az útvonalon kattitnva pedig megnyílik az a Nyomkövetőben.

    • +
    • Név szerkesztése, Megdupláz és Mozgatás a Szemetesbe - Egy fájl átnevezése, megduplázása vagy a Szemetesbe helyezése.

    • +
    • Mozgatás, Másolás és Hivatkozás létrehozása - Az almenün keresztül navigálva eljutunk abba a mappába, ahová a fájlt át szeretnénk másolni, mozgatni, vagy ahová hivatkozást szeretnénk létrehozni hozzá. A SHIFT-et lenyomva tartva relatív hivatkozás létrehozására lesz lehetőségünk.

    • +
    • Kivágás, Másolás és Beillesztés - A vágólap használatával kivághatunk, másolhatunk egy bejegyzést a mappából vagy beilleszthetünk egy bejegyzést a jelenlegi mappába. A SHIFT-et lenyomva tartva pedig megjelenik a Több kivágása/másolása menü, ami több fájlon engedi elvégezni ezeket a műveleteket, amiket majd később beszúrhatunk egy másik mappába. Szintén a SHIFT-et lenyomva tartva a kimásolt fájloknak a hivatkozását a vágólapra másolhatjuk.

    • +
    • Azonosítás - Meghatározza a fájlok típusát, ha jelenleg még nem azonosítottak, például ha az internetről töltöttük le azt wget használatával, ami nem állítja be letöltés után a fájl típusát. A menü megnyitásakor a SHIFT-et lenyomva ez megváltozik Kényszerített azonosításra, ami megállapítja a fájl típusát, és kijavítja azt hibás típus esetén.

    • +
    • Kiegészítők - Az összes alap Nyomkövető kiegészítő és azok, melyek az adott fájlt képesek kezelni. További információk a Nyomkövető kiegészítők fejezetben.

    • +
    + +

    +index +Folyamatjelző

    +

    Amikor fájlt másolsz, mozgatsz, vagy törölsz, akkor a Nyomkövető egy folyamatjelzőt jelenít meg. Ha egyszerre több művelet is folyamatban van, akkor minden művelet egy külön folyamatjelzőt kap.

    +transaction-status.png +

    A jobb oldalon két gomb is található, melyekkel szüneteltethető vagy leállítható az adtt művelet. Néha szükség lehet hosszabb folyamatok megállítására. Például ha gyorsan el kell indítanunk egy nagy programot. Nagy mennyiségű adat másolásakor a lemez sok írást/olvasást végez, így lelassítja a munkát.

    + +
    +
    + + + + + diff --git a/docs/userguide/hu/twitcher.html b/docs/userguide/hu/twitcher.html new file mode 100644 index 0000000000..3a6c99b972 --- /dev/null +++ b/docs/userguide/hu/twitcher.html @@ -0,0 +1,84 @@ + + + + + + + + + Programváltó (Twitcher) + + + + + + + + +
    +
    + +

    Programváltó (Twitcher)

    + +

    A programváltó a futó programok és a megnyitott ablakok közötti váltogatást teszi lehetővé.

    +twitcher.png +

    A CTRL TAB lenyomásával válthatunk a jelenlegi és a legutóbbi program/ablak között. A CTRL TAB gyors lenyomásával pedig az összes program között válthatunk. Ha pedig hosszan tartjuk lenyomva a CTRL TAB akkor gyorsan végig válthatunk az összes programon a TAB vagy a / billentyű gyakori leütésével. Ha a program egy adott ablakára van szükségünk, akkor keressük meg az adott programot, és válasszuk ki a kívánt ablakot a / billentyűk lenyomásával.

    +

    A kiválasztott program összes látható ablakán végigmehetünk a CTRL ~ lenyomásával (ez függ a billentyűzet-kiosztástól, de gyakran az ESC alatt található).

    +

    Arra is lehetőségünk van, hogy a CTRL TAB lenyomásával előhívjuk a programváltót, és egérrel kiválasztjuk a kívánt programot/ablakot, amire a CTRL elengedése után vált majd át a rendszer.

    +

    Lehetőségünk van további funkciókat is használni:

    + + + + +
    ESCA váltogató bezárása, és visszatérés a legutóbbi aktív ablakhoz.
    QBezárja a kiválasztott programot.
    HA program összes ablakát elrejti.
    + +
    +
    + + + + diff --git a/docs/userguide/hu/workshop-email.html b/docs/userguide/hu/workshop-email.html new file mode 100644 index 0000000000..46275dae59 --- /dev/null +++ b/docs/userguide/hu/workshop-email.html @@ -0,0 +1,157 @@ + + + + + + + + + Műhely: levelek kezelése + + + + + + + + +
    +
    + + + + + +
    Index
    + A Haiku levelező rendszere
    + Egyéni állapotok használata
    + Lekérdezések használata
    + További tippek +
    + +

    Műhely: levelek kezelése

    + +

    Ebben a fejezetben a levelek kezelését tárgyaljuk Haiku alatt. A leírtak alapja egy már beállított levelező rendszer. A beállításokat már minden bizonnyal elvégezted az E-Mail beállítások panelen. Ezen kívül minden bizonnyal már valamilyen szinten ismered a Haiuk levelező programját (Levelezés).

    + +

    +index +A Haiku levelező rendszere

    +

    Ha egy másik operációs rendszert használtál eddig, akkor valószínűleg valamelyik ismertebb programot már használtad, mint például a Microsoft Outlook vagy a Mozilla Thunderbird. Használat előtt azok esetében is el kell végezni néhány beállítást. Ezen kívül egyedi adatbázist használ a névjegyek és a levelek tárolására.
    +A levelező program lecserélése nem egyszerű dolog. Exportálni/importálni és átalakítani kell. Ezen kívül egyszerre egynél több program használatánál is adódhatnak problémáink.

    +

    A Haiku levelező rendszere ettől igen eltérő. Például több részből áll össze.

    +

    A legfontosabb rész a mail_daemon (levelező szolgáltatás), ami a kommunikációért felel a rendszer és a kiszolgáló között. Az E-Mail beállítások panelen lehet megadni és konfigurálni az e-mail fiókokat és a levelező szolgáltatást.

    +

    Minden levél egy fájlként kerül eltárolásra, ahol a levél információi (mint például a feladó, tárgy, dátum) és annak állapota (például új, megválaszolt, elküldött) BFS jellemzőkként lesznek megadva. Ezek a jellemzők pedig segítenek a levelek keresésében/szűrésében..

    +browsing.png +

    Mivel minden levél egy fájl, azok listázása és böngészése/használata épp úgy működik, mint bármely más fájl esetén (mint például egy mappában lévő képek és azok megnyitása a Képmegjelenítővel). Ha a Nyomkövető ablakot megnyitva hagyjuk, akkor látni fogjuk, hogy épp melyik levelet olvassuk, miközben a Levelezés programban lépegetünk a levelek között.
    +Mivel a levelek önálló fájlok, így ha nem a Haiku Levelezés programját használjuk, akkor sem ütközünk semmilyen akadályba.

    +

    Ehhez hasonlóan új levél létrehozásakor szintén készül egy fájl, amit szintén a mail_daemon kezel és küld el. Az ismerősök kezelése pedig a Névjegyekkel történik.

    +

    Dióhéjban: míg más levelező programok maguk kezelik a kommunikációt a kiszolgálóval, a levelek tárolását, megjelenítését, és a levelek kezelését (keresés, szűrés), addig a Haiku jelentősen kisebb programokat használ, amelyek fájlrendszer szinten kezelik a leveleket:

    +
      +
    • A mail_daemon fogadja/küldi a leveleket.

    • +
    • Nyomkövető ablak és lekérdezések segítenek a keresésben és a megjelenítésben.

    • +
    • A Levelezés használatos a levelek megtekintésére és új levelek írására. A Névjegyek program pedig rendszer szintű névjegykezelést kínál.

    • +
    +

    A Nyomkövető és a lekérdezések használata különösen hasznos. Az itt szerzett tapasztalat más fájlokkal való probléma megoldásában is segíthet. Legyen szó képekről, zenéről, videóról, névjegyről vagy bármi más dokumentumról, a Nyomkövető áll a fájlkezelés középpontjában.
    +Ugyanakkor a fájlrendszer bármely területén történő fejlesztés nem csak a levelezés hanem az összes többi program számára is használható.

    + +

    +index +Egyéni állapotok használata

    +

    Amikor az újonnan érkezett levelek közt böngészel, akkor megeshet, hogy valamelyikkel majd csak később akarsz komolyabban foglalkozni. Ekkor a Levelezés Bezár és... | Hagyja Újként menüjét választva a levél megmarad az "Új levelek" között...

    +

    De, ha nem akarunk válaszolni a levélre, ez nem a legjobb megoldás.

    +status.png +

    Sokkal jobb megoldás az, ha a Bezárás és... | Megjelöl... menüben létrehozunk egy új állapotot, és azt haszánljuk a levelek kategorizálására. Például, adhatunk a levélnek egy "Később" állapotot, és ha lesz több időnk, akkor majd rákeresünk erre az állapotra.
    +Esetleg egyedi állapotot adhatunk a különféle munkákkal kapcsolatos leveleknek is. Például, készíthetünk egy "HUG" állaptot (a "Haiku user guide" rövidítéseként), ami minden, a Haiku felhasználói útmutatóval kapcsolatos levélnek megadható.
    +Minden esetben próbáljunk rövid állapot-nevet megadni, így a Nyomkövető ablak állapot oszlopában mindig el fog férni.

    +

    Nem szükséges megnyitni a leveleket a Levelezés programban az állapotuk módosításához. A Mark as Read (Olvasottnak jelöl) és a Mark as... (Megjelöl, mint...) Nyomkövető kiegészítőket használhatjuk a kijelölt leveleken, és egy lépésben módosítható azok állapota.

    + +

    +index +Lekérdezések használata

    +

    A levelek számára meg kell adni egy mappát, így minden levelünk egy helyen lesz majd. Csakhogy idővel a mappa túlzsúfolttá válhat, és a levelek betöltése, rendezése is hosszabb ideig tarthat. Ezen kívül pedig általában nem is törődünk a 2 évvel ezelőtti levelekkel...

    +
    A sok fájlt tartalmazó mappák beolvasása hosszú ideig tarthat, és a fájlok rendezése is időbe telhet. Ha meg akarsz nyitni egy sok fájlt tartalmazó mappát, akkor lerövidítheted a várakozási időt, ha közben a Nyomkövető ablakot "eltünteted", például elrejted vagy egy másik munkaasztalra rakod át. A Folyamatkezelővel a processzor használata is megfigyelhető.
    +

    A Lekérdezések a megmentőink!

    +

    A lekérdezések használatával leszűkíthetjük a levelek listáját. Például az Asztalsávon megjelenő ikon is lekérdezéseket használ.

    +daemon-in-deskbar.png +

    Az Open Draft (Piszkozatok) almenüben találhatóak azok a levelek, melyek állapota "Draft" (piszkozat), amit a Levelezés adott meg, amikor elmentettük a levelet.

    +

    Az Open Inbox Folder (Bejövő levelek) és az Open Mail Folder (levelek mappájának megnyitása) mindössze egy hivatkozás.

    +

    A # új levél almenü egy lekérdezés azokra a levelekre, melyek állapota "New" (Új). Ugyan ez a lekérdezés adja meg az új levelek számát is a menü nevében..

    + +

    Egyéni lekérdezés illetve mappa is hozzáadható a menühöz, ha azt a ~/config/settings/Mail/Menu Links mappába másoljuk, vagy ha ide készítünk egy hivatkozást.

    +
    A ~/config/settings/Mail/mailbox lekérdezés egy speciális eset: ez myílik meg, amikor a bal gombbal kattintunk a postaláda ikonon az Asztalsávon. Ha ezt meg akarjuk változtatni, akkor csak cseréljük ki egy másik fájlal (vagy a fájl hivatkozásával), és nevezzük el "mailbox"-nak. Nem fontos, hogy lekérdezés legyen. Lehet akár egy program hivatkozása is.
    + +

    +index +Példa lekérdezésre

    +

    Néhány keresési minta:

    + + + + + + +
    query-1.png
    +Egyéni ("Másolat") állapottal rendelkező levelek.
    query-2.png
    +A legutóbbi két nap levelei.
    query-3.png
    +Az utóbbi 2 hétben a Haiku i18n-től érkezett levelek.
    query-4.png
    +Az utóbbi 12 órában érkezett levelek, melyek tárgya tartalmazza a "guide" szót.
    + +

    +index +További tippek

    +
      +
    • Ha egy lekérdezést "Keresésként", helyett inkább "Keresési sablonként" mentünk el, akkor a megnyitásakor nem a találat ablak fog megjelenni, hanem a kereső ablak. Ezzel a megoldással a keresés könnyedén módosítható, például a keresés idejét "2 days" (2 napról) "3 days" (3 napra).

    • +
    • A "gépelés közbeni szűrő" engedélyezésekor (a Nyomkövető beállításainál) lehetőségünk van arra, hogy a keresés eredményei között még nyorsabban megtaláljuk azt, amit akarunk. Gyakran elég lekérdezni az utóbbi 3 nap leveleit és abban használni a gépelés közbeni szűrést, így még hatékonyabban tudjuk azt használi. A lényeg az, hogy nem kell megadnunk, hogy mely jellemzőben keressünk, ugyanis így az összes megjelenített mezőben keresni tudunk.

    • +
    • A RelatedMail egy remek kis program, ami a megadott levelek között megkeresi az összes, melynek azonos a tárgya, a feladója, stb. A Levelezés program Lekérdezések menüjéből is ezt a funkciót érhetjük el.

    • +
    + +
    +
    + + + + + diff --git a/docs/userguide/hu/workshop-filetypes+attributes.html b/docs/userguide/hu/workshop-filetypes+attributes.html new file mode 100644 index 0000000000..8a62130c6e --- /dev/null +++ b/docs/userguide/hu/workshop-filetypes+attributes.html @@ -0,0 +1,232 @@ + + + + + + + + + Műhely: fájltípusok, jellemzők, indexek és lekérdezések + + + + + + + + +
    +
    + + + + + +
    Index
    + Előkészítés
    + Egyéni fájltípus létrehozása
    + Ikon
    + Fájl azonosítása
    + Leírás
    + Előnyben részesített programok
    + További jellemzők
    + Indexelés
    + Adatok megadása
    + Lekérdezés az adatbázisból +
    + +

    Műhely: fájltípusok, jellemzők, indexek és lekérdezések

    + +

    Ebben a témakörben bemutatjuk a Jellemzők, a Lekérdezések, az Index és az egyéni Fájltípusok használatát. Példaként egy DVD adatbázis hozunk létre.

    + +

    +index +Előkészítés

    +

    Elsőként el kell dönteni, hogy milyen típusú fájlra és milyen jellemzőkre van szükségünk. Használhatunk WebPositive könyvjelzőket, amik már úgyis tartalmazzák a film IMDB címét, de most inkább a film borítóképét vegyük alapul.
    +Ehhez a képhez pedig több jellemzőt is hozzá kell adni. +Itt most el kell düntenünk, hogy milyen adatot is tároljunk az adatbázisban, és azoknak milyen legyen a típusa. Kereséskor a számokkal (int, float) kicsit eltérően tudunk dolgozni, mint a szöveggel (</=/> szám esetében, és egyenlő/tartalmaz/eleje szöveg esetében).

    +

    Az alábbi jellemzőket szeretném látni a DVD filmjeimhez:

    +
      +
    • Cím
    • +
    • Kategória
    • +
    • URL, például az IMDB-n
    • +
    • Rendező
    • +
    • Kiadó
    • +
    • Értékelés
    • +
    • Stúdió
    • +
    • És például, hogy ki kérte kölcsön
    • +
    + +

    +index +Egyéni fájltípus létrehozása

    +

    Elsőként nyissuk meg a Fájltípusok beállításokat, majd kattintsunk a Hozzáadás... gombra a lista alatt. Ekkor kapunk egy kis ablakot, ahol meg kell adni a MIME csoportot, amin belül majd a fájltípus megtalálható lesz. Persze, egy teljesen új csoport is létrehozható. Esetünkben ezt most tegyük az "applications" csoportba és adjuk meg a DVDdb-t, mint "belső nevet".

    +filetypes-new-file-type.png +

    Ekkor az új fájltípus már megjelenik az ablakban:

    +filetypes-dvddb.png + +

    +index +Ikon

    +

    Az ikonon duplán kattintva az megnyílik az Icon-O-Matic ablakban, ahol a fájltípusnak megfelelőt létre lehet hozni. Persze, egy másik típus ikonja is idehúzható, mint egy meglévő módosításának kiindulópontja.

    + +

    +index +Fájl azonosítása

    +

    Különféle kiterjesztések is adhatóak a típushoz, mint például .txt, .jpg, .mp3 annak érdekében, hogy a kiterjesztés alapján is felismerhetőek legyenek. Ez akkor is hasznos lehet, hogyha olyan fájlokkal dolgozunk, amik nem rendelkeznek MIME azonosítóval. Jelen példában erre nincs szükség.

    + +

    +index +Leírás

    +
      +
    • Típus neve - Ez jelenik meg például a Jellemzők menüben a Nyomkövető ablakban..
    • +
    • Leírás - Részletesebb információ a megadása.
    • +
    + +

    +index +Előnyben részesített programok

    +

    Ez a menü tartalmazza azon programok listáját, amik a típust kezelni tudják. Itt megadható, hogy a fájl melyik programmal nyíljon meg ha duplán kattintunk azon.

    + + + +
    Kiválasztás... Egy fájl-ablakot nyit meg, ahol kiválaszthatjuk azt a programot, amivel meg akarjuk nyitni az adott típust. Ebben az esetben például megadhatjuk a Képmegjelenítőt, hogy megjelenítse a DVD borítóképét.
    Ugyanaz, mint... Megnyit egy fájl-ablakot, amiben kiválaszthatunk egy olyan fájlt, amit a kívánt program nyit meg, így ezt a típust is azt fogja megnyitni.
    + +

    +index +További jellemzők

    +

    Itt megadhatunk minden olyan további jellemzőt, amit használni akarunk. A Hozzáadás... gombon kattitnva az alábbi ablakot kapjuk:

    +filetype-extra-attribute.png +
      +
    • Jellemző neve - Ez jelenik meg például egy oszlop neveként a Nyomkövető ablakban.

    • +
    • Belső név - Indexeléskor és kereséskor használt név.

    • +
    • Típus - Megadja a jellemző adat-típusát, hogy milyen jellegű adatot tárol majd, és hogy kereséskor hogyan lehet rá hivatkozni. +
        +
      • String - egyszerű szöveg
      • +
      • Boolean - bináris adat, mely lehet 1 vagy 0
      • +
      • Integer - egész számok az alábbi tartományokban: +
          +
        • 8 bit: ± 255
        • +
        • 16 bit: ± 65,535
        • +
        • 32 bit: ± 4,294,967,295
        • +
        • 64 bit: ± 18,446,744,073,709,551,615
        • +
        +
      • +
      • Float - lebegőpontos számok, egy tizedes jegyig
      • +
      • Double - lebegőpontos számok, két tizedes jegyig
      • +
      • Time - dátum és idő formátum
      • +
      +
    • +
    +
      +
    • Látható - Csak a négyzet bejelölésekor jelenik meg a jellemző a Nyomkövető ablakban. Mivel a Nyomkövető lesz a adatbázisunk felülete, így ezt be kell jelölni, majd néhány megjelenítési beállítást is meg kell adni:
        +
      • Megjelenítés így - Hagyjuk "Default"-on (alapértelmezett). A későbbiekben több típus is választható, mint például sáv.
      • +
      • Szerkeszthető - A jellemző szerkeszthetősége a Nyomkövető ablakban.
      • +
      • Szélesség - A jellemzőhöz tartozó oszlop alapértelmezett szélessége.
      • +
      • Igazítás - Az oszlop igazítása balra, középre vagy jobbra.
      • +
    +

    Ezek után adjuk meg a következő jellemzőket:

    + + + + + + + + + + +
    Belső névJellemző típusaindexelt?Leírás
    DVDdb:title egyszerű szöveg igen Cím
    DVDdb:genre egyszerű szöveg igen Kategória
    DVDdb:url egyszerű szöveg nem URL
    DVDdb:cast egyszerű szöveg igen Rendező
    DVDdb:author egyszerű szöveg nem Kiadó
    DVDdb:rating 32 bites szám igen Értékelés
    DVDdb:studio egyszerű szöveg nem Stúdió
    DVDdb:lent egyszerű szöveg igen Kinél van
    + +

    +index +Indexelés

    +

    Mielőtt adatot adnánk a mi kis DVD adatbázisunkhoz, előtte néhány jellemzőt az Indexhez kell adnunk. Csak az indexel jellemzők használhatóak a Lekérdezéseknél.
    +El kell döntenünk azt is, hogy miket akarunk majd a jövőben keresni. Tehát, hogy ne kelljen majd megkérdezni, hogy "Vajon milyen filmjeim vannak a Brad Wright rendezésével?" vagy azt, hogy "Van-e rossz értékeléssel rendelkező természetfilmem?".

    +

    Ezekre a kérdésekre a következő jellemzőket kell indexelnünk:

    + + + + + + +
    Belső névJellemző típusa
    DVDdb:titleegyszerű szöveg
    DVDdb:genreegyszerű szöveg
    DVDdb:castegyszerű szöveg
    DVDdb:rating32 bites szám
    + +

    Az indexeléshez pedig a következő sorokat kell kiadni a Terminálban:

    +
    mkindex -t string DVDdb:title
    +mkindex -t string DVDdb:genre
    +mkindex -t string DVDdb:cast
    +mkindex -t int DVDdb:rating
    +

    A -t opció a jellemző típusát adja meg, ami az értékelés kivételével (ami "int" (szám)) mind "string" (szöveg).

    + +

    +index +Adatok megadása

    +

    Nos, minden előkészülettel végeztünk, mostmár hozzáadhatjuk az adatokat az adatbázisunkhoz.
    +Mivel az alap fájlunk egy borító-kép, ezért az interneten keressük meg (például az IMDB-n) és mentsük le azt egy mappába, ahol majd az adatbázisunkat fogjuk tárolni.

    +

    A mappát megnyitva azt látjuk, hogy van egy kép benne. Jobb gombbal kattitnva a fájlon, a típusát meg kell változtatnunk application/DVDdb típusra a Fájltípus kiegészítőben. További információ a Fájltípusok fejezetben.

    +

    Most pedig válasszuk ki, hogy mely jellemzők jelenjenek meg. Ezt megtehetjük a Jellemzők menüből vagy az oszlopfejléceken, majd az oszlopokat is átrendezhetjük kedvünkre:

    +filetypes-dvddb-empty.png +

    Egy üres jellemzőn kattintva (vagy ALT E) a szerkesztő módba jutunk. A TAB és a SHIFT TAB kombinációval válthatunk a mezők (jellemzők) között.

    +

    A példánk alapján az adatbázis feltöltése egy kép letöltésével kezdődik az internetről, majd annak a típusát módosítjuk. Azonban van más, elegánsabb módja is a folyamatnak. Csak másoljunk egy üres fájlt a mi fájltípusunkkal a /boot/home/config/settings/Tracker/Tracker New Templates mappába, és nevezzük át DVDdb-re. Ezzel létrehoztunk egy sablont.

    +

    Egy Nyomkövető ablakban jobb gombbal kattintva, egy új bejegyzést találunk majd az Új... almenüben.

    + +

    +index +Lekérdezés az adatbázisból

    +

    Néhány óra után már egy remek kis adatbázist összehoztunk, így más tudunk keresgélni a filmek között, például megkereshetjük az akciófilmeket.

    +

    Készíthetünk egy lekérdezést csak egy adott fájltípusra is, és a keresési eredményeket is hozzáigazíthatjuk ahhoz.
    +Nyissuk meg a DVDdb fájlokat tartalmazó mappát és rendezzük el az oszlopokat ahogy szeretnénk, hogy megjelenjenek. Ezt a megjelenést másoljuk a Jellemzők | Elrendezés másolása menüvel.

    +

    Most nyissuk meg a /boot/home/config/settings/Tracker/DefaultQueryTemplates mappát, hozzunk létre egy új mappát és nevezzük át a csoport/fájltípus formátumára, de itt cseréljük ki a "per" jelet egy aláhúzásra; vagyis, ebben az esetben "applications_DVDdb" lesz a mappa neve.

    +

    Végül a mappát megnyitva és a Jellemzők | Elrendezés beillesztése menüt választva az alábbi eredményt kapjuk:

    +query-dvddb.png + +
    +
    + + + + + diff --git a/docs/userguide/hu/workshop-wlan.html b/docs/userguide/hu/workshop-wlan.html new file mode 100644 index 0000000000..f2613fbdc7 --- /dev/null +++ b/docs/userguide/hu/workshop-wlan.html @@ -0,0 +1,150 @@ + + + + + + + + + Műhely: vezeték nélküli hálózat + + + + + + + + +
    +
    + + + + + +
    Index
    + Használható eszköz működére bírása
    + Csatlakozás vezeték nélküli hálózathoz
    + Kapcsolódás a parancssorból
    + Tippek +
    + +

    Műhely: vezeték nélküli hálózat

    + +

    Manapság az internet mindennapi szükségletünkké vált. A hálózati eszközök sokfélesége miatt az azokhoz tartozó vezérlők frissen tartsása szinte lehetetlen ilyen kis project esetében, mint a Haiku, ami a FreeBSD kompatibilis hálózati struktúrát használja a vezérlőkhöz.
    +Bár ez a módszer biztosítja az eszközök jelentős részének a használatát, azonban sajnos nem az összes jelenleg is elérhetőt. Egy interneten megtalálható listában ellenőrizhetjük, hogy melyek a jelenleg használható eszközök, illetve vessünk egy pillantást a FreeBSD 9's release hardware notes oldalára is.

    +
    Jelenleg csak a PCI, PCI-X, PCI-Express, Mini PCI, és a Mini PCI-Express eszközök működhetnek.
    +A PCMCIA, a CardBus, az ExpressCard, az USB és az ISA esetében további fejlesztésekre van szükség.
    + +

    +index +Használható eszköz működére bírása

    +

    Még ha az első akadályt le is küzdöttük (használható eszközünk van), akkor is adódhatnak problémák a vezeték nélküli eszközökkel kapcsolatban, ugyanis azokhoz szükség van bináris, eszköz-vezértlő fájlokra (firmware) is. A Haiku nem tartalmazhat néhány ilyen fájlt, ugyanis jogi akadája van. Ugyanakkor, a Haiku tartalmaz egy szkriptet, amivel letölthetjük a szükséges fájlokat. +Tehát, ha vezeték nélküli hálózatot akarsz használni, akkor elsőként ajánlott ezt a szkriptet használni, hogy meglegyen minden szükséges fájl.

    +

    Ehhez a következő parancsot kell kiadni a Terminálban:

    +
    install-wifi-firmwares.sh
    +

    Itt el kell olvasni a használati feltételeket, és elfogadásuk után telepíthetjük a fájlokat.

    + +

    Ha nem rendelkezel internet kapcsolattal, hogy letöltsd a fájlokat, akkor van egy másik megoldás is. +További információk a Tippeknél alább.

    + +

    +index +Csatlakozás vezeték nélküli hálózathoz

    +

    Alap esetben a Haiku az első nyílt hálózathoz automatikusan csatlakozni fog. A Hálózat állapot kisalkalmazásból választhatunk másik hálózatot is.

    +

    Jobb gombbal kattitnva az ikonon az Asztalsávon válasszuk ki a használni kívánt nyilvános hálózatot (amelyik "SSID"-je látható) a menüből.

    +join-network.png +

    Ekkor kapunk egy ablakot, ahol a biztonság típusát (WPA/WPA2, WEP, Open (nyílt, nem védett)) és a jelszót megadva a Rendben gombra kattintás után elkezdődik a bejelentkezés a hálózatra.
    Ez az eszköz és a hálózat tulajdonságaitól fuggően hosszabb időt is igénybe vehet. A folyamat aktuális állapotáról az információs ablak tájékoztat minket (FIGYELEM: jelenleg ha a Nyelvi beállításoknál a mappa és fájlnevek lefordítása be van jelölve, akkor ez nem jelenik meg!):

    +join-network.gif +

    Mikor azt látjuk, hogy "Kész." és az Asztalsávon a Hálózat állapota ikonja zöld pöttyre változik, akkor a kapcsolódás sikeres volt. Ha "Nincs kapcsolat." üzenetet kapunk, és egy sárga háromszög jelenik meg az Asztalsávon, akkor lehetséges, hogy rossz jelszót adtunk meg.

    + +

    +index +Kapcsolódás a parancssorból

    +

    Ha a parancssort részesíted előnyben, vagy szkriptet akarsz írni, esetleg a ~/config/boot/UserBootscript-et akarod használni, hogy automatikusan kapcsolódj a hálózathoz, akkor az ifconfig parancsot kell használni.

    +

    A Terminálban adjuk ki az alábbi parancsot:

    +
    ifconfig /dev/net/iprowifi3945/0 scan
    +name                             address              signal  auth
    +haiku-top                        01:d0:19:a6:88:42        30  WPA
    +ArcorInternet123                 00:20:12:a4:29:e1        15  WPA
    +

    Persze, a saját hálózati kártyánk útvonalát kell megadni.
    +A parancs eredményeként megkapjuk a nyilvános hálózatok neveit (SSID), az egyedi azonosítójukat (MAC), a jelerősséget, illetve a biztonság típusát.

    +

    A csatlakozáshoz meg kell adni a hálózati kártyát, mint első paramétert, majd az SSID-t és a jelszót a "join" (csatlakozás) opció után:

    +
    ifconfig /dev/net/iprowifi3945/0 join {SSID} {jelszó}
    +

    Előtte persze meg kell győződni arról, hogy a hálózati kártya már megfelelően működik miután elindítottuk a rendszert, ugyanis ellenkező esetben a rendszer az ifconfig parancsot figyelment kívül hagyja. Az eszköztől és a hálózattól függően ez hosszabb ideig is eltarthat, ezért ajánlott figyelni az információs ablakban megjelenő üzeneteket...

    + +

    +index +Tippek

    + + +
    +
    + + + + + diff --git a/docs/userguide/hu/workspaces.html b/docs/userguide/hu/workspaces.html new file mode 100644 index 0000000000..a755884a00 --- /dev/null +++ b/docs/userguide/hu/workspaces.html @@ -0,0 +1,85 @@ + + + + + + + + + Munkaasztalok (Workspaces) + + + + + + + + +
    +
    + +

    Munkaasztalok (Workspaces)

    + +

    A munkaasztalok virtuális asztalok, melyek mindegyikének egyéni felbontást, színmélységet és hátteret adhatunk. Összesen 32 állítható be a Képernyő beállításainál.

    + +workspace_overviewpng.png + +

    +index +Munkaasztalok közötti váltás

    +

    A munkaasztalok között a Munkaasztalok program segítségével válthatunk (a megfelelő munkaasztalra kattintva) vagy az ALT Fx billentyű-kombinációval, ahol az "x" a munkaasztal száma. Ajánlott a munkaasztalokat 4 sorba rendezni, épp úgy, ahogy a Fx billentyűk vannak csoportosítva.
    +Ugyanakkor, ha az Asztalsávon kiválasztunk egy ablakot, akkor automatikusan arra a munkaasztalra kerülünk, amelyiken az ablak található.

    +

    Egy másik kényelmes megoldás, ha a CTRL ALT /// kombinációkkal navigálunk a munkaasztalok között. Ha a SHIFT billentyűt lenyomva tartjuk, az aktív ablak egy új munkaasztalra kerül.

    +

    Oda-vissza válthatunk 2 munkaasztal között az ALT ` (az aktuális billentyű a kisztástól függ - ez az ESC alatti billentyű) kombinációval. A SHIFT lenyomásával pedig az ablakot magunkkal vihetjük.

    + +
    +
    + + + + + diff --git a/docs/userguide/images/apps-images/deskcalc.png b/docs/userguide/images/apps-images/deskcalc.png deleted file mode 100644 index 35f6deb423..0000000000 Binary files a/docs/userguide/images/apps-images/deskcalc.png and /dev/null differ diff --git a/docs/userguide/images/flags/ca.png b/docs/userguide/images/flags/ca.png new file mode 100644 index 0000000000..15ef65e192 Binary files /dev/null and b/docs/userguide/images/flags/ca.png differ diff --git a/docs/userguide/images/flags/hu.png b/docs/userguide/images/flags/hu.png new file mode 100644 index 0000000000..6ddb72d905 Binary files /dev/null and b/docs/userguide/images/flags/hu.png differ diff --git a/docs/userguide/images/flags/pt_BR.png b/docs/userguide/images/flags/pt_BR.png new file mode 100644 index 0000000000..93c6ee03c3 Binary files /dev/null and b/docs/userguide/images/flags/pt_BR.png differ diff --git a/docs/userguide/it/applications.html b/docs/userguide/it/applications.html index a6e10b4b89..0c627b9931 100644 --- a/docs/userguide/it/applications.html +++ b/docs/userguide/it/applications.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/activitymonitor.html b/docs/userguide/it/applications/activitymonitor.html index ee43cff5e3..1bd63f0984 100644 --- a/docs/userguide/it/applications/activitymonitor.html +++ b/docs/userguide/it/applications/activitymonitor.html @@ -43,6 +43,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/bepdf.html b/docs/userguide/it/applications/bepdf.html index 7a3463054b..cc272de210 100644 --- a/docs/userguide/it/applications/bepdf.html +++ b/docs/userguide/it/applications/bepdf.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/bootmanager.html b/docs/userguide/it/applications/bootmanager.html index dc14430eb9..de3d14be50 100644 --- a/docs/userguide/it/applications/bootmanager.html +++ b/docs/userguide/it/applications/bootmanager.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/cdplayer.html b/docs/userguide/it/applications/cdplayer.html index 6eb2bf1865..923d4c2a17 100644 --- a/docs/userguide/it/applications/cdplayer.html +++ b/docs/userguide/it/applications/cdplayer.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/charactermap.html b/docs/userguide/it/applications/charactermap.html index 32e7f3f79c..73b4aa39be 100644 --- a/docs/userguide/it/applications/charactermap.html +++ b/docs/userguide/it/applications/charactermap.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/cli-apps.html b/docs/userguide/it/applications/cli-apps.html index f363351c7f..ca471023f3 100644 --- a/docs/userguide/it/applications/cli-apps.html +++ b/docs/userguide/it/applications/cli-apps.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/codycam.html b/docs/userguide/it/applications/codycam.html index 0f43910a59..3c248a76f7 100644 --- a/docs/userguide/it/applications/codycam.html +++ b/docs/userguide/it/applications/codycam.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/deskcalc.html b/docs/userguide/it/applications/deskcalc.html index 7d8f6565d7..4c2f2710f4 100644 --- a/docs/userguide/it/applications/deskcalc.html +++ b/docs/userguide/it/applications/deskcalc.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -61,7 +63,7 @@


    Sebbene non si noti a prima vista, DeskCalc è una semplice calcolatrice dotata di caratteristiche interessanti.

    -deskcalc.png +deskcalc.png
    • DeskCalc comprende molto più di quanto il tastierino suggerisca.
      Oltre gli operatori +, -, *, /, %, ^ e le costanti pi ed e sono supportate le seguenti funzioni matematiche:
      diff --git a/docs/userguide/it/applications/diskprobe.html b/docs/userguide/it/applications/diskprobe.html index 76b1118217..a0ffd2f852 100644 --- a/docs/userguide/it/applications/diskprobe.html +++ b/docs/userguide/it/applications/diskprobe.html @@ -41,6 +41,8 @@

    • Português
    • Suomi
    • Slovenčina
    • +
    • Magyar
    • +
    • Português (Brazil)
    • English
    diff --git a/docs/userguide/it/applications/diskusage.html b/docs/userguide/it/applications/diskusage.html index 5645c9c53a..66f5b50b5e 100644 --- a/docs/userguide/it/applications/diskusage.html +++ b/docs/userguide/it/applications/diskusage.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/drivesetup.html b/docs/userguide/it/applications/drivesetup.html index bf8d0d1ba3..4955a933c6 100644 --- a/docs/userguide/it/applications/drivesetup.html +++ b/docs/userguide/it/applications/drivesetup.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/expander.html b/docs/userguide/it/applications/expander.html index 932d878be2..6c97b63514 100644 --- a/docs/userguide/it/applications/expander.html +++ b/docs/userguide/it/applications/expander.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -53,6 +55,7 @@
    +
    La traduzione di questa pagina non è stata completata. Per questo motivo le parti non tradotte sono visibili in inglese.

    expander-icon_64.pngExpander

    @@ -65,15 +68,15 @@ È sufficiente effettuare un doppio clic su un archivio per visualizzare la semplice interfaccia dell'applicazione :

    expander.png

    - +
    OrigineALT Saprirà una finestra di selezione file per cercare un archivio da decomprimere.
    OrigineALT Oaprirà una finestra di selezione file per cercare un archivio da decomprimere.
    DestinazioneALT Daprirà una finestra di selezione file per impostare una destinazione.
    EspandiALT Edarà inizio al processo di decompressione che può sempre essere annullato con ALT K.

    È possibile attivare o disattivare la visualizzazione dei file tramite l'impostazione di Show Contents o premendo ALT L.

    Expander si occupa solamente di decomprimere interi archivi.
    Non è possibile né decomprimere singoli file né aggiungerne o rimuoverne da un archivio esistente.
    -

    Edit | Preferences... o ALT P apre un pannello per le preferenze che offre alcune impostazioni utili per configurare il comportamento di Expander.
    -Le opzioni si spiegano tutte pressoché da sole:

    +

    Settings | Settings... or ALT S opens a preference panel that offers some useful settings to adjust Expander's behavior.
    +The options are all self-explanatory:

    expander-preferences.png

    diff --git a/docs/userguide/it/applications/icon-o-matic.html b/docs/userguide/it/applications/icon-o-matic.html index 3b3c1363d2..232e4205c5 100644 --- a/docs/userguide/it/applications/icon-o-matic.html +++ b/docs/userguide/it/applications/icon-o-matic.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/installer.html b/docs/userguide/it/applications/installer.html index 47be00fe7c..334fe1f02e 100644 --- a/docs/userguide/it/applications/installer.html +++ b/docs/userguide/it/applications/installer.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/list-cli-apps.html b/docs/userguide/it/applications/list-cli-apps.html index b3a35ed6e3..7dfbc31076 100644 --- a/docs/userguide/it/applications/list-cli-apps.html +++ b/docs/userguide/it/applications/list-cli-apps.html @@ -43,6 +43,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/magnify.html b/docs/userguide/it/applications/magnify.html index 6599a854cc..6334bfafdb 100644 --- a/docs/userguide/it/applications/magnify.html +++ b/docs/userguide/it/applications/magnify.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/mail.html b/docs/userguide/it/applications/mail.html index ca6503b502..0daba2530d 100644 --- a/docs/userguide/it/applications/mail.html +++ b/docs/userguide/it/applications/mail.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/mediaplayer.html b/docs/userguide/it/applications/mediaplayer.html index 2c23a72b04..048a4f7d5e 100644 --- a/docs/userguide/it/applications/mediaplayer.html +++ b/docs/userguide/it/applications/mediaplayer.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/midiplayer.html b/docs/userguide/it/applications/midiplayer.html index 617229bf0b..320dbe4c25 100644 --- a/docs/userguide/it/applications/midiplayer.html +++ b/docs/userguide/it/applications/midiplayer.html @@ -39,6 +39,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/packageinstaller.html b/docs/userguide/it/applications/packageinstaller.html index 0c91343e44..7eb596af5c 100644 --- a/docs/userguide/it/applications/packageinstaller.html +++ b/docs/userguide/it/applications/packageinstaller.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/pe.html b/docs/userguide/it/applications/pe.html index f679c7a647..a7f8b7aabe 100644 --- a/docs/userguide/it/applications/pe.html +++ b/docs/userguide/it/applications/pe.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/people.html b/docs/userguide/it/applications/people.html index 1631b5e5e1..a427ec5a76 100644 --- a/docs/userguide/it/applications/people.html +++ b/docs/userguide/it/applications/people.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/poorman.html b/docs/userguide/it/applications/poorman.html index 439a96ebaa..88f1e4c8aa 100644 --- a/docs/userguide/it/applications/poorman.html +++ b/docs/userguide/it/applications/poorman.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/screenshot.html b/docs/userguide/it/applications/screenshot.html index ca35d1b7c0..63956f5163 100644 --- a/docs/userguide/it/applications/screenshot.html +++ b/docs/userguide/it/applications/screenshot.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/showimage.html b/docs/userguide/it/applications/showimage.html index 421e7c38a9..be30b0a677 100644 --- a/docs/userguide/it/applications/showimage.html +++ b/docs/userguide/it/applications/showimage.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -65,7 +67,7 @@ ShowImage provides minimal editing features to crop, rotate and flip images and

    The View menu offers to start a Slide show of all images in a folder (or query result window) and set a Slide delay from 2 to 20 seconds.

    Other commands apply to the currently displayed image (without changing the size of the window):
    Original size shows the image with a 100% zoom factor.
    -Fit to window shrinks the image back into the window fame, e.g. after having zoomed into it or after resizing the window.
    +Fit to window shrinks the image back into the window frame, e.g. after having zoomed into it or after resizing the window.
    Zoom in and Zoom out move into and out of the image in 10% steps. Zooming is also done with the mouse wheel; to pan an image bigger than the window, simply left-click and drag your mouse around.

    Two settings don't just apply to the currently displayed image and are remembered when browsing from one image to the next:
    High quality zooming applies a very fast filter when zooming to reduce jagged lines and produce a smoother result.
    diff --git a/docs/userguide/it/applications/soundrecorder.html b/docs/userguide/it/applications/soundrecorder.html index 99cfc23d26..80f10de2e9 100644 --- a/docs/userguide/it/applications/soundrecorder.html +++ b/docs/userguide/it/applications/soundrecorder.html @@ -40,6 +40,8 @@

  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/stylededit.html b/docs/userguide/it/applications/stylededit.html index 969ae9fb69..20e374ea6e 100644 --- a/docs/userguide/it/applications/stylededit.html +++ b/docs/userguide/it/applications/stylededit.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/terminal.html b/docs/userguide/it/applications/terminal.html index 507006eb5a..d44050f8f2 100644 --- a/docs/userguide/it/applications/terminal.html +++ b/docs/userguide/it/applications/terminal.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/textsearch.html b/docs/userguide/it/applications/textsearch.html index f76136f88c..28dcf5842b 100644 --- a/docs/userguide/it/applications/textsearch.html +++ b/docs/userguide/it/applications/textsearch.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/tv.html b/docs/userguide/it/applications/tv.html index 5368da8001..3a2fcb3681 100644 --- a/docs/userguide/it/applications/tv.html +++ b/docs/userguide/it/applications/tv.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/vision.html b/docs/userguide/it/applications/vision.html index a85b560682..2ee55261d5 100644 --- a/docs/userguide/it/applications/vision.html +++ b/docs/userguide/it/applications/vision.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/webpositive.html b/docs/userguide/it/applications/webpositive.html index 771f6691f2..d724658b12 100644 --- a/docs/userguide/it/applications/webpositive.html +++ b/docs/userguide/it/applications/webpositive.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/applications/wonderbrush.html b/docs/userguide/it/applications/wonderbrush.html index 4babd376c7..942b44134d 100644 --- a/docs/userguide/it/applications/wonderbrush.html +++ b/docs/userguide/it/applications/wonderbrush.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/attributes.html b/docs/userguide/it/attributes.html index 33e80faa76..b4c9412c2d 100644 --- a/docs/userguide/it/attributes.html +++ b/docs/userguide/it/attributes.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/bash-scripting.html b/docs/userguide/it/bash-scripting.html index f08a1182b0..bf1a3fc476 100644 --- a/docs/userguide/it/bash-scripting.html +++ b/docs/userguide/it/bash-scripting.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/bootloader.html b/docs/userguide/it/bootloader.html index 7c67fb3fa5..27f123e330 100644 --- a/docs/userguide/it/bootloader.html +++ b/docs/userguide/it/bootloader.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/contents.html b/docs/userguide/it/contents.html index 0a5d89918a..ea7cc49949 100644 --- a/docs/userguide/it/contents.html +++ b/docs/userguide/it/contents.html @@ -4,7 +4,7 @@ @@ -42,6 +43,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -104,14 +107,17 @@ Si può aggiungere ed eliminare ogni voce come collegamenti alle applicazioni, d
  • Applications

    - - - - + + + + + +
    Ordina le applicazioni attive Ordina alfabeticamente le applicazioni in esecuzione.
    Tracker sempre primo Anche se le applicazioni vengono ordinate alfabeticamente la voce Tracker rimane la prima della lista.
    Mostra l'espansore dell'applicazione Offre un piccolo widget per mostrare o nascondere tutte le finestre di un programma direttamente dalla sua voce nella Deskbar.
    Espandi le nuove applicazioni I programmi appena lanciati hanno la loro finestra estesa automaticamente.
    Sort running applications Sorts the list of running programs alphabetically.
    Tracker always first Even if you sort alphabetically, the Tracker entry always stays first in the list.
    Show application expander Provides a small widget to show/hide all windows of a program directly under its entry in the Deskbar.
    Expand new applications Newly launched programs have their windows automatically expanded under their entry in the Deskbar.
    Hide application names Removes the text labels of running applications.
    Icon size Adjusts the icon size of running applications.
  • Clock

    - + +
    Mostra i secondi Aggiunge la visualizzazione dei secondi sull'orologio.
    Show seconds Adds the display of seconds to the clock.
    Show day of week Adds the abbreviation of the weekday to the clock.
  • diff --git a/docs/userguide/it/desktop-applets.html b/docs/userguide/it/desktop-applets.html index e6380cffa4..5516a39323 100644 --- a/docs/userguide/it/desktop-applets.html +++ b/docs/userguide/it/desktop-applets.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/desktop-applets/launchbox.html b/docs/userguide/it/desktop-applets/launchbox.html index 2546109625..cf5c68909d 100644 --- a/docs/userguide/it/desktop-applets/launchbox.html +++ b/docs/userguide/it/desktop-applets/launchbox.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/desktop-applets/networkstatus.html b/docs/userguide/it/desktop-applets/networkstatus.html index f34cc708d8..4e12460109 100644 --- a/docs/userguide/it/desktop-applets/networkstatus.html +++ b/docs/userguide/it/desktop-applets/networkstatus.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -64,7 +66,7 @@ Wherever installed, it's operated via a right-click context menu.

    NetworkStatus applet
    The first section contains all network devices' names and their state. Clicking on such an entry brings up a window showing its IP, broadcast and netmask address.
    -Below is a list of all wireless networks found by the first wireless adapter and an indicator of their signal strength.
    +Below is a list of all wireless networks found by the first wireless adapter and an indicator of their signal strength. Have a look at the Workshop: Wireless networking for more information on how to set up a connection.
    Lastly, you can Open network preferences... to change your network configuration or Quit the applet.

    Icone di stato

    diff --git a/docs/userguide/it/desktop-applets/powerstatus.html b/docs/userguide/it/desktop-applets/powerstatus.html index 91d5bae71c..58bbe8f97e 100644 --- a/docs/userguide/it/desktop-applets/powerstatus.html +++ b/docs/userguide/it/desktop-applets/powerstatus.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/desktop-applets/processcontroller.html b/docs/userguide/it/desktop-applets/processcontroller.html index 450a447341..8aaa8aca3a 100644 --- a/docs/userguide/it/desktop-applets/processcontroller.html +++ b/docs/userguide/it/desktop-applets/processcontroller.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/desktop-applets/workspaces.html b/docs/userguide/it/desktop-applets/workspaces.html index fe98efceb5..08518de836 100644 --- a/docs/userguide/it/desktop-applets/workspaces.html +++ b/docs/userguide/it/desktop-applets/workspaces.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/filesystem-layout.html b/docs/userguide/it/filesystem-layout.html index 1f5d4950e1..4fe0bf5af3 100644 --- a/docs/userguide/it/filesystem-layout.html +++ b/docs/userguide/it/filesystem-layout.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -53,13 +55,14 @@
    +
    La traduzione di questa pagina non è stata completata. Per questo motivo le parti non tradotte sono visibili in inglese.

    La struttura del FileSystem di Haiku

    Il filesystem di Haiku è molto trasparente, per non confondere l'utente si cerca sempre di non assegnare nomi criptici per i file e per le cartelle di sistema. Le cartelle ed i file sono importanti per il corretto funzionamento del sistema e sono protetti dalle modifiche accidentali mostrando uno dei seguenti avvertimenti:

    achtung-user.png  achtung-system.png -

    Il secondo avvertimento compare qualora si provi a rinominare o a cancellare qualcosa nella gerarchia di sistema. Il bottone "Do it" diventerà cliccabile solamente tenendo premuto il tasto SHIFT.

    +

    The second alert pops up if you try to rename or delete something in the system hierarchy. Here, the "Rename" button will only become clickable when you're holding down the SHIFT key.

    Generalmente, ci sono tre directory separate che partono dalla cartella principale del volume di avvio:

    diff --git a/docs/userguide/it/filetypes.html b/docs/userguide/it/filetypes.html index 4a0ba360b4..2ffddc80c4 100644 --- a/docs/userguide/it/filetypes.html +++ b/docs/userguide/it/filetypes.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/gui.html b/docs/userguide/it/gui.html index 034e144d00..9876b88d23 100644 --- a/docs/userguide/it/gui.html +++ b/docs/userguide/it/gui.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -78,13 +80,14 @@
  • Si può mandare una finestra in background con un click destro sul suo tab (o sul suo bordo).
  • Il pulsante di chiusura.

  • Il bottone "zoom" (o CTRL ALT Z). Nella maggior parte delle applicazioni, espanderà la finestra alla dimensione massima. Ma questo, tuttavia, non è obbligatorio. Le finestre del Tracker, per esempio, verranno ridimensionate per adattarsi nel miglior modo possibile al contenuto.

  • -
  • L'angolo di ridimensionamento. Il trascinamento di una finestra in qualsiasi altro luogo sul confine sposterà la finestra.

  • +
  • The window border. Left-dragging moves the window, right-dragging resizes.

  • +
  • The resize corner.

  • index A quick way to move or resize windows

    -

    Moving and resizing windows is a large part of interacting with several concurrently running applications. Instead of aiming at the small yellow title tab or the even tinier window border, there's a more convenient way to move a window. Also, additionally to its small size, the resize corner has another limitation: It only allows resizing at and in the direction of the lower right corner.

    +

    Moving and resizing windows is a large part of interacting with several concurrently running applications. Instead of aiming at the small yellow title tab or the even tinier window border, there's a more convenient way to move a window. Also, additionally to its small size, the resize corner has another limitation: It only allows resizing at and in the direction of the lower right corner.
    Right-dragging a border for resizing works, but again you'll have to aim carefully.

    To address these issues, Haiku provides a neat solution using the window management key combo CTRL ALT and the mouse. See also chapter Shortcuts and key combinations for more shortcuts concerning window management.

    resizing.png

    Holding down CTRL ALT will highlight the window borders nearest to the mouse pointer. Move the mouse in the direction of another border to change the target. Click and dragging with the right mouse button will resize the window along the highlighted border(s).

    diff --git a/docs/userguide/it/images/apps-images/deskcalc.png b/docs/userguide/it/images/apps-images/deskcalc.png new file mode 100644 index 0000000000..b4b14b991d Binary files /dev/null and b/docs/userguide/it/images/apps-images/deskcalc.png differ diff --git a/docs/userguide/it/images/deskbar-images/configure.png b/docs/userguide/it/images/deskbar-images/configure.png index 228d1f1175..3f53b2280d 100644 Binary files a/docs/userguide/it/images/deskbar-images/configure.png and b/docs/userguide/it/images/deskbar-images/configure.png differ diff --git a/docs/userguide/it/images/filesystem-layout-images/achtung-system.png b/docs/userguide/it/images/filesystem-layout-images/achtung-system.png index f24c253bc8..fbcebee00c 100644 Binary files a/docs/userguide/it/images/filesystem-layout-images/achtung-system.png and b/docs/userguide/it/images/filesystem-layout-images/achtung-system.png differ diff --git a/docs/userguide/it/images/filesystem-layout-images/achtung-user.png b/docs/userguide/it/images/filesystem-layout-images/achtung-user.png index 9a77cfbb9d..fa6d1cfa24 100644 Binary files a/docs/userguide/it/images/filesystem-layout-images/achtung-user.png and b/docs/userguide/it/images/filesystem-layout-images/achtung-user.png differ diff --git a/docs/userguide/it/images/prefs-images/appearance-antialiasing.png b/docs/userguide/it/images/prefs-images/appearance-antialiasing.png index b57d708a5a..cbb49dc808 100644 Binary files a/docs/userguide/it/images/prefs-images/appearance-antialiasing.png and b/docs/userguide/it/images/prefs-images/appearance-antialiasing.png differ diff --git a/docs/userguide/it/images/prefs-images/appearance-colors.png b/docs/userguide/it/images/prefs-images/appearance-colors.png index a3e2391c2c..baf96016ad 100644 Binary files a/docs/userguide/it/images/prefs-images/appearance-colors.png and b/docs/userguide/it/images/prefs-images/appearance-colors.png differ diff --git a/docs/userguide/it/images/prefs-images/appearance-decorators.png b/docs/userguide/it/images/prefs-images/appearance-decorators.png new file mode 100644 index 0000000000..99d9ade42b Binary files /dev/null and b/docs/userguide/it/images/prefs-images/appearance-decorators.png differ diff --git a/docs/userguide/it/images/prefs-images/appearance-fonts.png b/docs/userguide/it/images/prefs-images/appearance-fonts.png new file mode 100644 index 0000000000..c962c53232 Binary files /dev/null and b/docs/userguide/it/images/prefs-images/appearance-fonts.png differ diff --git a/docs/userguide/it/images/prefs-images/e-mail-accounts.png b/docs/userguide/it/images/prefs-images/e-mail-accounts.png new file mode 100644 index 0000000000..17694e831e Binary files /dev/null and b/docs/userguide/it/images/prefs-images/e-mail-accounts.png differ diff --git a/docs/userguide/it/images/workshop-wlan-images/join-network.png b/docs/userguide/it/images/workshop-wlan-images/join-network.png new file mode 100644 index 0000000000..2fedecda91 Binary files /dev/null and b/docs/userguide/it/images/workshop-wlan-images/join-network.png differ diff --git a/docs/userguide/it/images/workshop-wlan-images/join-status.gif b/docs/userguide/it/images/workshop-wlan-images/join-status.gif new file mode 100644 index 0000000000..dea116d418 Binary files /dev/null and b/docs/userguide/it/images/workshop-wlan-images/join-status.gif differ diff --git a/docs/userguide/it/index.html b/docs/userguide/it/index.html index 96d78201b7..0671ab4907 100644 --- a/docs/userguide/it/index.html +++ b/docs/userguide/it/index.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/keyboard-shortcuts.html b/docs/userguide/it/keyboard-shortcuts.html index 3e59bec2bc..4c72e77f19 100644 --- a/docs/userguide/it/keyboard-shortcuts.html +++ b/docs/userguide/it/keyboard-shortcuts.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/it/preferences.html b/docs/userguide/it/preferences.html index 022fa643c8..8568bdd006 100644 --- a/docs/userguide/it/preferences.html +++ b/docs/userguide/it/preferences.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -70,8 +72,6 @@
    - - diff --git a/docs/userguide/it/preferences/appearance.html b/docs/userguide/it/preferences/appearance.html index 212d92c6ec..05f5a2795b 100644 --- a/docs/userguide/it/preferences/appearance.html +++ b/docs/userguide/it/preferences/appearance.html @@ -4,7 +4,7 @@ diff --git a/docs/userguide/it/preferences/fonts.html b/docs/userguide/it/preferences/fonts.html index bd0f40722a..793addc2fd 100644 --- a/docs/userguide/it/preferences/fonts.html +++ b/docs/userguide/it/preferences/fonts.html @@ -38,12 +38,14 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  FileTypes  -::  Preferenze  -::  Keyboard  » + « FileTypes +:: Preferenze +:: Keyboard » @@ -51,6 +53,8 @@
    La traduzione di questa pagina non è stata completata. Per questo motivo le parti non tradotte sono visibili in inglese.
    +

    Since "Fonts" moved into the Appearance panel, this is an outdated page. Do not translate!

    +

    fonts-icon_64.pngFonts

    /boot/system/ appartiene al sistema. Non deve essere modificata!
    Configura gli account per le tue e-mail
    iconFileTypes Aggiunge, rimuove e configura i tipi di file.
    iconFonts Configura i caratteri del sistema.
    iconKeyboard Configura il ritardo di ripetizione e la frequenza.
    iconKeymap
    @@ -62,8 +66,8 @@ fonts.png

    Haiku defines three standard fonts for different purposes. You set plain, bold and fixed font types and sizes that will be used throughout the system. Besides these, there's also a separate setting for the font used in menus.

    Deskbar:Preferenze
    - - + +
    Predefiniti riporta tutto ai valori predefiniti.
    Ripristina brings back the settings that were active when you started the Fonts preferences.
    Predefiniti riporta tutto ai valori predefiniti.
    Ripristina brings back the settings that were active when you started the Fonts preferences.

    @@ -76,9 +80,9 @@ diff --git a/docs/userguide/it/preferences/keyboard.html b/docs/userguide/it/preferences/keyboard.html index a2421a0d73..aa3e2e6ae8 100644 --- a/docs/userguide/it/preferences/keyboard.html +++ b/docs/userguide/it/preferences/keyboard.html @@ -38,10 +38,12 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  Fonts  + «  FileTypes  ::  Preferenze  ::  Keymap  »

    @@ -71,7 +73,7 @@ + + + + Workshop: Wireless networking + + + + + + + + +
    +
    +
    La traduzione di questa pagina non è stata completata. Per questo motivo le parti non tradotte sono visibili in inglese.
    + + + + + +
    Index
    + Getting supported hardware to work
    + Joining a wireless network
    + Joining from the command line
    + Tips +
    + +

    Workshop: Wireless networking

    + +

    Getting the networking to run is essential in today's need for permanent internet connection. As keeping up to date with all the different and ever changing hardware and drivers is quite impossible for a small project, Haiku relies on a FreeBSD compatibility layer for its networking drivers.
    +This ensures a massive amount of supported hardware, though probably not 100% of what's out there. See this list online for a list of supported models or check FreeBSD 9's release hardware notes.

    +
    Currently only PCI, PCI-X, PCI-Express, Mini PCI, and Mini PCI-Express devices are expected to work.
    +PCMCIA, CardBus, ExpressCard, USB and ISA devices still need more work to become functional.
    + +

    +index +Getting supported hardware to work

    +

    Even if the first hurdle of generally supported hardware is taken, some wireless network cards require binary firmware modules to properly operate. Haiku cannot include some of these proprietary firmware files due to licensing issues. Haiku does however include a simple script which will retrieve and install all of the needed proprietary bits for you. Generally, if you are planning to use wireless networking, it is a good idea to run this script to ensure your system has all of these firmwares available when they are needed.

    +

    Open a Terminal and type:

    +
    install-wifi-firmwares.sh
    +

    Now review the licenses and accept them to install all of the available firmware files.

    + +

    If you don't have internet access to download those lacking firmwares under Haiku, there's an offline method, see under tips below.

    + +

    +index +Joining a wireless network

    +

    By default, Haiku will join the first unencrypted wireless network it finds after booting up. To connect to a specific network, you use the Desktop applet NetworkStatus.

    +

    Right-click on its icon in the Deskbar and choose the network's public name (which is the "SSID" it broadcasts) from the context menu.

    +join-network.png +

    A window opens where you enter the type of authentication (probably WPA/WPA2, WEP is not a secure encryption anymore!) and the password for that wireless network. Click OK to start the login process.
    Depending on your hardware and network configuration this may take a while. You'll be kept informed of the progress by notifications:

    +join-network.gif +

    Once it reads "Ready" and the NetworkStatus icon in the Deskbar shows a green round light, the connection is established. If the notifications end in "No link" and a yellow triangle, something went wrong, probably an incorrect password.

    + +

    +index +Joining from the command line

    +

    If you prefer to use the command line or would like to use scripting or the ~/config/boot/UserBootscript to automate things to join a specific network on bootup, there's the command ifconfig.

    +

    Start a Terminal and enter the first line to scan for available wireless networks:

    +
    ifconfig /dev/net/iprowifi3945/0 scan
    +name                             address              signal  auth
    +haiku-top                        01:d0:19:a6:88:42        30  WPA
    +ArcorInternet123                 00:20:12:a4:29:e1        15  WPA
    +

    The path to your wireless network adapter has to be adjusted, of course.
    +The output shows the public name (SSID), MAC address, signal strength and authentication method of all found networks.

    +

    To join a network, use this line and insert the respective public name (SSID) and password:

    +
    ifconfig /dev/net/iprowifi3945/0 join {SSID} {password}
    +

    Make sure the initial configuration of the wireless network adapter after booting up has finished, before issuing ifconfig commands or they might be ignored. Depending on your hardware and network configuration that may take a while. Watch those notifications...

    + +

    +index +Tips

    + + +
    +
    + + + + + diff --git a/docs/userguide/it/workspaces.html b/docs/userguide/it/workspaces.html index bedd3b53fd..73ab933486 100644 --- a/docs/userguide/it/workspaces.html +++ b/docs/userguide/it/workspaces.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/jp/applications.html b/docs/userguide/jp/applications.html index c30460d7f8..08c36e19aa 100644 --- a/docs/userguide/jp/applications.html +++ b/docs/userguide/jp/applications.html @@ -24,7 +24,7 @@
    @@ -176,9 +178,9 @@ diff --git a/docs/userguide/jp/applications/activitymonitor.html b/docs/userguide/jp/applications/activitymonitor.html index e5320c987c..408ff94c81 100644 --- a/docs/userguide/jp/applications/activitymonitor.html +++ b/docs/userguide/jp/applications/activitymonitor.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/jp/applications/bepdf.html b/docs/userguide/jp/applications/bepdf.html index c8b65ddc55..489a6aaf45 100644 --- a/docs/userguide/jp/applications/bepdf.html +++ b/docs/userguide/jp/applications/bepdf.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/jp/applications/bootmanager.html b/docs/userguide/jp/applications/bootmanager.html index e20587faba..a4026f7781 100644 --- a/docs/userguide/jp/applications/bootmanager.html +++ b/docs/userguide/jp/applications/bootmanager.html @@ -22,7 +22,7 @@ @@ -97,7 +99,7 @@ @@ -61,8 +63,8 @@ 設定ファイル:無し

    ネットワーク状況 (NetworkStatus) はネットワーク連続の状態を表示します。ネットワーク状況はまだ実行していない場合に、起動するときにウィンドウモードまたは Deskbar モードを選択してください。ウィンドウモードで、ウィンドウのサイズを変更して、レプリカントを使ってデスクトップにドラッグすることもできます。ネットワーク状況はコンテキストメニューで使います。

    -

    第一部はすべてのネットワークデバイスの名と状態を表示します。いずれかのエントリをクリックすると、そのデバイスの IP アドレス、ブロードキャストアドレス、およびネットマスクを表示するウィンドウを表示します。
    -次は第一のワイヤレスアダプタが発見したワイヤレスネットワークの名と信号強度です。
    +

    NetworkStatus applet
    最初のセクションはすべてのネットワークデバイス名とその状態を表示します。いずれかのエントリをクリックすると、そのデバイスの IP アドレス、ブロードキャストアドレス、およびネットマスクを表示するウィンドウを表示します。
    +次は最初のワイヤレスアダプタが見つけたすべてのワイヤレスネットワークの名と信号強度です。より詳しい情報と、接続方法については、ワークショップ: ワイヤレスネットワーク を見てください。
    最後に、ネットワーク設定を開く... (Open network preferences...) で、ネットワーク設定を変更、またはアプレットを終了 (Quit) できます。

    状態アイコン

    @@ -80,7 +82,7 @@ diff --git a/docs/userguide/jp/desktop-applets/powerstatus.html b/docs/userguide/jp/desktop-applets/powerstatus.html index 32a9f66f83..74a5643f83 100644 --- a/docs/userguide/jp/desktop-applets/powerstatus.html +++ b/docs/userguide/jp/desktop-applets/powerstatus.html @@ -23,7 +23,7 @@ @@ -98,7 +100,7 @@ diff --git a/docs/userguide/jp/desktop-applets/workspaces.html b/docs/userguide/jp/desktop-applets/workspaces.html index fed12274ac..0e3aadfe9c 100644 --- a/docs/userguide/jp/desktop-applets/workspaces.html +++ b/docs/userguide/jp/desktop-applets/workspaces.html @@ -22,7 +22,7 @@
    @@ -59,15 +61,15 @@


    workspaces.png -

    ワークスペース (Workspaces) アプレットは、他のデスクトップアプレットと共に Deskbar 中に見つかります。ワークスペースアプレットはすべてのワークスペースの縮小バージョンを表示します。アプレットウィンドウのコンテキストメニューから利用可能ないくつかのオプションがありますが、それらはすべて見ればすぐに分かる物です。
    -ワークスペースの数を変更… (Change workspace count...) は、Screen preferences を起動して、ワークスペースの数と配置 (行と列の数) を設定します。

    -

    アプレットはレプリカントなので、望みのウィンドウサイズにしてから、デスクトップにドラッグ&ドロップできます (Deskbar メニューの "Show replicants" がチェックされていることを確かめてください)。SHIFT を押しながらリサイズすると、画面のアスペクト比を保ちます。

    +

    ワークスペース (Workspaces) アプレットは、ほかのデスクトップアプレットと共に Deskbar 中に見つかります。ワークスペースアプレットはすべてのワークスペースの縮小バージョンを表示します。アプレットウィンドウのコンテキストメニューから利用可能ないくつかのオプションがありますが、それらはすべて見ればすぐに分かる物です。
    +ワークスペースの数を変更… (Change workspace count...) は、画面プレファレンスを起動して、ワークスペースの数と配置 (行と列の数) を設定します。

    +

    アプレットはレプリカントなので、望みのウィンドウサイズにしてから、デスクトップにドラッグ&ドロップできます (Deskbar メニューの "レプリカントを表示 (Show replicants)" がチェックされていることを確かめてください)。SHIFT を押しながらリサイズすると、画面のアスペクト比を保ちます。

    index ワークスペース間でのウィンドウの移動

    -

    ウィンドウを移動するには、ワークスペースアプレット中でウィンドウを掴んで、別のワークスペースへドラッグするだけです。これは、現在のデスクトップを去ることなくウィンドウを移動できるという長所があります。もちろん、それはワークスペース中にウィンドウが多すぎなく、目的のウィンドウが他のウィンドウによって隠されていない場合にのみうまく働きます。もうひとつの可能性として、ウィンドウのタブを掴んで、ワークスペースを切り替える間、ALT Fx をホールドすることでも移動できます。

    -

    ワークスペース一般について更に詳しい情報、およびさらに多くのキーボードショートカットについては、ワークスペースの章を見てください。

    +

    ウィンドウを移動するには、ワークスペースアプレット中でウィンドウを掴んで、別のワークスペースへドラッグするだけです。これは、現在のデスクトップを去ることなくウィンドウを移動できるという長所があります。もちろん、それはワークスペース中にウィンドウが多すぎない場合で、かつ目的のウィンドウがほかのウィンドウによって隠されていない場合にのみうまく働きます。もうひとつの可能性として、ウィンドウのタブを掴んで、ワークスペースを切り替える間、ALT Fx をホールドすることでも移動できます。

    +

    ワークスペース一般についてさらに詳しい情報、およびさらに多くのキーボードショートカットについては、ワークスペースの章を見てください。

    index @@ -85,7 +87,7 @@ diff --git a/docs/userguide/jp/filesystem-layout.html b/docs/userguide/jp/filesystem-layout.html index 9dd2a05a53..fdb5795bdc 100644 --- a/docs/userguide/jp/filesystem-layout.html +++ b/docs/userguide/jp/filesystem-layout.html @@ -25,7 +25,7 @@ @@ -61,7 +63,7 @@ システムが正しく機能するために重要なファイルやフォルダーについては、次のような警告を表示することで不慮の操作からそれらを保護します:

    achtung-user.png  achtung-system.png -

    システム階層下の何かをリネームまたは削除しようとすると、第二の警告が表示されます。 "Do it" ボタンは SHIFT キーを押している間だけクリック可能になります。

    +

    システム階層下の何かをリネームまたは削除しようとすると、第二の警告が表示されます。 "Rename" ボタンは SHIFT キーを押している間だけクリックできます。

    通常、ブートボリュームのルートフォルダーから、次の 3 つのフォルダーが別々に枝分かれしています:

    @@ -154,7 +156,7 @@ If you do want to know more about how things tick in Haiku, have a look at this diff --git a/docs/userguide/jp/filetypes.html b/docs/userguide/jp/filetypes.html index e4e41266ed..15aa1bd054 100644 --- a/docs/userguide/jp/filetypes.html +++ b/docs/userguide/jp/filetypes.html @@ -22,7 +22,7 @@ @@ -113,7 +115,7 @@ diff --git a/docs/userguide/jp/gui.html b/docs/userguide/jp/gui.html index 7dc7921933..6014c4abdf 100644 --- a/docs/userguide/jp/gui.html +++ b/docs/userguide/jp/gui.html @@ -24,7 +24,7 @@ @@ -77,13 +79,14 @@
  • タブ (またはウィンドウの枠) を右クリックして、ウィンドウを最背面に送ることができます。
  • 「閉じる」ボタン。

  • 「ズーム」ボタン (または CTRL ALT Z )。ほとんどのアプリケーションではウィンドウを最大化します。しかし必ずしもそうなるわけではなく、たとえば、Tracker のウィンドウでは、ウィンドウの内容の表示に最適なサイズにリサイズします。

  • -
  • リサイズコーナー。ここ以外のウィンドウ枠をドラッグするとウィンドウが移動します。

  • +
  • ウィンドウ枠。左ドラッグでウィンドウの移動、右ドラッグでリサイズします。

  • +
  • リサイズコーナー

  • index すばやくウィンドウを移動またはリサイズする方法

    -

    ウィンドウの移動やリサイズは同時に実行している複数のアプリケーションを取り扱う操作の大部分を占めます。黄色の小さいタイトルタブや、もっと細いウィンドウの枠を使う代わりに、より簡単にウィンドウを動かす方法があります。また、リサイズコーナーは小さい上に、右下の角からその方向にしかリサイズできないという制約があります。

    +

    ウィンドウの移動やリサイズは、同時に実行している複数のアプリケーションを取り扱う操作の大部分を占めます。 黄色の小さいタイトルタブや、もっと細いウィンドウの枠をねらう代わりに、より簡単にウィンドウを動かす方法があります。 また、リサイズコーナーは小さい上に、右下の角からその方向にしかリサイズできないという制約があります。
    ウィンドウ枠の右クリックでリサイズできますが、慎重にねらわないといけません。

    こうした問題に対処するために、Haiku は CTRL ALT (ウィンドウを管理するキーの組み合わせ) とマウスを使ったすばらしい解決策を提供しています。ウィンドウ管理に関連するもっと多くのショートカットについては、ショートカットやキーの組み合わせの章も参照してください。

    resizing.png

    CTRL ALT を押し続けるとマウスポインタにもっとも近いウィンドウの枠がハイライトされます。対象を変更するにはマウスをほかの枠の方向に動かします。右マウスボタンでクリックしてドラッグすると、ハイライトされた枠に沿ってウィンドウをリサイズできます。

    @@ -154,7 +157,7 @@ diff --git a/docs/userguide/jp/images/apps-images/deskcalc.png b/docs/userguide/jp/images/apps-images/deskcalc.png new file mode 100644 index 0000000000..b4b14b991d Binary files /dev/null and b/docs/userguide/jp/images/apps-images/deskcalc.png differ diff --git a/docs/userguide/jp/images/deskbar-images/configure.png b/docs/userguide/jp/images/deskbar-images/configure.png index 228d1f1175..3f53b2280d 100644 Binary files a/docs/userguide/jp/images/deskbar-images/configure.png and b/docs/userguide/jp/images/deskbar-images/configure.png differ diff --git a/docs/userguide/jp/images/filesystem-layout-images/achtung-system.png b/docs/userguide/jp/images/filesystem-layout-images/achtung-system.png index f24c253bc8..fbcebee00c 100644 Binary files a/docs/userguide/jp/images/filesystem-layout-images/achtung-system.png and b/docs/userguide/jp/images/filesystem-layout-images/achtung-system.png differ diff --git a/docs/userguide/jp/images/filesystem-layout-images/achtung-user.png b/docs/userguide/jp/images/filesystem-layout-images/achtung-user.png index 9a77cfbb9d..fa6d1cfa24 100644 Binary files a/docs/userguide/jp/images/filesystem-layout-images/achtung-user.png and b/docs/userguide/jp/images/filesystem-layout-images/achtung-user.png differ diff --git a/docs/userguide/jp/images/prefs-images/appearance-antialiasing.png b/docs/userguide/jp/images/prefs-images/appearance-antialiasing.png index b57d708a5a..cbb49dc808 100644 Binary files a/docs/userguide/jp/images/prefs-images/appearance-antialiasing.png and b/docs/userguide/jp/images/prefs-images/appearance-antialiasing.png differ diff --git a/docs/userguide/jp/images/prefs-images/appearance-colors.png b/docs/userguide/jp/images/prefs-images/appearance-colors.png index 1ed2565f33..baf96016ad 100644 Binary files a/docs/userguide/jp/images/prefs-images/appearance-colors.png and b/docs/userguide/jp/images/prefs-images/appearance-colors.png differ diff --git a/docs/userguide/jp/images/prefs-images/appearance-decorators.png b/docs/userguide/jp/images/prefs-images/appearance-decorators.png new file mode 100644 index 0000000000..99d9ade42b Binary files /dev/null and b/docs/userguide/jp/images/prefs-images/appearance-decorators.png differ diff --git a/docs/userguide/jp/images/prefs-images/appearance-fonts.png b/docs/userguide/jp/images/prefs-images/appearance-fonts.png new file mode 100644 index 0000000000..c962c53232 Binary files /dev/null and b/docs/userguide/jp/images/prefs-images/appearance-fonts.png differ diff --git a/docs/userguide/jp/images/prefs-images/e-mail-accounts.png b/docs/userguide/jp/images/prefs-images/e-mail-accounts.png new file mode 100644 index 0000000000..17694e831e Binary files /dev/null and b/docs/userguide/jp/images/prefs-images/e-mail-accounts.png differ diff --git a/docs/userguide/jp/images/workshop-wlan-images/join-network.png b/docs/userguide/jp/images/workshop-wlan-images/join-network.png new file mode 100644 index 0000000000..2fedecda91 Binary files /dev/null and b/docs/userguide/jp/images/workshop-wlan-images/join-network.png differ diff --git a/docs/userguide/jp/images/workshop-wlan-images/join-status.gif b/docs/userguide/jp/images/workshop-wlan-images/join-status.gif new file mode 100644 index 0000000000..dea116d418 Binary files /dev/null and b/docs/userguide/jp/images/workshop-wlan-images/join-status.gif differ diff --git a/docs/userguide/jp/index.html b/docs/userguide/jp/index.html index 605ae795df..19276b682d 100644 --- a/docs/userguide/jp/index.html +++ b/docs/userguide/jp/index.html @@ -25,7 +25,7 @@ @@ -156,7 +158,7 @@ INDEX_NAME はファイル属性の名前です。 diff --git a/docs/userguide/jp/keyboard-shortcuts.html b/docs/userguide/jp/keyboard-shortcuts.html index 681c663c7f..d1f9362ff6 100644 --- a/docs/userguide/jp/keyboard-shortcuts.html +++ b/docs/userguide/jp/keyboard-shortcuts.html @@ -25,7 +25,7 @@ @@ -141,7 +143,7 @@ diff --git a/docs/userguide/jp/preferences.html b/docs/userguide/jp/preferences.html index 929783764f..4436f44113 100644 --- a/docs/userguide/jp/preferences.html +++ b/docs/userguide/jp/preferences.html @@ -23,7 +23,7 @@ @@ -69,8 +71,6 @@ - - @@ -107,8 +107,8 @@ diff --git a/docs/userguide/jp/preferences/fonts.html b/docs/userguide/jp/preferences/fonts.html index e82dcbda65..5f59e8e25e 100644 --- a/docs/userguide/jp/preferences/fonts.html +++ b/docs/userguide/jp/preferences/fonts.html @@ -41,17 +41,22 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  FileTypes  -::  Preferences (プレファレンス)  -::  キーボード  » + « FileTypes +:: Preferences (プレファレンス) +:: キーボード »
    +
    このページの翻訳はまだ完全ではありません。完成するまでは、未完成の部分はオリジナルの英文を使用します。
    + +

    Since "Fonts" moved into the Appearance panel, this is an outdated page. Do not translate!

    fonts-icon_64.pngフォント (Fonts)

    /boot/system/ システムのフォルダー。変更を加えてはいけません!
    電子メールアカウントを構成します。
    iconFileTypes ファイルタイプの追加、削除、構成を行います。
    iconフォント システムフォントを設定します。
    iconキーボード キーリピートまでの遅れと速度を設定します。
    iconキーマップ
    @@ -64,8 +69,8 @@ fonts.png

    Haiku は異なった目的のために 3 種類の標準フォントを定めています。ここでシステム全体で用いられるフォントのスタイル (通常・太字・固定幅) とサイズを設定します。加えて、メニューで使われるフォントの設定が別にあります。

    - - + +
    デフォルト (Defaults) すべてをデフォルト値にリセットします。
    元に戻す (Revert) フォント設定を開始した時点で有効だった設定に戻します。
    デフォルト (Defaults) すべてをデフォルト値にリセットします。
    元に戻す (Revert) フォント設定を開始した時点で有効だった設定に戻します。

    @@ -78,9 +83,9 @@ diff --git a/docs/userguide/jp/preferences/keyboard.html b/docs/userguide/jp/preferences/keyboard.html index 609c5fba9f..80ce3e2d8b 100644 --- a/docs/userguide/jp/preferences/keyboard.html +++ b/docs/userguide/jp/preferences/keyboard.html @@ -41,10 +41,12 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  フォント  + «  FileTypes  ::  Preferences (プレファレンス)  ::  キーマップ  » @@ -73,7 +75,7 @@ + + + + ワークショップ: ワイヤレスネットワーク + + + + + + + + +
    +
    + + + + + +
    インデックス
    + サポートされているハードウェアを動くようにする
    + ワイヤレスネットワークに接続する
    + コマンドラインから接続する
    + ヒント +
    + +

    ワークショップ: ワイヤレスネットワーク

    + +

    ネットワークを動作させるようにすることは、今日のインターネット常時接続への要求において必要不可欠なことです。小さなプロジェクトにとって、すべてのさまざまな、絶え間なく変化するハードウェアとドライバーについていくことはとても困難なことです。Haiku は FreeBSD のネットワークドライバーのための互換レイヤーに頼っています。
    +これは、大量のハードウェアのサポートを保証します。しかし、それらの 100% がサポートされるわけではありません。サポートされているモデルのリストをオンラインで参照するか、 FreeBSD 9 リリースのハードウェアノートをチェックしてください。

    +
    現在のところ、PCI、PCI-X、PCI-Express、Mini PCI、および Mini PCI-Express デバイスのみサポートされているはずです。
    PCMCIA、CardBus、ExpressCard、USB、および ISA デバイスは動作するようになるのにまだ作業が必要です。
    + +

    +index +サポートされているハードウェアを動くようにする

    +

    一般にサポートされたハードウェアの最初のハードルを超えたとしても、いくつかのワイヤレスネットワークカードは正しく動作させるためにバイナリのファームウェアを必要とします。ライセンス問題のため、Haiku はいくつかのプロエタリなファームウェアを同梱できません。しかし、Haiku には、ユーザーのために必要なプロエタリバイナリをすべて取得してインストールする簡単なスクリプトが入っています。一般に、ワイヤレスネットワークを使おうとするなら、このスクリプトを動かして、システムが必要とするときに、これらすべてのファームウェアを利用可能な状態にするのは良い考えです。

    +

    ターミナルを立ち上げて、次のように入力します。

    +
    install-wifi-firmwares.sh
    +

    ライセンスを見なおして、承認し、利用できるファームウェアファイルをインストールします。

    + +

    Haiku でこれら不足するファームウェアをダウンロードするためのインターネットアクセスが無い場合、オフラインで行う方法があります。以下の tips を見てください。

    + +

    +index +ワイヤレスネットワークに接続する

    +

    デフォルトでは、Haiku は起動後に見つけた最初の暗号化されていないワイヤレスネットワークにつながります。特定のネットワークに接続させるには、デスクトップアプレットの NetworkStatus を使用します。

    +

    Deskbar 内の NetworkStatus アイコンを右クリックして、ネットワークの公開名 (public name) を選択します (それはネットワークが送信する "SSID" です)。 +

    +join-network.png +

    ウィンドウが開きます。そこに、認証タイプ (たぶん、WPA か WPA2 のどちらか。WEP はもはやセキュアな暗号ではありません !) とパスワードを入力します。OK を押して、ログインプロセスを開始します。
    ハードウェアとネットワーク構成によっては、これはしばらくかかるかもしれません。通知ウィンドウで情報が提示されるでしょう。

    +join-network.gif +

    いったん、それが "Ready" と表示し、Deskbar 中の NetworkStatus のアイコンが緑の丸になったら、接続が確立されています。通知が "No link" で終わり、アイコンが黄色の三角なら、なにか異常が発生しています。おそらくパスワードが間違っています。 +

    + +

    +index +コマンドラインから接続する

    +

    コマンドラインを使うのが好きか、スクリプトを使いたいか、または ~/config/boot/UserBootscript で起動時に特定のネットワークへの接続を自動化したいなら、ifconfig コマンドがあります。

    +

    ターミナルを起動して、最初の行を入力して利用できるワイヤレスネットワークを検索します。

    +
    ifconfig /dev/net/iprowifi3945/0 scan
    +name                             address              signal  auth
    +haiku-top                        01:d0:19:a6:88:42        30  WPA
    +ArcorInternet123                 00:20:12:a4:29:e1        15  WPA
    +

    もちろん、ワイヤレスネットワークアダプタへのパスは修正する必要があります。
    出力は、見つかったすべてのネットワークの公開名 (SSID)、MAC アドレス、信号強度および認証方式です。

    +

    ネットワークに参加するには、次の行を使い、各自の公開名 (SSID) とパスワードを挿入します。

    +
    ifconfig /dev/net/iprowifi3945/0 join {SSID} {password}
    +

    システム起動後、ワイヤレスネットワークアダプタの初期設定が終わっていることを、ifconfig コマンドの実行前に確認してください。さもなければ、コマンドは無視されます。ハードウェアとネットワークの構成により、それはしばらくかかります。通知を見てください。

    + +

    +index +ヒント

    + + +
    +
    + + + + + diff --git a/docs/userguide/jp/workspaces.html b/docs/userguide/jp/workspaces.html index 0dd53c0477..c5bc76a47c 100644 --- a/docs/userguide/jp/workspaces.html +++ b/docs/userguide/jp/workspaces.html @@ -23,7 +23,7 @@ @@ -62,10 +64,10 @@

    index ワークスペースの切り替え

    -

    ワークスペース間の切り替えは、ワークスペースアプレット (上の画像を参照) か、キーボードショートカットの ALT Fx ("x" はワークスペースナンバー)でできます。キーボード上の Fx キーレイアウトを模倣できるようにワークスペースを 4 行にまとめておくと良いでしょう。
    +

    ワークスペース間の切り替えは、ワークスペースアプレット (上の画像を参照) か、キーボードショートカットの ALT Fx ("x" はワークスペースナンバー) でできます。キーボード上の Fx キーレイアウトを模倣できるようにワークスペースを 4 行にまとめておくと良いでしょう。
    また、Deskbar のアプリケーションかウィンドウのひとつをクリックするとそのワークスペースに移動します。

    -

    別の便利な方法は CTRL ALT /// を使って利用可能なワークスペースの行列を移動することです。 SHIFT を押しながらナビゲートすると、アクティブなウィンドウも新しいワークスペースに移動します。

    -

    二つのワークスペースの間を ALT ` で前後に切り替えることができます (実際のキーはキーマップで決まります - ESC の下のキーです)。 更に、 SHIFT をホールドするとアクティブウィンドウを移動させます。

    +

    別の便利な方法は CTRL ALT /// を使って利用可能なワークスペースの行列を移動することです。SHIFT を押しながらナビゲートすると、アクティブなウィンドウも新しいワークスペースに移動します。

    +

    二つのワークスペースの間を ALT ` で前後に切り替えることができます (実際のキーはキーマップで決まります - ESC の下のキーです)。さらに、SHIFT をホールドするとアクティブウィンドウを移動させます。

    @@ -74,8 +76,8 @@
    diff --git a/docs/userguide/pt_BR/applications.html b/docs/userguide/pt_BR/applications.html new file mode 100644 index 0000000000..8999f84c93 --- /dev/null +++ b/docs/userguide/pt_BR/applications.html @@ -0,0 +1,191 @@ + + + + + + + + + + Aplicativos + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    Aplicativos

    + +

    Antes de mergulharmos dentro de todos os aplicativos que vem com o Haiku, vamos dar uma olhada detalhada em como instalar e desinstalar programas que foram baixados de algum lugar, por exemplo de um sítio mencionado na página Boas Vindas.

    +
    Deve-se descompactar/instalar arquivos somente dentro do Haiku. Se extrair um pacote no Linux ou Windows, por exemplo, e apenas copiar a pasta no Haiku depois, todos os atributos vitais são perdidos, porque aqueles sistemas operacionais normalmente não lidam com metadados.
    + +

    +index +Instalando aplicativos

    +

    Software do Haiku sempre vem como um conjunto de arquivos. Na maior parte do tempo é um ZIP, alguns antigos pacotes BeOS vem em formato de software personalizado PKG. O software personalizado era capaz de automaticamente executar scripts de instalação, então após um duplo clique apenas se escolhia a pasta de destino e tudo era feito.
    +Se for um arquivo ZIP, duplo clique abre o Expansor onde também se define o destino e o descompacta. Como explicado no tópico Disposição do sistema de arquivos, aquele destino ou é

    + + + +
    /boot/common/apps/ para aplicativos disponíveis para todos os usuários
    /boot/home/apps/ para aplicativos disponíveis apenas para si mesmo
    +

    Naturalmente, esta distinção se tornará relevante apenas quando o Haiku tiver suporte a multiusuário.

    +

    Uma vez que o arquivo é descompactado, deverá dar uma olhada dentrp da pasta recém-criada. Geralmente encontramos arquivos LeiaMe ou outra documentação de interesse.

    +

    Alguns programas necessitam de configurações adicionais. Por exemplo, Adicionais do Rastreador, Tradutores ou outros componentes de aprimoramento do sistema tem que ser postos nas pastas certas. Ou encontrar um pequeno arquivo de script (frequentemente com o suxifo .sh) como instalar que basta um duplo clique para fazer tudo.
    +Algumas vezes encontramos pastas que vinculam para o destino correto denominado "arraste [nome do arquivo] aqui...". Então, simplesmente siga aquela instrução e estará feito.

    +

    Most of the time, however, nothing of the sort is necessary and you're done after unpacking.
    +Topics Deskbar or LaunchBox describe how to add shortcuts to your newly installed application.

    + +

    +index +Desinstalando aplicativos

    +

    If the installation was done with an install script, chances are, there's an uninstall script as well. In that case, double-click it and you're done.
    +Otherwise, uninstalling is simply done by deleting the application's folder.

    +

    This, of course, leaves back possible configuration files in your ~/config/settings folder. This may be on purpose, if you want to keep those settings in case you'll install the program again in the future. Also, when the installation involved those "drag [filename] here..." folders, those files are also left behind.

    +

    One method to quickly get to all the app's files is to do a quick query for a significant part of the application's name. This will reveal the app's binary, its installation folder and its settings as well as possible links in the Deskbar etc. Simply select all relevant files and delete them.

    + +

    +index +Aplicativos do Haiku

    +

    Haiku comes with a set of mostly small but essential applications. You'll find all of them at /boot/system/apps/ or /boot/common/apps/. Applications that are not usually launched by a double-click on a data file (e.g. ShowImage for image files) can be found in the Applications menu of the Deskbar.

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    iconActivityMonitor A tool to track system resources like CPU and memory usage.
    iconBootManager A tool to install a boot menu in the Master Boot Record (MBR) of a drive.
    iconCDPlayer Um reprodutor de CDs de áudio.
    iconCharacterMap An application that shows the Unicode character map.
    iconCodyCam A tool to regularly upload images from a webcam to a server.
    iconDeskCalc Uma calculadora.
    iconDiskProbe A HEX editor for files and devices.
    iconDiskUsage A tool to visualize a disk's memory usage.
    iconDriveSetup Uma ferramenta de particionamento de disco rígido.
    iconExpander A tool to unpack common archives.
    iconIcon-O-Matic Um aplicativo pra criar ícones vetorias do Haiku.
    iconInstaller Ferramenta para instalar o Haiku numa partição.
    iconMagnify A magnified view of the area around your mouse pointer.
    iconMail Um cliente de email.
    iconMediaPlayer A player for all supported audio/video files.
    iconMidiPlayer Um player pra arquivos MIDI.
    iconPackageInstaller Instalador de pacotes do BeOS no formato PKG.
    iconPeople Um gerenciador de contatos.
    iconPoorMan Um servidor web simples.
    iconScreenshot Uma ferramenta para gerar capturas de tela.
    iconShowImage Um visualizador de imagens simples.
    iconSoundRecorder A tool to record audio from line-in or a microphone. [ainda está faltando]
    iconStyledEdit Um editor de texto simples.
    iconTerminal Acesso ao bash.
    iconTextSearch Uma ferramenta de busca para arquivos de texto.
    iconTV Visualisador para TV analógica. [ainda está faltando]
    iconWebPositive Um navegador web nativo.
    + +

    +index +Aplicativos do Haiku em linha de comando

    +

    Besides the normal commandline tools coming with the bash shell or are necessary to be POSIX compliant, there are a few Haiku-specific commandline applications worth mentioning. These commands are often useful for scripting purposes, see also topic Bash and Scripting.

    + + + +
    iconList of all commandline applications
    iconHaiku-specific commandline applications
    + +

    +index +Aplicativos inclusos

    +

    Besides the above listed programs, which are all maintained by the Haiku project, there are a few essential applications bundled in a standard Haiku system. Bugs and feature requests for those have to be filed with the particular maintainer.

    + + + + + + + + + + + +
    iconBePDF Um visualizador de arquivos PDF.
    iconPe An advanced texteditor with syntax coloring and much more.
    iconVision Um cliente de IRC.
    iconWonderBrush YellowBite's graphics programm.
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/activitymonitor.html b/docs/userguide/pt_BR/applications/activitymonitor.html new file mode 100644 index 0000000000..a0afc0584d --- /dev/null +++ b/docs/userguide/pt_BR/applications/activitymonitor.html @@ -0,0 +1,84 @@ + + + + + + + + + Monitor de Atividade + + + + + + + + +
    +
    + +

    activitymonitor-icon_64.pngMonitor de Atividade

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/ActivityMonitor
    Configurações:~/config/settings/ActivityMonitor settings
    +


    +

    Você pode acompanhar os recursos do sistema com o Monitor de Atividade e ativar diferentes itens de interesse.

    +activitymonitor.png +

    Ao clicar com o botão direito do mouse dentro da janela, pode-se alternar a exibição de todos os tipos de recursos:
    +Memória Utilizada/Armazenada, Espaço de Troca, Utilização da CPU, Recebimento/Envio via Rede, Falhas de página, Semáforos, Portas, Tarefas, Times, Aplicativos em Execução, Tamanho da Área de Transferência de dados brutos/texto, Nós de Mídia.

    +

    Abaixo o gráfico é uma legenda (ocultável a partir do menu de contexto). Pode-se mudar as cores, inclusive do fundo do gráfico, via arrastar e soltar de qualquer seletor de cores, por exemplo do Icon-O-Mático.

    +

    Pode-se adicionar mais visualizações a partir do menu Arquivo se ele ficar muito cheio.

    +

    O menu Definições abre uma caixa de diálogo para definir o intervalo de atualização.

    +

    Cada visualização tem sua própria alça Replicante e pode assim ser organizada, por exemplo, na Área de Trabalho.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/bepdf.html b/docs/userguide/pt_BR/applications/bepdf.html new file mode 100644 index 0000000000..4bfd5af2d6 --- /dev/null +++ b/docs/userguide/pt_BR/applications/bepdf.html @@ -0,0 +1,84 @@ + + + + + + + + + BePDF + + + + + + + + +
    +
    + +

    bepdf-icon_64.pngBePDF

    + + + + + +
    Deskbar:Aplicativos
    Localização:/boot/apps/BePDF/BePDF
    Documentação:/boot/apps/BePDF/docs/*
    Configurações:/boot/common/settings/BePDF
    +


    +

    BePDF é um visualizador de PDF de carregamento rápido. Além de visualizar, ele suporta anotação e marcadores definidos pelo usuário para PDFs não encriptados. É totalmente traduzido para 20 idiomas até o momento, com idiomas adicionais sendo facilmente acrescentados através de arquivos de texto.

    +

    A Documentação está disponível em HTML ou PDF. O último também está disponível a partir do menu Ajuda | Mostrar Ajuda....

    +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/bootmanager.html b/docs/userguide/pt_BR/applications/bootmanager.html new file mode 100644 index 0000000000..a649965d3c --- /dev/null +++ b/docs/userguide/pt_BR/applications/bootmanager.html @@ -0,0 +1,107 @@ + + + + + + + + + Gerenciador de Inicialização + + + + + + + + +
    +
    + +

    bootmanager-icon_64.pngGerenciador de Inicialização

    + + + + +
    Deskbar:nenhuma entrada, normalmente inicia a partir do menu Ferramentas do Instalador
    Localização:/boot/system/apps/BootManager
    Configurações:nenhum
    Cópias de segurança do MBR são salvos por padrão em ~/config/settings/bootman/
    +


    +

    Se não adicionou a partição do Haiku a um gerenciador de inicialização pré-existente como o GRUB, o Gerenciador de Inicialização pode instalar um pequeno menu de inicialização na Master Boot Record (MBR) que mostra algo como isto:

    +bootmenu.png +
    O Gerenciador de Inicialização não é ainda suficientemente testado e tem algumas restrições que causarão problemas se não forem atendidas: o menu só pode ser instalado no primeiro disco rígido e tem que haver um espaço de 2 KB após a MBR.
    +

    O Gerenciador de Inicialização o guia através do processo de instalação do menu de inicialização.

    +

    +index +Escolhendo o disco de destino

    +bootmanager-1.png +

    O Gerenciador de Inicialização começa com uma lista de todos os dispositivos de armazenamento disponíveis dos quais pode-se escolher o destino. Se já existe um menu de inicialização naquele dispositivo, o botão Desinstalar torna-se ativo, conduzindo-o através de um procedimento simples para restaurar um antigo MBR salvo, assim removendo o menu de inicialização novamente.
    +Caso contrário, escolha Instalar para continuar.

    +

    +index +Criando uma cópia de segurança da Master Boot Record (MBR)

    +

    No caso de alguma coisa dar errado ou desejar remover o menu de inicialização novamente, a Master Boot Record (MBR) é agora salva. Este é obviamente um passo muito importante, assegure-se de não sobrescrever acidentalmente alguma outra cópia de segurança da MBR talvez de alguma experiência recente, por exemplo!

    +bootmanager-2.png +bootmanager-3.png +

    Apenas selecione um destino para o arquivo da cópia de segurança "MBR" ou deixe o caminho padrão. Após clicar em Próximo receberá uma confirmação se a cópia foi gerada com sucesso.

    +

    +index +Configurando o menu de inicialização

    +bootmanager-4.png +bootmanager-5.png +

    A seguir é apresentada uma lista de todas as partições do dispositivo de destino. Next you're presented with a list of all partitions on the destination drive. Ao selecionar as caixas de verificação decide-se quais entradas irão aparecer no menu de inicialização; as caixas de texto permitem renomear uma entrada.

    +

    Após isso, selecione do menu pop-up qual partição será inicializada por padrão e defina um tempo limite com o botão deslizante abaixo. Aqui, "Imediatamente" irá pular o menu de inicialização inteiramente, "Nunca" irá parar no menu de inicialização. Pode-se passar por cima da definição de tempo limite segurando ALT enquanto inicializa.

    +

    +index +Gravando o menu de inicialização

    +bootmanager-6.png +bootmanager-7.png +

    Antes do menu de inicialização ser gravado na MBR, é mostrado um resumo da sua configuração e então uma última chance de abortar a operação. Não se preocupe, uma vez que mantenha a cópia de segurança da MBR a salvo, poderá facilmente reverter as mudanças. Caso as coisas fiquem completamente estragadas, poderá sempre inicializar a partir de um CD ou pendrive USB de instalação do Haiku e recuperar a MBR com o Gerenciador de Inicialização.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/cdplayer.html b/docs/userguide/pt_BR/applications/cdplayer.html new file mode 100644 index 0000000000..f2b69faa17 --- /dev/null +++ b/docs/userguide/pt_BR/applications/cdplayer.html @@ -0,0 +1,87 @@ + + + + + + + + + CDPlayer + + + + + + + + +
    +
    + +

    cdplayer-icon_64.pngCDPlayer

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/CDPlayer
    Configurações:~/cd/* - Armazena detalhes relativos a todos os CDs identificados
    +


    + +


    +cdplayer.png +

    A utilização é basicamente o que é esperado dos botões de controle apresentados.
    +Ative o botão Repeat à esquerda de Shuffle para repetir todo o CD.

    +

    Se você precisar de mais opções de controle como listas de execução, experimente utilizar o MediaPlayer.

    +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/charactermap.html b/docs/userguide/pt_BR/applications/charactermap.html new file mode 100644 index 0000000000..dd6f7378c8 --- /dev/null +++ b/docs/userguide/pt_BR/applications/charactermap.html @@ -0,0 +1,82 @@ + + + + + + + + + Mapa de Caracteres + + + + + + + + +
    +
    + +

    charactermap-icon_64.pngMapa de Caracteres

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/CharacterMap
    Configurações:~/config/settings/CharacterMap settings
    +


    +

    O Mapa de Caracteres mostrará ao usuário o código UTF-8 de cada caractere que uma fonte suporta.

    +charactermap.png +

    À esquerda temos os blocos padronizados, junto com uma função de filtro acessível. Opcionalmente, pode-se escolher também Mostrar blocos privados do menu Ver. A direita mostra os caracteres reais nesses blocos, usando a fonte especificado no menu Fonte. Abaixo pode-se mudar o tamanho da fonte. E mais abaixo, os valores do caractere atualmente sob o cursor do mouse é mostrado em hexadecimal, decimal e notação UTF-8.

    +

    Você pode arrastar e soltar um caractere diretamente do mapa de caracteres para dentro de um editor de texto ou clicar com o botão direito do mouse em um deles para então Copiar caractere (ALT C) ou Copiar como cadeia de byte de escape (SHIFT ALT C). Resultando, então, ou \xe2\x82\xac.

    + +
    +
    + + + + diff --git a/docs/userguide/pt_BR/applications/cli-apps.html b/docs/userguide/pt_BR/applications/cli-apps.html new file mode 100644 index 0000000000..dabe7df6b0 --- /dev/null +++ b/docs/userguide/pt_BR/applications/cli-apps.html @@ -0,0 +1,127 @@ + + + + + + + + + Aplicativos em Linha de Comando + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    cli-app-icon_64.pngHaiku-specific commandline applications

    + + +
    Localização:/boot/system/bin
    /boot/common/bin
    ~/config/bin
    +


    +

    All commandline applications shipped with Haiku are in either /boot/system/bin or /boot/common/bin. Your own or additionally installed commandline apps should go in ~/config/bin. All these locations are part of the PATH variable and are therefore automatically found.
    +The following isn't an exhaustive list of all Haiku-specific CLI apps, it serves just to highlight a few of the most useful to give you a taste. Feel encouraged to explore what's in the bin/ folders on your own a bit. Executing an app with the parameter --help shows the usage of the command and all its various options.

    + +

    index +Relating to attributes: listattr, catattr, addattr, rmattr, copyattr

    +

    These commands are used to display, read out, add and remove attributes of files. Remember that these meta data are currently only available on BFS formatted volumes. Moving files onto other file systems will strip all attributes!
    +All these commands are described in topic Attributes in Terminal.

    + +

    index +Relating to the index: lsindex, mkindex, reindex, rmindex

    +

    With these commands you list, make, reindex and remove attributes to BFS' index. Every volume has it's own index, remember that when copying files from one volume to another.
    +These commands are described in topic Index.

    + +

    index +Useful scripting commands

    +

    Here are a few commandline tools that are especially useful for scripting (see also topic Bash and Scripting).

    + + + + + + + + +

    alert

    alert conjures up the typical alert window with a pre-defined icon, explanatory text and up to three buttons. It will return the title of the pressed button and an exit status (starting with 0). For example, this is made of the line:

    +
    alert --idea "FantasticApp(tm) installed successfully!
    +Would you like a link to it?" "On Desktop" "In Deskbar" "No thanks"
    +

    cli-alert.png

    +

    filepanel

    filepanel displays a load or save file panel and lets the user choose a file or location. As a return value you'll get the chosen file or folder's path. There are several parameters available, for example to set a starting directory, a window title, a default name when saving or restrictions to the allowed types of files. This is an example of

    +
    filepanel -s -t "Save your logfile" -d ~/config/settings -n Fantastic.log
    +

    cli-alert.png

    +

    waitfor

    waitfor is a nice way to wait for a particular application or thread to be started or to have ended.

    +

    query

    query is the commandline version of the Find panel. In fact, a quick way to generate the search term is to build a query in the Find panel, switch to by formula, add double quotes (") in front and back and paste the whole string after your query command in Terminal or your script.

    +
    + +

    index +Other commands

    + + + + + + + +

    checkfs

    checkfs is an important tool to check for errors in your file system. Simply add the volume or device name and it'll run through every file and correct inconsistencies where possible.

    +

    open

    open is a very handy little tool. With it you open any file with its preferred application, or start a specific application by its signature without the need to know its exact path. It also works with URLs and even with the "virtual" directories . for the current directory and .. for the parent, opening the folder in Tracker.

    +

    desklink

    desklink can install an icon for any file, folder, query or application in the Deskbar tray. It also offers the option to provide a context menu when right-clicking an icon to execute special actions. As an example, try this to add the commandline app screenshot with various options (the "\" in the first line is just for the line break in Terminal):

    +
     desklink "cmd=Active window (2s):/bin/screenshot --window --border --delay 2" \
    +"cmd=Remove replicant:desklink --remove=screenshot" /bin/screenshot
    +
    +

    cli-alert.png

    +
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/codycam.html b/docs/userguide/pt_BR/applications/codycam.html new file mode 100644 index 0000000000..182875e8f4 --- /dev/null +++ b/docs/userguide/pt_BR/applications/codycam.html @@ -0,0 +1,81 @@ + + + + + + + + + CodyCam + + + + + + + + +
    +
    + +

    codycam-icon_64.pngCodyCam

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/CodyCam
    Configurações:~/config/settings/codycam
    +


    +

    Com a CodyCam você tira fotos em um intervalo específico de uma câmera web conectada ou qualquer outro dispositivo de entrada de vídeo e salva através de FTP.

    +My very temporarily installed cam in Dartmoor National Park. +

    À esquerda, abaixo da previsão, defina o nome do arquivo que receberá um número crescente para cada foto tirada. To the left under the preview, you set the filename that'll be suffixed with an increasing number for every picture taken. Abaixo decida em que formato de arquivo e velocidade relativa as fotos serão tiradas.

    +

    À direita escolha entre FTP ou sFTP (se SSH estiver disponível) e forneça os dados necessários para salvar as imagens em um servidor.

    + +
    +
    + + + diff --git a/docs/userguide/pt_BR/applications/deskcalc.html b/docs/userguide/pt_BR/applications/deskcalc.html new file mode 100644 index 0000000000..2a17b453cf --- /dev/null +++ b/docs/userguide/pt_BR/applications/deskcalc.html @@ -0,0 +1,103 @@ + + + + + + + + + DeskCalc + + + + + + + + +
    +
    + +

    deskcalc-icon_64.pngDeskCalc

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/DeskCalc
    Configurações:~/config/settings/DeskCalc_settings
    +


    +

    DeskCalc é uma calculadora simples que não obstante tem algumas funcionalidades interessantes que não são aparentes à primeira vista.

    +deskcalc.png +
      +
    • DeskCalc entende muito mais do que seu simples teclado sugere.
      +Além dos operadores +, -, *, /, %, ^ e das constantes pi e e as seguintes funções matemáticas são suportadas:
      +acos, asin, atan, atan2, ceil, cos, cosh, exp, floor, log, log10, pow, sin, sinh, sqrt, tan, tanh.

    • +
    • Quando se trata da entrada de dados do usuário, o DeskCalc é bastante tolerante:
      +/, :, \ são todos interpretados como operadores de divisão,
      +*, x são símbolos válidos para multiplicação.
      +Além disso, esteja ciente que . e , são ambos considerados pontos flutuantes, o que significa que não devem ser usados como separadores de 1000 (milhar).

    • +
    • Clicar com o botão direito do mouse oferece estas opções:

      + + + +
      Habilitar Num Lock ao iniciarautomaticamente ativa o bloqueio de número quando carregar o DeskCalc
      Exibir tecladooculta o teclado quando desativado
    • +
    • É possível redimensionar a calculadora até que atenda as suas necessidades e então colocá-la como um Replicante para o Desktop via arrastar e soltar do símbolo no canto inferior direito. Certifique-se de que a opção Exibir replicantes está ativada no Deskbar.

    • +
    • O teclado pode ser colorido com o arrastar e soltar de qualquer fonte de cor, por exemplo do Icon-O-Matic.

    • +
    • Pode-se mover para cima e para baixo no histórico de cálculos anteriores com e .

    • +
    • É possível selecionar conteúdos do DeskCalc e arrastar e soltá-los dentro de qualquer aplicação. Ou soltá-los dentro de uma janela do Rastreador (Tracker) ou sobre a Área de Trabalho e um arquivo de texto com aquele recorte é criado lá.

      +

      Ainda melhor, o inverso também é possível:
      +Criar recortes como descrito em vários estágios do cálculo, voltar a eles pelo arrastar e soltar e devolvê-los ao DeskCalc.
      +Ou arrastar e soltar um cálculo diretamente de um correio eletrônico para o DeskCalc.

    • +
    • DeskCalc pode ser usado no Terminal. Apenas ponha a expressão em aspas duplas, como aqui:

      +
      ~> DeskCalc "sin(45)*(cos(12)+3.45)"
      +3.6536554673202546181795194727005826674359494735820338441084848
    • +
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/diskprobe.html b/docs/userguide/pt_BR/applications/diskprobe.html new file mode 100644 index 0000000000..d9aacd476b --- /dev/null +++ b/docs/userguide/pt_BR/applications/diskprobe.html @@ -0,0 +1,87 @@ + + + + + + + + + Analisador de Disco + + + + + + + + +
    +
    + +

    diskprobe-icon_64.pngAnalisador de Disco

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/DiskProbe
    Configurações:~/config/settings/DiskProbe_data
    +


    +

    O Analisador de Disco é um editor hexadecimal para ver e alterar dados de um arquivo ou num dispositivo em nível de byte. É uma ferramenta de muito baixo nível e tem portanto o potencial para realmente bagunçar as coisas se não for cuidadoso!

    +
    Sempre trabalhe com a cópia de segurança de um arquivo e seja extra cuidadoso quando trabalhando diretamente num dispositivo.
    +

    Ao iniciar o Analisador de Disco primeiro será perguntado pelo arquivo ou dispositivo a ser trabalhado. Após isso será mostrada esta interface:

    +

    diskprobe.png

    +

    A visualização principal mostra sempre um bloco de dados, o tamanho dos que pode ser ajustado com Visualizar | Tamanho de Bloco. À esquerda está o deslocamento para o início do bloco, no meio os dados como valores hexadecimais e à direita os mesmos como símbolos ASCII.
    +Pode-se mover de bloco em bloco com o botão deslizante ou com ALT  e ALT  e alternar entre as colunas HEX e ASCII com TAB.

    +

    Bloco | Seleção não apenas exibirá a seleção com diferentes extremidades (e em hexa ou decimal, definido por Visualizar | Base), irá também interpretar a seleção como um bloco deslocado para o qual pode ser pulado. Ele ficará acinzentado se a posição estiver fora do arquivo/dispositivo.
    +Esta é uma funcionalidade útil principalmente quando se olha para os sistemas de arquivos, como eles frequentemente contém ponteiros para outros blocos.

    +

    Se o arquivo que está analisando incluir atributos, o menu Atributos pode ser utilizado para abrir qualquer um deles em uma nova janela do Analisador de Disco. Aqui está o atributo de direitos autorais do aplicativo Sobre o Sistema: +

    diskprobe-about-attr.png

    +

    Dependendo do tipo de atributo, será fornecida uma guia de edição diferente junto com o sempre presente Editor Raw. Por exemplo, existem editores para sequencias e tipos MIME ou um visualizador de ícone para o atributo vectoricon.

    +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/diskusage.html b/docs/userguide/pt_BR/applications/diskusage.html new file mode 100644 index 0000000000..5ab3537cac --- /dev/null +++ b/docs/userguide/pt_BR/applications/diskusage.html @@ -0,0 +1,93 @@ + + + + + + + + + Uso do Disco + + + + + + + + +
    +
    + +

    diskusage-icon_64.pngUso do Disco

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/DiskUsage
    Configurações:~/config/settings/DiskUsage
    +


    +

    O Uso do Disco mostra graficamente como o espaço nos volumes de disco está sendo utilizado.
    +Uma ferramenta útil para responder à pergunta, "Para onde foi todo o meu espaço em disco?".

    +

    diskusage.png

    +

    Os círculos concêntricos representam diferentes níveis na hierarquia do sistema de arquivos. Acima, o círculo no centro representa a pasta /boot/home/. Cada segmento do anel imediatamente externo àquele círculo é um arquivo ou pasta sob /boot/home/. Cada segmento mais distante nos leva a um nível mais profundo na hierarquia de arquivos. Pode ser necessário redimensionar a janela para acomodar pastas muito profundas.

    +

    Acima do gráfico há um menu pop-up que permite alternar entre todos os volumes montados. Antes que o uso de disco de um volume possa ser exibido, ele deve ser analisado. Como isto pode tomar um tempo para discos maiores, pode-se examinar outro volume enquanto a análise é feita em segundo plano.

    +
      +
    • Se a representação gráfica de um arquivo ou pasta compreende menos de dois graus de um círculo, ele é excluído da exibição.
    • +
    • O número de arquivos que é relatado para uma pasta inclui arquivos em subpastas também. Uma pasta conta como um arquivo.
    • +
    • O Uso do Disco ignora vínculos simbólicos.
    • +
    +

    Conforme mova o mouse sobre um segmento, informações sobre aquele arquivo ou pasta aparece na barra de status na base da janela.

    +

    Clicar com o botão direito do mouse em um segmento abre um menu de contexto para Obter Infomeções, Abrir (com Rastreador [Tracker]), Abrir com outro aplicativo adequado ou Reexaminar aquela pasta em particular.
    +Clicar com o botão esquerdo do mouse um segmento faz daquele arquivo/pasta o centro do círculo.
    +Clicar com o botão esquerdo do mouse o centro do círculo faz subir um nível acima.

    +

    Pode-se arrastar arquivos e pastas do Uso do Disco para outros aplicativos ou para a Área de Trabalho ou outra janela do Rastreador (Tracker) para copiar. Inversamente, volumes e pastas soltos na janela do Uso do Disco irá focar diretamente neles, tornando-os o novo centro do círculo.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/drivesetup.html b/docs/userguide/pt_BR/applications/drivesetup.html new file mode 100644 index 0000000000..a5b23cf58c --- /dev/null +++ b/docs/userguide/pt_BR/applications/drivesetup.html @@ -0,0 +1,100 @@ + + + + + + + + + Configuração de Unidade + + + + + + + + +
    +
    + +

    drivesetup-icon_64.pngConfiguração de Unidade

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/DriveSetup
    Configurações:~/config/settings/DriveSetup
    +


    +

    Configuração de Unidade é uma ferramenta para criar, excluir e inicializar partições. Neste momento ela não pode redimensionar ou mover partições existentes, então será preciso ou um volume não particionado (talvez uma unidade USB externa ou outro disco rígido) ou realizar uma configuração inicial com uma ferramenta como o GParted LiveCD para obter espaço para outra partição.

    +drivesetup.png +

    No topo está uma representação gráfica de todas as partições dentro do dispositivo escolhido na lista abaixo dela. Além de um máximo de 4 partições primárias, cada uma delas pode conter um número de partições extendidas/lógicas. Pode ser necessário expandir esta lista com o widget +/- que aparece, neste caso, na frente do dispositivo para ver mais detalhes de cada partição lógica.

    +

    Pode-se selecionar uma partição da lista e montá-la ou desmontá-la com os comandos do menu Partição ou pressionando ALT M ou ALT U.

    +

    Também é possível excluir completamente uma partição com Partição | Excluir.
    +O que nos traz isso:

    +
    Lidar com a criação/exclusão/inicialização de partições é um negócio muito perigoso. Sempre cheque duas vezes para ter certeza de que está fazendo certo e sempre mantenha uma cópia de segurança atualizada de seus dados no caso de algo sair errado!
    +

    +index +Criando uma nova partição

    +
    Se planeja usar o disco inteiro como uma partição, por exemplo um pendrive USB ou um cartão Compact Flash, pode pular a criação de uma partição e proceder direto para a Inicialização.
    +

    Quando encontrar espaço não formatado na unidade, como acima <empty>, pode criar uma nova partição neste espaço com Partição | Criar...(ALT C).

    +drivesetup-create.png +

    Aparecerá esta caixa de diálogo que permite ajustar o tamanho e o tipo da partição. Escolha Be File System se deseja usar a partição para uma instalação do Haiku ou se deseja utilizar todas as interessantes funcionalidades do Haiku nela, como atributos e consultas. Observe que outros sistemas operacionais podem não ser capazes de acessar a partição.

    +

    Caso tenha criado uma partição primária ao invés de apenas outra partição extendida/lógica dentro de uma, o diálogo abaixo também exibe uma caixa de verificação Partição ativa. Deverá marcá-la, caso utilize aquela partição para inicializar uma instalação Haiku.

    +

    Antes que possa utilizar, ou mesmo monte a partição recentemente criada, ela tem que ser inicializada com um sistema de arquivos.

    +

    +index +Inicializando uma partição

    +

    Apenas partições desmontadas podem ser inicializadas utilizando o menu Partição | Inicializar.

    +drivesetup-initialize.png +

    Aqui define-se o nome da partição e o tamanho de seus blocos. 2048 bytes por bloco são recomendados, mas pode-se escolher tamanhos maiores ou menores se tiver essas necessidades muito específicas.
    +A inicialização irá destruir todos os dados naquela partição!

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/expander.html b/docs/userguide/pt_BR/applications/expander.html new file mode 100644 index 0000000000..037e7ed327 --- /dev/null +++ b/docs/userguide/pt_BR/applications/expander.html @@ -0,0 +1,92 @@ + + + + + + + + + Expansor + + + + + + + + +
    +
    + +

    expander-icon_64.pngExpansor

    + + + + +
    Deskbar:Nenhuma entrada, normalmente carregado através do duplo clique em um arquivo suportado.
    Localização:/boot/system/apps/Expander
    Configurações:~/config/settings/Expander_Settings
    +


    +

    O Expansor é uma pequena ferramenta que permite a descompactação rápida dos formatos de arquivo mais comuns, tais quais zip, gzip, bzip2, rar e tar.gz.
    +Apenas dê um clique duplo em um arquivo compactado para ver esta simples janela:

    +

    expander.png

    + + + + +
    OrigemALT Oabrirá um diálogo de arquivo para localizar um item compactado para descompactar.
    DestinoALT Dabrirá um diálogo de arquivo para definir o destino.
    DescompactarALT Einiciará a descompactação. Pode ser abortado com ALT K.
    +

    Pode-se alternar a exibição da lista de arquivos (des)marcando Mostrar conteúdo ou pressionando ALT L.

    +
    O Expansor pode apenas descompactar itens inteiros.
    +Não é possível selecionar arquivos individuais para expandir ou adicionar/remover arquivos do item compactado.
    +

    Definições | Definições... ou ALT S abre uma caixa de diálogo de preferência que oferece algumas definições úteis para ajustar o comportamento do Expansor.
    +As opções são todas auto-explicativas:

    +

    expander-preferences.png

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/icon-o-matic.html b/docs/userguide/pt_BR/applications/icon-o-matic.html new file mode 100644 index 0000000000..6367904f8c --- /dev/null +++ b/docs/userguide/pt_BR/applications/icon-o-matic.html @@ -0,0 +1,356 @@ + + + + + + + + + Icon-O-Mático + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + + + + +
    Índice
    Bitmap BeOS versus ícones vetoriais Haiku
    + Ícones são atributos
    + Criando ícones com o Icon-O-Mático
    + Caminho
    + Forma
    + Estilo
    + Transformador
    + Salvando um ícone
    + Dicas & Truques
    + +

    icon-o-matic-icon_64.pngIcon-O-Mático

    + + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/Icon-O-Matic
    Configurações:~/config/settings/Icon-O-Matic
    + +


    + +

    Antes de nós tratarmos sobre a verdadeiro criação de ícones no Icon-O-Mático, umas poucas palavras sobre ícones no Haiku em geral.

    + +

    +index +Bitmap BeOS versus ícones vetoriais Haiku

    +

    Contrary to the BeOS, Haiku uses vector icons instead of bitmap icons. A special Haiku Vector Icon Format (HVIF) was developed that is highly optimized for small file sizes and fast rendering. That's why our icons are for the most part much smaller than either a bitmap or the widely used SVG format. Also, unlike BeOS' bitmap icons, Haiku isn't limited to an 8bit palette (256 colors).
    +Take this icon of the Terminal, for example:

    + + + + +
    BitmapSVGHVIF
    i-o-m-terminal-bitmap32 i-o-m-terminal-bitmap16terminal-icon_32terminal-icon_32
    1,024 byte
    + 256 byte
    7,192 byte 768 byte
    +

    Note that the BeOS used two versions of an icon, one 16x16 and one 32x32, to achieve good visuals in List and Icon View mode.

    +

    This trick isn't needed with vector icons. Besides only taking up a few hundred bytes in a file, vector icons also scale much better than bitmaps. (Note: BeOS offered only a 16x16 and 32x32 display.)

    + + + + + + + + + + + + + +
    16x1632x3264x64128x128
    Bitmapi-o-m-bitmap16i-o-m-bitmap32i-o-m-bitmap64i-o-m-bitmap128
    Vetori-o-m-vector16i-o-m-vector32i-o-m-vector64i-o-m-vector128
    + +

    +index +Ícones são atributos

    +

    Icons are stored as an attribute with their file. However, that doesn't mean that every file has to have this attribute to appear with an icon in a Tracker window: data files inherit their icon from their filetype. To globally change the filetype's icon you use the FileTypes preferences. If you only want to add a special icon to an individual file, you use the FileType add-on on it instead. See topic Filetypes for more information.

    +
    Being an attribute, it follows that only filesystems supporting metadata can retain a file's individual icon. So, if you move files off your BFS volume, consider zipping them up so you don't lose icons or other attributes.
    + +

    +index +Criando ícones com o Icon-O-Mático

    +

    Icon-O-Matic is Haiku's icon editor that can save your work as HVIF, SVG or PNG. The icon can also be directly attached as attribute to an existing file or exported as a resource or source file used by developers. Since the application was tailored to the optimized HVIF format, its usage reflects the inner workings of this format.

    +

    Other than your normal vector graphics software, you don't deal with separate objects that each include all their specific properties like path, stroke width, stroke and fill color etc. Rather, you assemble your objects ("shapes") from shared paths and colors ("styles") and set certain properties. This re-using of elements is one secret of HVIF's efficiency. Although that imposes some constraints on the icon designer, there are a few advantages, too.
    +For example, by re-using a path, several objects can be modified together by manipulating this one path. Think of an object and its shadow. Modifying their shared path will change the object itself and automatically its (maybe slightly distorted/translated) shadow.

    + +

    Here's a quick overview of Icon-O-Matic's window:

    +i-o-m-overview.png + +

    To create any visible object on the canvas, you need a shape with a path and a style. Conveniently, you can create one, two or all three of those together from the Shape menu. Every kind of object (Paths, Shapes, Transformers, and Styles) has a menu above its list of elements, offering various commands. Every element has certain options that are set in the Properties view.

    + + +

    +index +Caminho

    +

    A path consists of several points which are connected with lines or Bezier curves. To add or change points, make sure the path is selected in the path list.

    + +

    Simply clicking in the canvas will set the first point. While setting a point, you decide if the resulting line will be straight or curved: a simple click and release produces a straight line, holding down the mouse button and moving the mouse will drag out the handles for a Bezier curve. Of course, you can also change it all later on.

    + +i-o-m-path-ab + +

    To get from "A" to "B", you have to transform some points from corner-points to curve-points. That's done by holding ALT while clicking on a point and dragging out the handles. This results in a symmetrical Bezier: the second handle follows the movement of the other. If you need to move the handles independently, again click&drag on a Bezier handle while holding ALT.
    +Vice versa, to go from Bezier to a corner-point, hold ALT and click on a point.

    + +

    To move a point, simply click&drag it. To select more than one point, hold down SHIFT and draw a selection rectangle. Selected points are marked with a red border instead of the usual black.
    +To insert a point into a path you click on the connecting line between two points.
    +Selected points are deleted by pressing DEL or by clicking on any point while holding CTRL.

    + +

    The mouse pointer indicates the current mode:

    + + + + + + + + + + + + + + + + + +
    i-o-m-pointer-move-pathi-o-m-pointer-inserti-o-m-pointer-addi-o-m-pointer-deletei-o-m-pointer-bezieri-o-m-pointer-select
    Move point(s)Insert pointAdd pointDelete point
    CTRL
    Corner↔Bezier
    ALT
    Select points
    SHIFT
    +

    You can invoke a context menu by right-clicking a point or a selection of points:

    + + + + + + +
    Select allALT ASelects all points of the current path.
    TransformTPuts all selected points in a transformation box, so you can move, resize and rotate them together. It works just like with shapes, described a bit further down.
    SplitSplits selected points into two, one sitting on top of the other.
    FlipRotates selected points by 180°. Only has an effect on Bezier points.
    RemoveDELDeletes selected points.
    + +

    Menu Caminho

    +

    The Path menu offers a few obvious entries to Add rectangle and Add circle or to Duplicate or Remove a path. Here are some that may need a bit more explaining:

    + + + + + + +
    ReverseIf your path isn't "closed" (see Path Properties below), a click into the canvas always creates a new point, connecting it with the last one. "Reverse" will reverse this order and your new point will connect to original start point instead.
    Clean upMost useful with imported SVGs, this function will remove redundant points.
    Rotate indices rightALT RPractically, this rotates the opening of a path. It's best seen when using a not-closed path with a style and a shape with a stroke transformer. Now, if your path looks like a ⊂ it will rotate like this: ⊂ ∩ ⊃ ∪.
    Rotate indices leftALT SHIFT RDoes the same in the other direction.
    + +

    Propriedades do Caminho

    +

    Properties at the bottom left of the window offers all available settings of the currently selected object. A path only has two: a Name and if it's Closed or not.

    + + +

    +index +Forma

    +

    A shape groups together one or more paths with a style. Practically, it's the object that you'll actually see on the canvas. The grouping is done with the checkboxes in front of the paths and styles: Just select your shape and tick off the desired path(s) and a style.

    +

    A shape defines how a path and style is applied, e.g. if the object is filled or only stroked (which is done by using Transformers on the shape, we'll get to that later). Also, a shape can be moved, rotated or resized without touching the used path. That way, you can re-use a single path and get different, but related, shapes.

    + +i-o-m-shape + +

    When a shape is selected from the list, a rectangle is drawn around it. Depending on where exactly you grab it, the shape is moved, resized or rotated around a point in its center, which itself can be moved. Holding SHIFT will lock direction when moving, limit rotating to 45° angles and restrict the aspect ratio while resizing. The mouse pointer again indicates the current mode:

    + + + + + + + + + + + + + +
    i-o-m- move-shapei-o-m-pointer-resizei-o-m-pointer-rotatei-o-m-pointer-move-rotation
    MoveResizeRotateMove
    rotation point
    + +

    Shapes lie on top of each other, each is on its own layer, if you will. To reorder them you drag&drop their entry to a different position in the list.

    + +

    Menu Forma

    +

    The Shape menu offers the before mentioned possibility to Add empty, with path/style/path & style and to Duplicate or Remove a shape. Then, there is:

    + + + +
    Reset transformationReverts all the move, resize and rotate transformations you have applied to the shape.
    Freeze transformationWhen you transform a shape, its assigned path(s) stay in their original position. This may be intended; maybe more than one shape is using that path, maybe you intentionally used Options | Snap to grid to set the points at precise pixel borders.
    +If not, "Freeze transformation" will apply the current shape transformation to the assigned path(s). A future "Reset Transformation" will then return to this new state.
    + +

    Propriedades de Forma

    +

    Besides a Name, the Properties view for a shape has these options:

    + + + + +
    Min LODMinimum Level of Detail
    Max LODMaximum Level of Detail
    + +
    Nível de Detalhe (LOD)
    + + + + + + +
    16x1632x3264x64
    i-o-m-lod-icon_16i-o-m-lod-icon_32i-o-m-lod-icon_64
    +

    See how there are no numbers in the 16px version of the BeVexed icon? That's done with the "Level of Detail" setting of their shapes.
    +With the LOD you control the visibility of a shape depending on its size. That way, you can leave away details of an icon that look good on a bigger icon, but maybe not so much on its smaller version.

    +

    This is how it works: A LOD of 1.0 is defined as a 64px icon size. To get the LOD of a particular icon size you simply divide it by 64, e.g. a 16px icon has a LOD of 16/64 = 0.25. A shape won't be visible below its Min LOD and above its Max LOD.

    +

    So, if you set a shape's Min LOD to 0.0 and the Max LOD to 0.5, this means that the shape will only be visible for icon sizes smaller or equal to 32px. If you wanted to exclude the 32px icon size, you'd have to stay below 0.5, say 0.49.

    +

    The LOD is not only for leaving out detailing shapes, but also to e.g. change the stroke width at different sizes, if you feel that's needed. Simply duplicate a shape, make your changes and set both of their LOD settings to show either one or the other. Here lies the only source of potential confusion, when you unwittingly overlap LODs of shapes, and wonder why at some size both are visible...
    +For example, if Shape 1 were to be shown below 48px and Shape 2 from 48px upward (LOD: 48/64 = 0.75):

    + + + + + + + + +
    OKNada OK!
    Forma 1Min LOD0.00Min LOD0.00
    Max LOD0.74Max LOD0.75
    Forma 2Min LOD0.75Min LOD0.75
    Max LOD4.00Max LOD4.00
    + + +

    +index +Estilo

    +

    A style can either be a solid color or some type of gradient.
    +Besides the predefined colors under Swatches, you can mix your own by clicking on the current color. Also, note the slider under the color spectrum which sets the alpha-channel (transparency).

    +i-o-m-gradients +

    You quickly create a new style by mixing your color and simply drag&dropping it into the list of styles.

    +

    If you go for a gradient, you set the type (Linear, Radial, Diamond, Cone) and then define the start and end colors. This is done with a drag&drop from a color bucket into the respective color indicator under the gradient.
    +Of course you can move these indicators to change the gradient to your liking. You can also insert more indicators to add more colors by double-clicking into the gradient. Pressing DEL removes the selected indicator.

    +

    You can move, resize and rotate the representing box of a gradient on the canvas until it fits your needs. This works just like with shapes.

    + +

    Menu de Estilo

    +

    The Style menu offers the usual entries to Add, Duplicate or Remove a style and to Reset transformation.

    + +

    Propriedades de Estilo

    +

    The Name is the only Properties of a style.

    + + +

    +index +Transformador

    +

    A shape can have Transformers which change its appearance. The effects, however, are more subtle than a truck turning into a battle robot...

    + +

    Menu Adicionar Transformador

    + + + +
    ContourAdds an outline to a shape.
    StrokeStrokes the path of a shape instead of filling it with a style.
    + +

    Depending on the kind of Transformer, you'll get a different set of properties.

    + +

    Propriedades de Transformador

    +

    Besides a Name and the actual Width for the transformer, the Properties view has these (depending on its type slightly differing) options:

    + + + + + +
    CapsStroke only. Defines the end caps of a line: Butt, Square or Round.
    Detect orient.Contour only. Determines if the contour is to the inside or outside the path.
    JoinsDefines how lines are joint at a point: Miter, Round or Bevel.
    Miter limitOnly when the above Joins is set to "Miter" this setting influences the looks of the miter joint.
    + + +

    +index +Salvando um ícone

    +

    There's your usual menu bar at the top, File, Edit, Options. The usage is pretty much self-explaining, so we'll only look at how to save your work.

    +

    File | Save as... will save in a special Icon-O-Matic format that retains additional information like the names of paths, shapes and styles. These will be stripped from the actual icon once you export it to save space. It's a good idea to back-up your work like this, because without named objects everything's named "<path>/<shape>/<style>" which makes specific changes tedious.

    + +

    File | Export as... opens a familiar save panel with a file format pop-up menu at the bottom, offering these choices:

    + + + + + + + + + +
    HVIFHaiku Vector Icon Format
    HVIF RDefSaves as resource used by programmers
    HVIF source codeSaves as source code used by programmers
    SVGSaves as SVG
    PNGSaves as a 64px sized PNG
    PNG setSaves as 16, 32 and 64px sized PNGs
    BEOS:ICON attributeChoose a file and set its icon attribute directly
    META:ICON attributeChoose a file and attach the icon as mere meta data
    + + +

    +index +Dicas & Truques

    +

    A few things you should keep in mind when working with Icon-O-Matic and some general tips for its usage:

    +
      +
    • Read the Icon Guidelines to learn about important characteristics of Haiku icons, e.g. perspective, colors and shadows.

    • +
    • You should always try to minimize your use of paths, those are the most expensive, file size wise. Re-use paths wherever possible and work with manipulated shapes and their transformers instead. Smart use of gradients can also save space.

    • +
    • Wherever possible, you should activate Snap-to-Grid from the Options menu when editing paths. Path points that align with the 64x64 pixel grid use less storage space. You'll also get the crispest look if points are set on exact pixel borders. For example, it is important to align the most prominent outlines with the 16x16 grid.

    • +
    • Check the preview to see if your icon still looks good in 16x16. You may want to use the Level Of Detail settings described in the Shapes section.

    • +
    • There's an easy way to produce letters, even if Icon-O-Matic doesn't provide such a tool. Just enter the text in a text editor such as StyledEdit, adjust font type and style, and drag&drop or copy&paste the selected text into Icon-O-Matic. This will create the according paths and shapes.

    • +
    • If you assign more than one path to a shape, their overlapping areas will cancel each other out. When one path is completely inside another, it practically creates a hole in the resulting shape.

    • +
    • You can zoom in and out of the canvas with the mouse wheel. Panning is done either by click&drag with the middle mouse button or with a normal left-click&drag while holding SPACE.

    • +
    + + + + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/installer.html b/docs/userguide/pt_BR/applications/installer.html new file mode 100644 index 0000000000..6d1fc2fa4c --- /dev/null +++ b/docs/userguide/pt_BR/applications/installer.html @@ -0,0 +1,98 @@ + + + + + + + + + Installer + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    installer-icon_64.pngInstaller

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/Installer
    Configurações:nenhuma
    +


    +

    The Installer is used to copy Haiku onto another volume.
    +Upon launch it displays a start window with important information. It's not a mindless EULA you're used to click away in the blink of an eye, it states:

    +
      +
    • This is alpha-quality software. Make backups or suffer the consequences!

    • +
    • The Installer needs a prepared partition. You may have to use a GParted LiveCD or a similar tool until Haiku's DriveSetup is mature enough to handle this task.

    • +
    • Haiku can be added manually to the bootmanager GRUB. How that is done exactly is available as an online guide.
    • +
    +



    +

    Once you acknowledged with Continue, you're presented with the main window:

    +installer.png +

    In the first pop-up menu you choose the source for the installation. It can be a currently installed Haiku or can come from an install CD or USB drive, etc.
    +The second pop-up menu specifies the target for the installation. This target partition/volume will be completely overwritten and has to be set aside beforehand by a partitioning tool like GParted.

    +

    Clicking the little expander widget will Show optional packages, if available, that you can choose to install in addition to the basic Haiku.

    +

    You should do a last check if you really picked the right target before starting the installation process. Click on Setup partitions... to open DriveSetup and have a look at the naming and layout of the available volumes and partitions.

    +

    Begin starts the installation procedure, which basically copies everything but the home/ and common/ folder onto the target volume and makes it bootable.

    + +

    index +Tools

    +

    At the end of the installation procedure, the partition is automatically made bootable. However, it can happen that some other operating system or partitioning tool (accidentally) overwrites the boot sector of your Haiku volume. In this case, boot your installation CD and start the Installer. Select your Haiku boot partition from the Onto: Please choose target menu and select Write boot sector from the Tools menu to make it bootable again.

    +

    The other item in the Tools menu is used to Set up a boot menu that puts a menu in the boot sector to choose what operating system to boot. See topic BootManager for more information.
    + You don't need to run the BootManager if you already use a bootmanager like GRUB, in which case you have to add Haiku manually (see above), or Haiku runs exclusively on your machine.

    + + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/list-cli-apps.html b/docs/userguide/pt_BR/applications/list-cli-apps.html new file mode 100644 index 0000000000..5f7db8efc0 --- /dev/null +++ b/docs/userguide/pt_BR/applications/list-cli-apps.html @@ -0,0 +1,362 @@ + + + + + + + + + Lista de comandos + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    cli-app-icon_64.pngLista de todos os aplicativos de linha de comando

    + + +
    Localização:/boot/system/bin
    /boot/common/bin
    ~/config/bin
    +


    +

    Todos os aplicativos de linha de comando fornecidos com o Haiku estão em /boot/system/bin ou /boot/common/bin. Seus próprios aplicativos de linha de comando ou adicionalmente instalados devem ir para ~/config/bin. Todas essas localidades são parte da variável PATH e são, portanto, automaticamente encontradas.
    +Aqui está uma lista de todos os aplicativos de linha de comando que são fornecidos com o Haiku, cada qual com apenas uma descrição curta do que faz. Para informações mais detalhadas do seu uso, execute o comando com o parâmetro --help.

    +


    +

    Índice:   A – E   ::    F – J    ::    K – O    ::    P – S    ::    T – Z

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    CortexAddOnHost Starts service to monitor audio and video media add-ons in use.
    ReadOnlyBootPrompt Language setup.
    [ Returns true/false after comparing items.

    indexA

    addattr Writes an attribute to a file, taking the type into account and converting the values accordingly. (Haiku specific)
    alert Shows a message box. (Haiku specific)
    arp Manipulates the system ARP cache.
    awk See gawk.
    base64 Base64 encode or decode to standard output.
    basename Strips directory and optionally suffix from a /path/to/filename string.
    bash Bourne-again shell
    bc An arbitrary precision calculator language.
    beep Rings a bell.
    bootman Installs or uninstalls a boot-menu.
    bunzip2 See bzip2.
    bzip2 File compressor
    c++ C++-Compiler
    cal Displays a calendar.
    cat Concatenates files and prints to standard output.
    catattr Prints out the contents of an attribute of a file. (Haiku specific)
    cc C-Compiler
    checkfs Checks and repairs the file system. (Haiku specific)
    checkitout Checks out sources simply with their repository's URL.
    chgrp Changes group ownership of files.
    chmod Changes permissions of files.
    chop Splits a file into smaller files.
    chown Changes the owner of files.
    chroot Runs a command within a specified root directory.
    cksum Prints out CRC checksum and byte count of files.
    clear Clears the terminal window.
    clockconfig Prints out the clock configuration.
    cmp Compares files byte by byte.
    collectcatkeys [Leftover from the move of locale-kit.]
    comm Compares sorted files line by line.
    compress Data compression program
    consoled Console daemon
    copyattr Copies all or a subset of attributes from one or more files to another or new file. (Haiku specific)
    cp Copies files and directories.
    csplit Split a file into pieces separated by a specified pattern.
    ctags Generates an index file for a variety of language objects found in files
    cut Prints out sections from each line of a file.
    date Displays or sets the current time and date.
    dc Desk calculator language.
    dd Copies raw data, converting and formatting according operands.
    desklink Installs items in Deskbar. (Haiku specific)
    df Reports free and used space of mounted volumes.
    diff Compares files line by line.
    diff3 Compares three files line by line.
    dircolors Color setup for ls.
    dirname Strips the filename from a /path/to/filename string.
    draggers Shows/sets the dragger state of Replicants.
    driveinfo Shows hardware information.
    dstcheck Shows a message box used when switching to/from daylight saving time.
    du Summarizes disk usage of each file, recursively for directories.
    dumpcatalog [Leftover from the move of locale-kit.]
    echo Displays a line of text.
    egrep See grep.
    eject Ejects removable media.
    env Runs a program in a modified environment.
    error Prints clear text error messages for given error numbers.
    expand Converts tabs to spaces.
    expr Prints the value of an expression.

    F

    factor Prints the prime factors of integer numbers.
    false Does nothing, indicates "unsuccessful" and returns the value "1".
    fdinfo Shows info about the used file descriptors in the system.
    ffm Sets focus follows mouse.
    fgrep See grep.
    filepanel Displays a load/save file panel. (Haiku specific)
    find Searches for files in a directory hierarchy.
    finddir Finds special directories defined by the system.
    fmt Reformats the paragraphs of a file.
    fold Wraps input lines of a file.
    fortune Prints a random, hopefully interesting, adage.
    frcode Called by updatedb to compress the list of file names.
    freetype-config Shows FreeType compilation and linking information.
    ftp File transfer program
    ftpd FTP daemon
    funzip Extracts the first item of an archive to standard output.
    fwcontrol FireWire control program
    gawk Pattern scanning and processing language.
    gdb GNU debugger
    getlimits Prints platform dependent limits in a format useful for shell scripts.
    grep Search for a pattern.
    groups Prints group memberships for each username.
    gunzip See gzip.
    gzexe De/Compresses executables.
    gzip De/Compresses files.
    hd Hexdump
    head Prints the first lines of a file.
    hey A small tool for scripting GUI apps.
    hostname Prints or sets the hostname of the system.
    id Prints user and group information.
    ident Identifies RCS keywords in files.
    ifconfig Configures a network interface.
    install Copies files to a destination without disrupting the running system.
    install-wifi-firmwares.sh Installs firmware for various wireless network cards.
    installoptionalpackage Temporary solution for installing optional packages.
    installsound Installs a new sound event in the Sounds preferences panel.
    iroster Lists input devices.
    isvolume Gets information about a mounted volume.
    join For each pair of input lines with identical join fields, write a line to standard output.

    indexK

    kernel_debugger Enters the kernel debugger.
    keymap Loads or saves a keymap.
    kill Sends a signal to quit a process.
    less Views a file.
    lessecho Echos its arguments and expands metacharacters, such as * and ? in filenames.
    lesskey Specifies key binding for less.
    link Creates a link to a file.
    linkcatkeys [Leftover from the move of locale-kit.]
    listarea Lists area info for all currently running teams.
    listattr Lists the attributes of a file. (Haiku specific)
    listdev Lists all hardware devices.
    listimage Lists image info for all currently running teams.
    listport Lists all open ports in the system organized by team.
    listres Lists resources of files.
    listsem Lists the semaphores allocated by the specified team.
    listusb Lists USB devices.
    ln Creates a link to a file.
    locale Shows the set preferred language, its LC_CTYPE and the preferred formatting.
    locate Locates a file.
    logger Sends a message to the system log.
    login Starts a session on the system.
    logname Prints the name of the current user.
    ls Lists directory content.
    lsindex Displays the indexed attributes on the current volume/partition. (Haiku specific)
    mail2mbox Converts BeOS e-mail files to Unix mailbox files.
    make GNU make utility
    makebootable Makes the specified BFS partitions/devices bootable by writing boot code into the first two sectors.
    mbox2mail Converts Unix mailbox files to BeOS e-mail files.
    md5sum Prints or checks MD5 checksums.
    merge Three-way file merge.
    message Prints a flattened BMessage file.
    mimeset Sets MIME type of a file.
    mkdepend Makefile dependency generator
    mkdir Creates a directory.
    mkdos Initializes FAT partitions.
    mkfifo Creates named pipes.
    mkfs Creates a file system.
    mkindex Creates a new index for an attribute. (Haiku specific)
    mktemp Safely creates a temporary file or directory.
    modifiers Prints currently (un)pressed modifier keys.
    more See less.
    mount Mounts a file system.
    mount_nfs Mounts a NFS partition.
    mountvolume Mounts a volume by name.
    mv Moves/renames a file.
    netcat TCP and UDP utility.
    netstat Prints network connections, routing tables, interface statistics, masquerade connections and multicast memberships.
    nl Prints each file with line numbers added.
    nohup Runs a command ignoring hangup signals.
    nproc Prints the number of available processing units.
    od Writes an unambiguous representation of a file.
    open Launches an application/document from the shell. (Haiku specific)

    indexP

    passwd Changes the user password.
    paste Prints lines consisting of the sequentially corresponding lines from each file, separated by tabs.
    patch Applies a diff file to an original.
    pathchk Diagnoses invalid or unportable file names.
    pc Programmer's calculator
    ping Sends ICMP-echo-request to network host.
    play Plays tracks from CD.
    playfile Plays an audio file.
    playsound Plays an audio file.
    playwav Plays a WAV file.
    pr Paginates or columnates files for printing.
    printenv Prints the value of an environment variable.
    printf Formats and prints data.
    prio Changes priority of a process.
    profile Profiles threads.
    ps Lists running processes.
    ptx Outputs a permuted index, including context, of the words in the input files.
    pwd Prints current directory.
    query A shell utility emulating Tracker's "Find by formula" functionality. (Haiku specific)
    quit Quits an application.
    rc Resource compiler
    readlink Prints the path to the destination of a symbolic link.
    reindex Puts attributes of existing files into newly created indexes. (Haiku specific)
    release Releases a semaphore.
    renice Alters the priority of a running process.
    rlog Prints log messages and other information about RCS files.
    rm Removes files and directories.
    rmattr Removes an attribute from a file. (Haiku specific)
    rmdir Removes directories.
    rmindex Removes the index for an attribute. (Haiku specific)
    roster Prints information about running teams.
    route Lists and manipulates network routes.
    safemode Checks if the system is running in safemode.
    screen_blanker Starts the screen blanker.
    screenmode Show/sets the screen mode.
    sdiff Shows or merges differences of two files side-by-side.
    seq Prints a sequence of numbers.
    setdecor Shows/sets the decorator.
    setgcc Shows/sets the used gcc version.
    settype Sets the MIME type, signature and preferred application of a file.
    setversion Shows the version of a file.
    setvolume Sets the system sound volume.
    setwep Provides WEP encryption for wireless networks.
    sh See bash.
    sha1sum Prints or checks SHA1 checksums.
    shar Creates shell archives.
    shred Overwrites a file repeatedly.
    shuf Prints a random permutation of the input lines.
    shutdown Shuts down the computer.
    sleep Pauses for a specified number of seconds.
    sort Prints a sorted concatenation of all files.
    spamdbm Classifies e-mail messages as spam or genuine.
    split Outputs fixed-size pieces of input files to files with prefixes.
    stat Displays file or file system status.
    strace Traces the syscalls of a thread or a team.
    stty Shows/sets terminal characteristics.
    su Changes the effective user id and group.
    sum Prints checksum and block counts for each file.
    sync Forces changed blocks to disk, updates the superblock.
    sysinfo Shows system info.

    indexT

    tac Concatenates and prints files, last line first.
    tail Prints the last ten lines of a file.
    tcpdump Dumps traffic of a network.
    tcptester [deprecated]
    tee Writes or appends data from standard input to a file.
    telnet User interface to the telnet protocol.
    telnetd Telnet daemon
    test Returns true/false after comparing items.
    timeout Starts a command and kills it if it's still running after a specified number of seconds.
    top Displays running threads and CPU usage.
    touch Changes a file's timestamp.
    tput Initializes a terminal or query terminfo database.
    tr Translates, squeezes and/or deletes characters from standard input.
    traceroute Prints the route packets take through a network.
    translate Uses DataTranslators to convert file formats.
    trash Sends files to trash or restores them.
    true Does nothing, indicates "success" and returns the value "0".
    truncate Shrinks or extends the size of a file.
    tsort Does a topological sorting.
    tty Prints the file name of the terminal connected to standard input.
    uname Prints out system information.
    unchop Recreates a file previously split with chop.
    unexpand Converts spaces to tabs.
    uniq Filters adjacent matching lines from input, writing to output.
    unlink Calls the unlink function to remove the specified file.
    unmount Unmounts a volume.
    unrar Expands a rar archive.
    unshar Expands a shar archive.
    untrash See trash.
    unzip Expands a zip archive.
    unzipsfx Used to make existing zip archives self-extracting.
    updatedb Updates a localization database.
    uptime Prints date and time, as well as the time elapsed since the system was started.
    urlwrapper Wraps URL MIME types around command line or other apps that don't handle them directly.
    useradd Creates a new user.
    uudecode Decodes a uuencoded file.
    uuencode Uuencodes a file so it can be mailed to a remote system.
    vdir Lists information about files.
    version Returns the version of a file.
    vmstat Prints information about the virtual memory system.
    waitfor Waits until a certain thread appears. (Haiku specific)
    watch Executes a program periodically.
    wc Prints the number of paragraphs, words and characters (bytes) of a file.
    wget Tool for downloading via HTTP, HTTPS or FTP
    which Locates a command.
    whoami Prints user name associated with the current effective user ID.
    xargs Builds and executes command lines from standard input.
    xres Lists and manipulates resources.
    yes Prints out a string repeatedly until killed.
    zcat See gzip.
    zcmp See zdiff.
    zdiff Compara arquivos comprimidos.
    zforce Forces a '.gz' extension on gzip files.
    zgrep Scan through possibly compressed files for a regular expression.
    zip Adds or replaces items in a zip archive.
    zipcloak Encrypts all unencrypted items in a zip archive.
    zipgrep Scans the given zip items for a string or pattern.
    zipinfo See unzip.
    zipnote Prints the comments in a zip archive.
    zipsplit Splits a zip archive into smaller pieces.
    zmore Like more but operates on the uncompressed contents of any compressed file.
    znew Recompresses .Z files into .gz (gzip) archives.
    +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/magnify.html b/docs/userguide/pt_BR/applications/magnify.html new file mode 100644 index 0000000000..cab65035e2 --- /dev/null +++ b/docs/userguide/pt_BR/applications/magnify.html @@ -0,0 +1,100 @@ + + + + + + + + + Magnify + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    magnify-icon_64.pngMagnify

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/Magnify
    Configurações:~/config/settings/Magnify_prefs
    +


    +

    Magnify shows an enlarged version of the area around your mouse pointer.

    +magnify.png +

    At the top you'll find the size and magnification level of the area. "32 x 32 @ 8 pixels/pixel" means that you look at a 32x32 pixel square around your mouse pointer and every pixel is enlarged by a factor of 8.

    +

    Below that is the color of the pixel that's marked by a red outline. Its color is presented as RGB and hex value.
    +You can move the red outline with / / / .

    +

    To measure distances and align objects, you can add up to two blue crosshairs with ALT H. Their X/Y coordinates toward the top left corner and, if both are added, their X/Y distance from each other, are displayed at the bottom.
    +They can also be moved with / / / . The active crosshair is marked with an "x".

    +

    You can move the mouse pointer pixel by pixel with OPT  / / / .

    +

    Clicking on the pop-up menu gives you a number of options:

    + + + + + + + + + + + + + + +
    Save imageALT S Saves the current display as a resource file.
    Copy imageALT C Copies the current display to the clipboard.
    Hide/Show infoALT T Toggles the display of all the additional information.
    Add a crosshairALT H Adds a crosshair you can drag around.
    Remove a crosshairALT SHIFT H Removes the last added crosshair.
    Hide/Show gridALT G Toggles the overlayed grid.
    Freeze/Unfreeze imageALT F Stops/continues updating the magnification area.
    Stick coordinatesALT I Keeps updating the magnification area, but don't follow the mouse pointer any more.
    Make squareALT / Reverts back to a square display after resizing the window.
    Decrease window sizeALT - Shrinks the magnified area around the mouse pointer.
    Increase window sizeALT + Enlarges the magnified area around the mouse pointer.
    Decrease pixel sizeALT , Lowers magnification.
    Increase pixel sizeALT . Increases magnification.
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/mail.html b/docs/userguide/pt_BR/applications/mail.html new file mode 100644 index 0000000000..2079bc6299 --- /dev/null +++ b/docs/userguide/pt_BR/applications/mail.html @@ -0,0 +1,200 @@ + + + + + + + + + Mail + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + + + + +
    Índice
    Reading messages
    + Creating new messages
    + Preferences
    + +

    mail-icon_64.pngMail

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/Mail
    Configurações:~/config/settings/Mail/
    +~/config/settings/Mail/Menu Links/ - Objects put here appear in the mailbox' context menu
    +~/config/settings/Mail/signatures/ - Location to store signatures
    +~/config/settings/Mail/status/ - Location to store custom statuses
    +


    +

    Mail is Haiku's default viewer and editor of emails. It has nothing to do with the actual fetching and sending of mails, which is done by the mail_daemon and can be configured via the E-mail preferences.

    +

    This page is a general overview of the application Mail. For more information how email in Haiku works, refer to the Workshop on managing email.

    +

    +index +Reading messages

    +

    You double-click an email file to open it in Mail. The interface is quite simple:

    +email-read.png +

    A menu and optional tool bar on top, with an area of the interesting attributes of a mail (to, from, subject, date) below that, and then the actual body of the mail. If the mail appears with strange characters or empty, try to change the Decoding from the pop-up menu.

    +

    If there are files attached to an email, they are listed at the end of the message. A right-click on one opens a context menu to Save attachment... or Open attachment. You can also drag & drop directly to the Desktop or another Tracker window.

    +

    Most of the menu and tool bar items are pretty self-explaining, so we'll concentrate just on the highlights.

    +

    +indexFile

    +

    When you close the window of a new mail, its status is normally switched from "New" to "Read". But you can set other statuses as well, by choosing from the Close and... submenu. There you'll also find the option Set to... to create your own custom statuses, which are saved under ~/config/settings/Mail/status/.

    +

    +indexEdit

    +

    Here you'll find an item to open Mail's Preferences... (see below) and a shortcut to manage your Accounts..., which will open the E-mail preference panel.

    +

    +indexView

    +

    You'll only seldomly need these two items, if at all:

    + + + +
    Show headerALT HShows the complete header of a mail, in case you need to track down the path of your mail, for example.
    Show raw messageDisplays a mail in its raw state, i.e. with all its control characters and without Mail's coloring of quotes or URLs, for example..
    +

    +indexMessage

    +

    The different options to reply to a mail may need a bit of explanation.

    + + + + +
    ReplyALT RThe standard reply to the server that has sent the mail to you. NOTE: In case of a mailing list post, this normally replies back to the mailing list, not just the person that wrote the post!
    Reply to senderOPT ALT RThis on the other hand, sends directly and only to the person listed in the "From" attribute.
    Reply to allSHIFT ALT RReplies to the original sender plus all other (cc'ed) recipients of the original mail.
    +
    If you mark a passage in the email before replying to it, only the marked text will be quoted in your answering mail. A nice way to cut down on excessive quoting, which is frowned upon by pretty much everybody...
    +

    The items to Forward, Resend and Copy to new are again pretty self-explaining.

    +

    When you've opened an email from a Tracker or query result window, Previous message and Next message will move to the previous/next email in the list.

    +

    Save address collects all email addresses from the header and the actual email body in a submenu. Choosing an address will open the People application in order to complete and save the contact information.

    +

    +indexQueries

    +

    This doesn't work yet, but is intended to hold queries that would show all mail related to the currently open mail, like all from the same sender or same subject/thread.

    + +

    +index +Creating new messages

    +

    A new email is created by invoking the New mail message menu or the corresponding icon from the tool bar of an open email. Or you just start the Mail application or choose Create new message... from the context menu of the mailbox icon in the Deskbar.

    +email-write.png +

    The window is pretty similar to the one when reading mails. The menu and tool bar items are slightly different and the text boxes have to be filled with the recipient's email address, subject and so on, of course.

    +

    Cc is short for the anachronistic term "carbon copy" and results in copies of your mail being sent to the listed people. The difference to just listing a buch of addresses in the "To" field is, that you don't directly address the cc'ed people, thereby signaling that you probably don't expect an answer of them.
    +Bcc means "blind carbon copy" which does practically the same as "Cc", but hides the recipients from each other.

    +

    You can enter several recipients by separating their addresses with a comma. +To, CC, and BCC are pop-up menus. They contain all email addresses on your system found by a query for People files. Their "Group" attribute will sort them in corresponding submenus.

    +

    Again, we'll focus on the more interesting features in the menus.

    +

    +indexFile

    +

    With Save as draft you can store your work so far and come back to it later. To load it again, choose it from the Open draft submenu that will list the result of a query for all mails with the status "Draft".

    +

    +indexEdit

    +

    Quote and Remove quote or their respective shortcuts ALT / are used to add/remove a level of quoting by adjusting the number of ">" symbols in front of quoted lines. Just select some text in all the lines you want un/quoted and invoke the menu item.

    + +email-spellcheck.png + +

    Check spelling currently only offers corrections of English texts by marking wrong or unknown words red and showing them in italic. +Right-clicking such a word opens a context menu offering suggestions to correct the word or to Add it to the accepted vocabulary.

    +

    Then, there are again the items to open Mail's Preferences... (see below) and a shortcut to managing your Accounts..., which will open the E-mail preference panel.

    +

    +indexMessage

    +

    With Add signature you can add predefined texts to the end of your mail. From its submenu you can choose a specific or Random one.

    + +email-signature.png + +

    You create new or edit existing signatures with Edit signatures..., which will open a window where you enter the text itself and the title of your new sig. There, in the Signature menu, you find items to Open a specific signature or Save or Delete the currently loaded one, Signatures should be saved in ~/config/settings/Mail/signatures.

    +

    Use Add enclosure... and Remove enclosure to add/remove files as attachments. You can also drag & drop files from a Tracker window. Be careful though to drop those in the header section (To/From/Subject area at the top) or they'll get pasted into the email body if they are text files.

    + +email-attachments.png + +

    File attachments are listed below the header section. You can remove a file by invoking a context menu or by selecting it and pressing DEL.

    + +

    +indexQueries

    +

    This doesn't work yet, but is intended to hold queries that would show all mail related to the currently open mail, like all to the same recipient or same subject/thread.

    + +

    +index +Preferences

    +email-preferences.png +

    Mail's preferences come in two parts:

    +

    +indexUser interface

    + + + + + + + +
    Button barOptions to show labels under the icons or hide the tool bar completely.
    FontSets the type of font used for the email text.
    SizeSets the font size.
    Colored quotesColors different levels of quotation.
    Initial spell check modeTurns the spell checker on/off on startup.
    Automatically mark mail as readIf you close an email with the Status "New", you can have it automatically marked as "Read".
    + +

    +indexMailing

    + + + + + + + + + +
    Default accountIf you have several email accounts, this specifies which to use by default when creating a new message.
    Reply accountWhen you reply to a mail, you can either always Use default account set in the pop-up menu above, or use the Account from mail, which will send the mail from the same account that received the original message.
    Reply preambleThis is inserted before the quoted text in your reply. You can use various variables from the pop-up menu next to the text field. Example: "Hello %n!\n\nOn %d you wrote:\n" produces this: +
    Hello Dr. Hawking!
    +
    +On Mon, 18 Jan 1998 02:55:16 +0800 you wrote:
    +> so thanks again for the inspiration concerning the cosmological constant.
    +> ...and the rest of the quoted text following...
    Auto signatureAdds a signature automatically to the end of the mail.
    EncodingSets the default encoding.
    Warn unencodableIf your mail contains characters that can't be encoded with the currently set encoding method, you can turn on being warned about that. That gives you the opportunity to change the encoding before sending. Otherwise unencodable characters are replaced by rectangle symbols.
    Text wrappingInserts line-breaks every 76 characters which makes mails easier to read.
    Attach attributesYou can choose to send BFS' attributes of a file alongside the attachments. This is nice for other Haiku users, as they'll get a "complete" file (think artist, album, title attributes of MP3 files), but may cause confusion (or even suspicion) with others, who will wonder what the additional "BeOS Attributes" attachment might be...
    +Should you opt not to send attributes with your attachments, remember zip up your files before you send them or you'll strip away BFS attributes.
    + +
    +
    + + + + + + diff --git a/docs/userguide/pt_BR/applications/mediaplayer.html b/docs/userguide/pt_BR/applications/mediaplayer.html new file mode 100644 index 0000000000..804b2026ea --- /dev/null +++ b/docs/userguide/pt_BR/applications/mediaplayer.html @@ -0,0 +1,142 @@ + + + + + + + + + Tocador de Mídia + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    mediaplayer-icon_64.pngTocador de Mídia

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/MediaPlayer
    Configurações:~/config/settings/MediaPlayer
    +


    +

    O Tocador de Mídia é o tocador padrão para todos os arquivos de áudio e vídeo. Graças ao seu backend ffmpeg, um grande número de formatos amplamente utilizados são suportados. Sua interface simples possui todos os controles esperados:

    +mediaplayer.png +

    A botão deslizante da barra de progresso permite rapidamente mover a uma posição, deixar o mouse sobre ele mostra o tempo atual e restante do clipe. Clicando na exibição de tempo à direita dele, alterna entre tempo total, atual e restante.
    +Abaixo encontram-se os controles usuais para pular para a faixa anterior, tocar/pausar, parar e saltar para a próxima faixa. Então segue o controle de volume (clicando no símbolo do alto-falante alterna para mudo) e um indicador VU.

    + +

    Reprodução de áudio e vídeo

    +

    Uma vez que não existem quaisquer funcionalidades específicas para reprodução de áudio, iremos direto para as funcionalidades de vídeo ou gerais.

    +mediaplayer-info.png +

    Disponível para todas as mídias está a Informação de arquivo... (ALT I). Ela exibe informações sobre o arquivo atualmente carregado, como tempo de exibição ou detalhes da faixa de áudio/vídeo e seu codec.

    +

    A maioria dos comandos frequentemente utilizados dos menus estão também disponíveis a partir do menu de contexto, com clique no botão direito do mouse, na área do vídeo. Útil quando em modo de tela cheia.
    +Em Vídeo podemos encontrar opções para ampliar a janela em vários níveis ou forçar a taxa de aspecto para alguns valores padrão. Deixando a taxa de aspecto para as Definições de fluxo padrão, deverá trabalhar melhor para os arquivos corretamente codificados.

    +

    O Tocador de Mídia suporta legendas em formato SRT. Para tê-las exibidas sob o menu Legendas, seus nomes de arquivos tem que ser idênticos ao de seus arquivos de vídeo, com um nome de idioma sufixado e a extensão ".srt" ao invés da extensão do vídeo. Por exemplo:

    +
    MeuFilme.avi
    +MeuFilme.Alemao.srt
    +MeuFilme.Ingles.srt
    +MeuFilme.Frances.srt
    +

    Faixas de áudio múltiplas, muito frequentemente utilizadas por vários idiomas dentro de um único arquivo de vídeo, estão disoníveis a partir do submenu Faixa de áudio. O submernu Vídeo | Faixa oferece o mesmo quando existem múltiplas transmissões de vpideo disponíveis.

    +

    You can toggle the Full screen mode (ALT ENTER or F or a double left-click), hide MediaPlayer's window borders and controls with Hide interface (ALT H or a double right-click) or have it's window Always on top (ALT A).

    + +

    Playlists

    +

    MediaPlayer | Playlist... (ALT P) opens a window with the files currently queued up for playback. Double-clicking an entry starts playing it.

    +mediaplayer-playlist.png +

    You can add more files by dropping them into the list and rearrange their position via drag & drop. From the Edit menu you can Randomize or Remove (DEL) an entry from the list or delete the actual file with Move to Trash (ALT T).

    +

    Of course, you can Save a playlist and later Open it again, or start it with simply double-clicking the playlist file.

    + +

    Settings

    +

    There are several settings to fine-tune MediaPlayer's behavior:

    +mediaplayer-settings.png +

    The first batch, Play mode, is pretty self-explaining. Start playback automatically, close windows when finished or play clips in a loop.

    +

    Next are different View options.
    +You can opt to Use hardware overlay if available, which cuts down CPU usage but only works for one video window and needs a supporting video card driver.
    +You can Scale movies smoothly (when not in overlay mode) which uses very fast filtering to smooth over otherwise blocky pixels when zooming video or watching in full-screen mode.
    +Scale controls in full-screen mode if you prefer slightly bigger controls, maybe because you watch the screen from a bit farther away when in full-screen mode.
    +Then there are settings for Subtitle size and Subtitle placement. They can be shown at the Bottom of video, which will always have them overlayed over the picture. Or Bottom of window, which allows you to resize the window vertically and have the subtitles appear in the black bar at the bottom instead.

    +

    The last setting determines the volume of clips whose windows are not currently active. You can have them all blaring at Full volume, at less confusing Low volume or quietly Muted.

    + +

    Keyboard controls

    +

    MediaPlayer offers convenient key combinations to control playback without using the mouse.

    + + + + + + +
    ZSkip to previous track
    XPlay
    CPause
    VStop
    BSkip to next track
    +

    These keys are assigned to the functions of the control buttons. They are always the bottom left letter keys on the keyboard, i.e. they are used independently of your current keymapping. The above keys correspond to a standard US-american keymap.

    + + + + + + + + + + + + + + + + +
    Seek forwards
    SHIFT Jump forwards 10 seconds
    ALT Jump forwards 30 seconds
    Seek backwards
    SHIFT Jump backwards 10 seconds
    ALT Jump backwards 30 seconds
    Increase volume
    Decrease volume
    ALT Skip to previous Track
    ALT Skip to next Track
    SpacebarToggle play/pause
    ALT ENTERToggle full-screen mode (also done by double left-clicking the video area)
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/midiplayer.html b/docs/userguide/pt_BR/applications/midiplayer.html new file mode 100644 index 0000000000..34ffe6e4ef --- /dev/null +++ b/docs/userguide/pt_BR/applications/midiplayer.html @@ -0,0 +1,83 @@ + + + + + + + + + MidiPlayer + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    midiplayer-icon_64.pngMidiPlayer

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/MidiPlayer
    Configurações:~/config/settings/MidiPlayerSettings
    +


    +

    As the name suggests, MidiPlayer is used to playback midi music files. Midi files are special, as they don't contain the actual digitized and in some way encoded music, but only a description of it: Hold this note for that long with this volume and use instrument X for it.
    +While this keeps file sizes pretty small, it also follows that depending on the instrument library (the so-called "SoundFont") the results can differ hugely. Also, these SoundFonts tend to be quite large, increasingly so with the number and quality of the instrument samples.

    +

    Haiku doesn't come with a SoundFont installed, because they are so large and only few people generally need one. Most of those who do, already have high quality or custom SoundFonts. To be able to at least hear something you can install a free one from an optional package. In Terminal, enter: installoptionalpackage TimGMSoundFont

    +

    To use any other SoundFont, create a link to it in /boot/system/data/synth and name it big_synth.sy.

    +midiplayer.png +

    MidiPlayer's interface is very simple. Just double-click or drag & drop a midi file and playback starts. You control the volume with the slider and add reverb effects from the Reverb pop-up menu. Activating the scope will show a visualization in form of an oscilloscope running at the top.

    + +
    +
    + + + diff --git a/docs/userguide/pt_BR/applications/packageinstaller.html b/docs/userguide/pt_BR/applications/packageinstaller.html new file mode 100644 index 0000000000..e76fcf5545 --- /dev/null +++ b/docs/userguide/pt_BR/applications/packageinstaller.html @@ -0,0 +1,90 @@ + + + + + + + + + PackageInstaller + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    packageinstaller-icon_64.pngPackageInstaller

    + + + + +
    Deskbar:No entry, normally launched via +double-clicking a supported file.
    Localização:/boot/system/apps/PackageInstaller
    Configurações:nenhuma
    +


    +
    This page is currently only a first draft. Please check back later for a refined version.
    +

    PackageInstaller is a software installer for BeOS packages in PKG format. It provides an easy-to-use GUI that helps in fast package installation in Haiku.

    +

    It is being executed automatically when you try to open files with .pkg extension.

    +packageinstaller.png +

    The main window gives access to two configurations:

    +
      +
    • installation type (depending on the developer there might be more than one (standard) installation option)
    • +
    • Installation location (only entire partitions/hard disks can be chosen, not custom paths)
    • +
    +

    After clicking Install the extraction and installation process will begin.

    +packageinstaller-installer.png +

    At this point warnings and errors can appear saying which libraries and dependencies are missing in order to run the program. It might be required to install these packages before attempting to install desired program.

    +

    When the installation is complete, package should appear in the Deskbar applications menu.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/pe.html b/docs/userguide/pt_BR/applications/pe.html new file mode 100644 index 0000000000..ac0fbc14a4 --- /dev/null +++ b/docs/userguide/pt_BR/applications/pe.html @@ -0,0 +1,80 @@ + + + + + + + + + Pe + + + + + + + + +
    +
    + +

    pe-icon_64.pngPe

    + + + + + +
    Deskbar:Aplicativos
    Localização:/boot/apps/Pe/Pe
    Documentação:/boot/apps/Pe/Documentation.html
    Configurações:~/config/settings/pe/*
    +


    +

    Pe é um editor sofisticado, com seu realçador de sintaxe principalmente voltado para programadores e desenvolvedores de páginas HTML. Originalmente criado por Maarten Hekkelmann, está sendo convertido em código aberto e mantido pelos desenvolvedores do Haiku. Um rastreador de erros e mais informações estão disponíveis na página do projeto Pe.

    +

    Encontre mais informações sobre os recursos do Pe em sua documentação local.

    + +
    +
    + + + diff --git a/docs/userguide/pt_BR/applications/people.html b/docs/userguide/pt_BR/applications/people.html new file mode 100644 index 0000000000..a464602734 --- /dev/null +++ b/docs/userguide/pt_BR/applications/people.html @@ -0,0 +1,88 @@ + + + + + + + + + Pessoas + + + + + + + + +
    +
    + +

    people-icon_64.pngPessoas

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/People
    Configurações:~/config/settings/People_data
    +


    +

    Pessoas é um simples banco de dados de contatos que utiliza os atributos do sistema de arquivos do Haiku para armazenar endereços e outras informações de contato. Todo contato é salvo como um arquivo de Pessoa com seus dados em atributos separados. Tudo é indexado e portanto pesquisável com uma consulta.

    + +people.png + +

    O atributo Grupo na base da janela permite atribuir uma pessoa a um ou mais grupos. Útil para correspondência "em massa" a um número de pessoas que, por exemplo, trabalham em um projeto específico. O menu pop-up oferece todos os grupos atualmente existentes. Se uma pessoa pertence a mais de um grupo, os nomes dos grupos são separados por uma ",".

    + +

    Estes arquivos de Pessoa são geralmente salvos em /boot/home/people/. Para obter uma lista de todos os seus contatos, apenas abra sua pasta de pessoas e mostre todos os atributos de seu interesse. Se escolher organizar seus arquivos Pessoa em diferentes pastas, apenas utilize uma consulta para mostrar todos em uma janela.

    + +people-files.png + +

    Pode-se tratar estes arquivos como qualquer outro: pode ordenar de acordo com os atributos (até mesmo uma segunda ordem de ordenamento ao segurar a tecla SHIFT enquanto clica) e naturalmente excluir, duplicar ou renomear arquivos de Pessoa. Até a informação de contato pode ser editada diretamente: Clicando num atributo (ou ALT E) para editar funciona como renomear um arquivo. Uma vez no modo de edição, TAB e SHIFT TAB irá pular de coluna para coluna.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/poorman.html b/docs/userguide/pt_BR/applications/poorman.html new file mode 100644 index 0000000000..899673c26b --- /dev/null +++ b/docs/userguide/pt_BR/applications/poorman.html @@ -0,0 +1,89 @@ + + + + + + + + + Pobre Homem + + + + + + + + +
    +
    + +

    poorman-icon_64.pngPobre Homem

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/PoorMan
    Configurações:~/config/settings/PoorMan Settings
    +


    +

    Pobre Homem é um pequeno e agradável servidor web uqe é extremamente fácil de configurar. Naturalmente ele não oferece quaisquer recursos avançados como outros servidores mais parrudos, afinal é apenas um servidor web de um pobre homem.

    +

    Ao executar pela primeira vez, o Pobre Homem pergunta pela pasta que será disponibilizada na web. Se utilizar o botão Default, uma nova pasta /boot/home/public_html é criada. Como uma página inicial de um arquivo HTML é nomeada por padrão index.html, ela já estará presente lá.

    +

    Pobre Homem apresenta a si mesmo com um console simples que registra sua atividade. Então, há informações sobre o status se o servidor estiver em execução, qual pasta está sendo disponibilizada, e um contador de visitas. Definições são alteradas em Editar | Definições...: +

    +

    poorman.png

    +

    A janela de diálogo de definições é dividida em três guias:

    +

    Em Sítio selecione outra pasta para disponibilizar, informe outra página inicial e tenha a opçao de enviar uma lista de arquivos se a página inicial não estiver presente.
    +Registrar permite (des)ativar registro para o console ou opcionalmente para um arquivo de registro separado.
    +A guia Avançado detém a definição para o máximo de conexões simultâneas.

    +

    Os itens de menu do console são todas auto-explicativas. Com elas pode-se, por exemplo, salvar (partes de) uma saída do console, limpar o console ou arquivo de registro e iniciar/parar o servidor ou limpar o contador de visitas.

    + +
    Se deseja ver se o Pobre Home está trabalhando, escolha /boot/apps/BePDF/docs/ como pasta e index.html como página inicial. Então aponte seu navegador para o endereço 127.0.0.1, que é a sua máquina local.
    + +
    +
    + + + diff --git a/docs/userguide/pt_BR/applications/screenshot.html b/docs/userguide/pt_BR/applications/screenshot.html new file mode 100644 index 0000000000..e9196eda03 --- /dev/null +++ b/docs/userguide/pt_BR/applications/screenshot.html @@ -0,0 +1,118 @@ + + + + + + + + + Screenshot + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    screenshot-icon_64.pngScreenshot

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/Screenshot
    +/bin/screenshot
    Configurações:~/config/settings/screenshot
    +


    +

    Screenshots are taken by either starting the Screenshot application or by pressing the PRINT key,

    +

    screenshot.png

    +

    In the Screenshot panel you can toggle between taking the whole screen or just the active window and decide if the window border and mouse pointer should be included. You can also enter a delay before a screenshot is taken.

    +

    Below that you set the name, format and location for the screenshot that will be used when you click Save. Instead of saving the file to disk you can also decide to Copy to clipboard to be able to paste the shot directly into another application, or take a New screenshot.

    +

    All settings are remembered the next time you take a screenshot, enabling these convenient keyboard shortcuts:

    + + + + +
    PRINTTakes a screenshot with zero delay and launches the Screenshot panel.
    SHIFT PRINTTakes a screenshot silently (without opening the panel), while still respecting the last used settings.
    CTRL PRINTAlso takes a screenshot silently with the saved settings, but instead of saving it as a file, it's just copied to the clipboard.
    +

    +index +Taking a screenshot from Terminal

    +

    There's a special screenshot application to be used from Terminal or a script.
    +screenshot --help shows the familiar options as parameters:

    + +
    ~> screenshot --help
    +
    +screenshot [OPTIONS] [FILE]  Creates a bitmap of the current screen
    +
    +FILE is the optional output path / filename used in silent mode. An exisiting
    +file with the same name will be overwritten without warning. If FILE is not
    +given the screenshot will be saved to a file with the default filename in the
    +user's home directory.
    +
    +OPTIONS
    +  -m, --mouse-pointer   Include the mouse pointer
    +  -b, --border          Include the window border
    +  -w, --window          Capture the active window instead of the entire screen
    +  -d, --delay=seconds   Take screenshot after the specified delay [in seconds]
    +  -s, --silent          Saves the screenshot without showing the application
    +                        window
    +  -f, --format=image    Give the image format you like to save as
    +                        [bmp], [gif], [jpg], [png], [ppm], [tga], [tif]
    +  -c, --clipboard       Copies the screenshot to the system clipboard without
    +                        showing the application window
    +
    +Note: OPTION -b, --border takes only effect when used with -w, --window
    +
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/showimage.html b/docs/userguide/pt_BR/applications/showimage.html new file mode 100644 index 0000000000..79e573ed1b --- /dev/null +++ b/docs/userguide/pt_BR/applications/showimage.html @@ -0,0 +1,127 @@ + + + + + + + + + ShowImage + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    showimage-icon_64.pngShowImage

    + + + + +
    Deskbar:No entry, normally launched via +double-clicking a supported file.
    Localização:/boot/system/apps/ShowImage
    Configurações:~/config/settings/ShowImage_settings
    +


    +

    ShowImage allows you to view images in all formats that are supported through DataTranslators. New formats are automatically recognized when their translator is added to the system. This has been done for Haiku's vector icon files, WonderBrush images or when WebP images became available, for example.
    +ShowImage provides minimal editing features to crop, rotate and flip images and to save them in another format.

    +

    indexViewing

    +showimage-view.jpg +

    The View menu offers to start a Slide show of all images in a folder (or query result window) and set a Slide delay from 2 to 20 seconds.

    +

    Other commands apply to the currently displayed image (without changing the size of the window):
    +Original size shows the image with a 100% zoom factor.
    +Fit to window shrinks the image back into the window frame, e.g. after having zoomed into it or after resizing the window.
    +Zoom in and Zoom out move into and out of the image in 10% steps. Zooming is also done with the mouse wheel; to pan an image bigger than the window, simply left-click and drag your mouse around.

    +

    Two settings don't just apply to the currently displayed image and are remembered when browsing from one image to the next:
    +High quality zooming applies a very fast filter when zooming to reduce jagged lines and produce a smoother result.
    +Stretch to window will stretch smaller images to fill the current window frame.

    +

    Then there's a Full screen mode with an option to Show caption in full screen mode which overlays the file name at the bottom of the image.

    +

    Lastly, Show tool bar will show/hide the graphical controls:

    +showimage-toolbar.png +

    From left to right: Previous image, next image, start slide show (in full screen mode), selection mode, original size, fit to window, zoom in, zoom out.

    +

    Most of the more often used commands are also available from a right-click context menu on the image. Convenient when in full-screen mode.

    +

    indexNavegando

    +showimage-browse.jpg +

    After opening an image you can quickly browse through all the other images in its folder (or query result window) by pressing / or /. You can see the selection change accordingly in the Tracker window.

    +

    There is a quick way to open the folder of the current image and even navigate to its parent and subfolders. It works just like with drill-down navigating in Tracker by clicking in the info area in the status bar that shows size and format of the current image.

    +

    Looking at the Browse menu, shows another type of browsing: Some image formats, like TIFF, can contain several pages in one file. Commands like First page and Next page let you navigate those pages.

    +

    indexEditing

    +showimage-edit.jpg +

    The Image menu offers the few image manipulations necessary for an image viewer: rotating and flipping the image. Note however, that the actual image data won't be changed. Only an attribute is added to the file so it'll be shown rotated or flipped the next time you open it.

    +

    Use as backgroud... will open the Backgrounds preferences to set the current picture as image for your workspaces.

    +

    Cropping is another feature that's needed sometimes. To define the frame to cut to, you can switch to Selection mode from the Edit menu and drag out a box with your left mouse button. If you don't want to change modes first, you can create this box in "normal mode" by simply holding CTRL while left-click-dragging, which otherwise would just pan the image around.
    +Clear selection or ESC will remove the selection box.

    +

    The following chapter shows how to actually save the cropped area.

    +

    indexSaving and converting

    +

    To save or convert an image into any available format, you can invoke the normal Save as... item from the File menu, select the format and choose a file name.
    +Often quicker, especially when the Tracker window with the destination folder is already open, is using drag & drop.

    +showimage-dnd.jpg +

    This is also how the above mentioned cropping is finalized. Either select a frame as described above, or choose Edit | Select all for the whole image. Then drag & drop the selection onto the Desktop or any Tracker window to create a new image clipping in the same format of the original image.

    +

    To save in another file format, do the dragging with the right mouse button and choose a format from the context menu when dropping the image.

    +

    indexAtalhos de teclado

    +

    Aqui está uma lista dos atalhos mais úteis:

    + + + + + + + + + + +
    / Imagem anterior
    / Próxima imagem
    DELMover para a Lixeira
    +Mais zoom
    -Menos zoom
    0Tamanho original (zoom em 100%)
    1Ajustar à janela
    ALT ENTERAlternar para o modo de tela inteira (também via clique duplo)
    CTRLEnquanto pressionar CTRL, você poderá criar um quadro de seleção sem explicitamente alternar para o modo de seleção.
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/soundrecorder.html b/docs/userguide/pt_BR/applications/soundrecorder.html new file mode 100644 index 0000000000..8d0250b8f8 --- /dev/null +++ b/docs/userguide/pt_BR/applications/soundrecorder.html @@ -0,0 +1,79 @@ + + + + + + + + + Gravador de Som + + + + + + + + +
    +
    + +

    soundrecorder-icon_64.pngGravador de Som

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/SoundRecorder
    Configurações:~/config/settings/???
    +


    +

    Documentação ainda está faltando. Se deseja trabalhar nele, por favor anuncie na Lista de discussão de Documentação para evitar duplicação.

    + +
    +
    + + + + diff --git a/docs/userguide/pt_BR/applications/stylededit.html b/docs/userguide/pt_BR/applications/stylededit.html new file mode 100644 index 0000000000..b630ed7429 --- /dev/null +++ b/docs/userguide/pt_BR/applications/stylededit.html @@ -0,0 +1,96 @@ + + + + + + + + + StyledEdit + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    stylededit-icon_64.pngStyledEdit

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/StyledEdit
    Configurações:nenhuma
    +


    +

    StyledEdit is Haiku's simple text editor. Although it saves files in plain text format, additional attributes are written in order to have limited formatting capabilities when viewed with StyledEdit.

    +stylededit.png +

    If you're interested, this is what those additional attributes look like when examined in Terminal with listattr:

    +
    ~> listattr /boot/home/Desktop/test.txt
    +File: /boot/home/Desktop/test.txt
    +  Type         Size                 Name
    +-----------  ---------  -------------------------------
    +     Int-32          4  "be:encoding"
    +MIME String         11  "BEOS:TYPE"
    +     Int-32          4  "wrap"
    +     Int-32          4  "alignment"
    +   Raw Data       1048  "styles"
    +
    +1071 bytes total in attributes.
    +

    As you can see, all the formatting options from StyledEdit's menu are present: line wrapping (on/off) and alignment (left/center/right), each in one attribute. Styles (font, size, color) of each letter mangled into another.

    +
    Because these attributes are a file system feature of BFS, this means that not only other platforms just see a plain text file, it also follows, that the formatting will be lost when a file is stored on a non-BFS partition. The above attributes are simply stripped and what's left is the ordinary, plain text file.
    +

    In any case, it's a nice idea having the possibility of colored text in different fonts and sizes while still being a normal text file. A ReadMe.txt, for example, is therefore readable in a shell on any platform and still has a bit of style when viewed via double-click from Haiku.

    +

    Actually using StyledEdit is so simple, we'll skip explaining every mundane menu item. Just write down your text then select the words you'd like to format and apply font, size and color from the Font menu. Line wrapping and alignment from the Document menu only work on the whole file.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/terminal.html b/docs/userguide/pt_BR/applications/terminal.html new file mode 100644 index 0000000000..cc75f85710 --- /dev/null +++ b/docs/userguide/pt_BR/applications/terminal.html @@ -0,0 +1,146 @@ + + + + + + + + + Terminal + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    terminal-icon_64.pngTerminal

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/Terminal
    Configurações:~/config/settings/Terminal
    +~/.profile - acrescenta/substitui os defaults em /boot/common/etc/profile
    +~/.inputrc - acrescenta/substitui os defaults em /boot/common/etc/inputrc
    +


    +

    O Terminal é a interface do Haiku para o bash, o Bourne Again Shell.

    +

    Por favor tome como referência o tópico sobre Scripting para encontrar alguns links para tutoriais online sobre como trabalhar no shell e também faça uma leitura no tópico Aplicativos em linha de comando. Aqui, iremos nos concentar no aplicativo Terminal por si só.

    + +

    +index +Janelas e abas

    +

    You can open as many Terminals as needed, either each in it's own window by simply launching more Terminals or with ALT N from an already running Terminal. Or you use Terminal's tabbed view and open more tabs with ALT T.

    +terminal.png +
    +

    Double-clicking into the emtpy part of the tab bar opens a new tab; onto a tab opens a dialog to rename its title. There are several %-designated variables that are explained with a tooltip when you hover the mouse over the text field.
    +By default, %1d: %p, a tab shows the current directory and, separated by a :, the name of the currently running process (or -- if it's just bash running, probably idling). The screenshot above shows the first tab with a FTP session in the Desktop folder and a second tab idling at home.
    +Via Edit | Window title... the Terminal window's title can be edited in a similar way.

    +

    Right-clicking a tab shows a context menu to Close tab, Close other tabs or, like double-clicking, Edit tab title....

    +

    A Terminal window can be resized like any other window or you use the presets from the Settings | Window size menu. ALT ENTER toggles fullscreen mode.

    +

    Changed window size and text encoding are only kept choosing Settings | Save as default.

    + +

    index +Configurações

    +

    Settings | Settings... opens a panel to configure the standard settings of a Terminal.

    +terminal-settings.png +
    +

    It starts off with the "formulas" for naming tab and window titles. Again, tooltips show the available variables. Below that you set font type, font size and the different text and background colors. You can choose a pre-defined color schema like Black on white or White on black or create a Custom one using the color picker below.
    +Activate the checkbox to Confirm exit if active programs exist and you'll be warned when trying to close a Terminal window while an app is still being executed.
    +You can save different settings as separate profiles, which on double-click open an accordingly configured Terminal.
    +Pressing OK will save the current settings as default.

    + +

    +index +Keyboard shortcuts

    +

    You'll find a list of useful shortcuts in Shortcuts and key combinations.

    + +

    +index +Bash customization

    +

    Coming from Unix, there are countless possibilities to customize the bash itself. There are two files that are especially important to the user: .profile and .inputrc
    +Both files can be created in the home/ folder and add or override the system defaults that are defined in /boot/common/etc/.

    + +

    .profile

    +

    The .profile is loaded every time you open a new Terminal. It sets all kinds of aliases and variables that will affect bash's behavior and appearance. You'll find many online resources that will detail all possibilities.

    +

    The Haiku/BeOS Tip Server has quite a few tips to get you started, for example:

    + +

    There are more, have a look.

    + +

    .inputrc

    +

    The .inputrc deals with keybindings. Since Haiku provides useful defaults, you probably don't have to mess with these more involved settings. If you do have special needs here, consult one of the many online resources, e.g. The GNU Readline Library.

    + +

    +index +Hints for working with the Terminal

    +
    • Dragging a file or folder from a Tracker window into the Terminal will insert its path at the location of the cursor. Dragging with the right mouse button offers additional actions in a context menu:

      + + + + + + +
      Insert path Inserts the location of the file, same as drag&dropping with the left mouse button.
      Change directory Changes to the folder of the dragged file.
      Create link here Creates a link to the dragged file in the current working directory of the Terminal.
      Move here Moves the dragged file into the current working directory of the Terminal.
      Copy here Copies the dragged file into the current working directory of the Terminal.
    • +
    • You can open any file with its preferred application with the command open [filename]. This also works with the representation of the current (".") and parent ("..") folder which then open in a Tracker window. So, to open the current working directory, you type:

      +
      open .
      +
    + + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/textsearch.html b/docs/userguide/pt_BR/applications/textsearch.html new file mode 100644 index 0000000000..696f1c8741 --- /dev/null +++ b/docs/userguide/pt_BR/applications/textsearch.html @@ -0,0 +1,103 @@ + + + + + + + + + TextSearch + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    textsearch-icon_64.pngTextSearch

    + + + + +
    Deskbar:No entry, normally launched via Tracker Add-on
    Localização:/boot/system/apps/TextSearch
    Configurações:~/config/settings/TextSearch
    +


    +

    TextSearch procura por uma string em arquivos de texto. Tipicamente é invocado do menu de contexto Tracker's Add-on na seleção de arquivos ou pastas em que você deseja procurar.

    + +textsearch.png + +

    You enter a search string in the text box on top and hit RETURN or click Search to start. If Show lines is checked, the hits are automatically expanded to show the lines of the file containing the search string.

    + +

    Only a few words on some of the otherwise self-explaining menu items:

    + + + + + + + + + + + + + + + + + +

    File menu

    New windowALT N Opens a new window where you can enter another string and search through the same files/folders. +
    Set target...ALT FLets you choose a new set of files and folders to search through.

    Action menu

    Trim selectionALT T Removes all entries from the list that are not currently selected.
    Open selectionALT OOpens the currently selected files with their preferred application (same as a double-click). If it's a text editor supporting it (like Pe), you can jump to the exact line the search string was found.
    Open files in TrackerALT KOpens the location of the currently selected files in Tracker.
    Copy text to clipboardALT BCopies the current selection to the clipboard.

    Settings menu

    Skip folders starting with a dot This is useful when working in a "unixy" environment, where often administrative files are hidden inside ".folders/". Source versioning systems like SVN and CVS are examples of applications using this and are also widely used in Haiku.
    Escape search text TextSearch uses the command line tool grep. For it, special characters like '"*\$?! and spaces have to be escaped with a \. Deactivating this setting means you have to do this yourself, but in exchange grants you the power of regular expressions.
    Text files only TextSearch is currently only useful for finding strings in plain text files. Deactivating this setting will have it look through any kind of file anyway.

    History menu

    Contains recently used search strings.

    Encoding menu

    Lets you choose different character encodings if needed.
    +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/tv.html b/docs/userguide/pt_BR/applications/tv.html new file mode 100644 index 0000000000..a3c75a5619 --- /dev/null +++ b/docs/userguide/pt_BR/applications/tv.html @@ -0,0 +1,79 @@ + + + + + + + + + TV + + + + + + + + +
    +
    + +

    tv-icon_64.pngTV

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/TV
    Configurações:~/config/settings/???
    +


    +

    Documentação ainda está faltando. Se deseja trabalhar nele, por favor anuncie na Lista de discussão de Documentação para evitar duplicação.

    + +
    +
    + + + + diff --git a/docs/userguide/pt_BR/applications/vision.html b/docs/userguide/pt_BR/applications/vision.html new file mode 100644 index 0000000000..83f8d827c1 --- /dev/null +++ b/docs/userguide/pt_BR/applications/vision.html @@ -0,0 +1,82 @@ + + + + + + + + + Vision + + + + + + + + +
    +
    + +

    vision-icon_64.pngVision

    + + + + +
    Deskbar:Aplicativos
    Localização:/boot/apps/Vision{versão}/Vision
    Configurações:~/config/settings/Vision/*
    +


    +

    Vision é um cliente de IRC originalmente desenvolvido para o BeOS. Documentação e um rastreador de erros estão disponíveis no sítio do Vision.

    +
    Você pode conseguir ajuda de outros usuários do Haiku e desenvolvedores nos canais Haiku em vários idiomas.
    +O mais frequentado está em língua inglesa: #haiku em irc.freenode.org.
    + +
    +
    + + + + diff --git a/docs/userguide/pt_BR/applications/webpositive.html b/docs/userguide/pt_BR/applications/webpositive.html new file mode 100644 index 0000000000..ac812db000 --- /dev/null +++ b/docs/userguide/pt_BR/applications/webpositive.html @@ -0,0 +1,138 @@ + + + + + + + + + WebPositive + + + + + + + + +
    +
    +

    webpositive-icon_64.pngWebPositive

    + + + + + +
    Deskbar:Aplicativos
    Localização:/boot/system/apps/WebPositive
    Configurações:~/config/settings/WebPositive/ - Arquivos de configuração, cookies, cache e histórico de navegação
    ~/config/settings/WebPositive/Bookmarks - Todos os marcadores como arquivos individuais
    +


    +

    WebPositive, ou simplesmente Web+, é o navegador web nativo do Haiku. Uma parte do nome é uma referência ao navegador simples do BeOS, NetPositive, a outra parte refere-se a sua base moderna: o WebKit. Esta biblioteca de renderização HTML de código aberto é o coração de outros principais navegadores, como o Safari do Mac OS X e o Google Chrome. Pelo uso do WebKit, que está sempre em evolução, Web+ será capaz de se manter atualizado com as novas tecnologias da web.

    +webpositive.png +

    A interface do WebPositive é muito avançado:embaixo da barra de menus existe outra barra com botões de navegação para o sítio anterior e para o próximo no seu histórico de navegação, parar o carregamento de uma página e (opcionalmente) um botão para voltar à sua página inicial.
    +Em seguida vem o campo de localização para inserir o endereço do sítio.
    +Abaixo desta barra de navegação aparecem as páginas web. Pode-se abrir muitas páginas paralelamente carregando-as dentro de suas próprias guias.
    +Na base da janela está a barra de status, mostrando o endereço do sítio que está sendo carregado ou do vínculo onde o cursor do mouse está indicando. Enquanto uma página está sendo carregada, uma barra de progresso aparece à direita.

    +

    indexConfigurações

    +

    Do menu Janela podemos abrir uma caixa de diálogo Configurações para configurar alguns itens básicos do WebPositive.

    +webpositive-settings.png +

    A primeira aba trata das configurações gerais: Que arquivo ou endereço é utilizado como Página inicial, qual é usado como Página de pesquisa, qual Pasta de download é usada para as coisas que baixar da rede.
    +Dois menus pop-up permitem decidir que página carregar - se for o caso - quando abrir uma nova janela ou guia.
    +Através das caixas de verificação seguintes podemos ocultar a barra da guia quando existe apenas uma página aberta. A interface do WebPositive pode ser configurada para ocultar-se automaticamente em mode de tela cheia e o cursor do mouse pode ser oculto automaticamente sempre que não mover-se no momento.
    +Finalmente, pode-se decidir incluir um botão "Página inicial" na barra de navegação e definir o número de dias a serem gravados pelo navegador no histórico.

    +

    Na segunda aba pode-se escolher as fontes usadas por padrão, serifada, não-serifada ou monoespaçada, e definir seus tamanhos.

    +

    A última aba é usada para configurar um servidor proxy.

    +

    indexNavegando

    +

    Se já usou um navegador antes, WebPositive não deverá apresentar muitas surpresas. Ao invés de passarmos por todos os itens do menu e características, vamos dar uma olhada em alguns pontos.

    +
      +
    • webpositive-tabbar.png +

      Novas abas são criadas com o botão + à direita da barra da guia ou, se ainda existir bastante espaço, com um duplo-clique em uma área vazia da barra. Se existirem mais guias abertas do que cabe na largura da barra, os botões de rolagem < > tornam-se ativos, permitindo rolar a barra da guia para a esquerda e para a direita. O botão na extremidade direita abriga um menu pop-up com todas as guias abertas para uma navegação ainda mais rápida.

    • +
    • Clicar em um vínculo com o botão do meio do mouse abre a página em uma nova guia, em segundo plano.

    • +
    • A partir do menu Visualizar pode-se Aumentar o zoom and Diminuir o Zoom de uma página. Existe também a opção de Zoom apenas no texto, deixando todas as imagens em seu tamanho original.

    • +
    • Se mudar para modo de tela cheia e houver ativado a definição de ocultar a interface, ela irá desaparecer após um segundo. Para trazê-la temporariamente de volta, simplesmente mova o cursor do mouse para o topo da tela.

    • +
    • webpositive-locator.png +

      Enquanto digita no campo de texto do localizador, o navegador compara a sequência digitada aos sítios já visitados e lista-os abaixo do campo de texto. Também pode continuar digitando para reduzir a lista de sítios possíveis ou escolher uma entrada com as setas ou . ENTER irá carregar a página. Pode também usar o botão na extrimidade direita que também serve para recarregar a página.
      +Sequências não reconhecidas como endereços válidos serão pesquisados pelo Google, então o campo do localizador funciona como um atalho rápido para pesquisas na web.

    • +
    • Clicar com o botão direito do mouse abre um menu de contexto o qual, dependendo do objeto clicado, permite abrir o link em uma nova janela ou nova guia, baixar o objetco, etc.

    • +
    • Editar | Procurar mostra uma barra de localização na base do navegador para iniciar uma pesquisa na própria página.

    • +
    +
    Depois de algum tempo, pode-se experimentar páginas web sendo carregadas cada vez mais lentamente. Isso não é uma falha no verdadeiro sentido, é mais um efeito do manuseamento deficiente de cookies. De qualquer forma, até que seja corrigido, será necessária uma intervenção manual: Dê uma olhada em ~/config/settings/WebPositive/Cookies.curl. Este arquivo armazena cookies de páginas web e cresce lentamente enqaunto surfa na web. Uma vez que possui algumas dezenas de quilobytes de tamanho, começa a desacelerar a navegação. Apenas exclua o arquivo nesse ponto para começar com um novo e limpo.
    +

    indexFavoritos

    +

    Os marcadores do WebPositive são gerenciados como arquivos e pastas em ~/config/settings/WebPositive/Bookmarks/. Adicionar um marcador irá criar um novo arquivo lá. Abra rapidamente uma pasta com Gerenciar Marcadores....

    +webpositive-bookmarks +

    Pode-se mudar o endereço, nome, título e inserir palavras-chave da mesma forma que com qualquer arquivo com atributos. Certifique-se de ter todas as suas colunas exibidas via menu Atributos do Rastreador (Tracker), então selecione um arquivo, pressione ALT E e comece a edição do atributo; altere colunas de atributos com TAB.
    Podemos classificar marcadores dentro de pastas diferentes que nós mesmos criarmos.

    +

    Usando o Rastreador (Tracker) para gerenciar e navegar por marcadores pode-se usufruir de suas características únicas para rapidamente encontrar o que estiver procurando.
    +Ativando Filtro de autocompletar nas Preferências do Rastreador (Tracker), sua lista de marcadores é reduzida para encontrar aquelas que correspondam à sua pesquisa. As teclas ou movem a seleção e pressionando ENTER abre o sítio. Certifique-se de exibir todas as colunas de atributos para aplicar o filtro a nome, título, endereço e palavras-chave.

    +

    Para isso funcionar, todos os marcadores devem ser mantidos na pasta ~/config/settings/WebPositive/Bookmarks/ e apenas cópias devem ser ordenadas dentro de subpastas personalizadas para uso no menu Marcadores do WebPositive (se em todos). Além disso, na verdade preencher os atributos de palavras-chave ajuda...

    +

    indexDownloads

    +

    Janela | Downloads abre uma janela listando todas os downloads passados e em curso:

    +webpositive-downloads.png +

    Arquivos sendo baixados no momento são mostrados com uma barra de progresso crescente e, semelhantemente a copiar arquivos no Rastreador (Tracker), informações sobre a velocidade de download, tamanho do arquivos e tempo estimando de término. Botões à direita permitem Cancelar e Reiniciar um download, ou Abrir o arquivo, ou Remover sua entrada da lista. Os botões Remover faltando e Remover terminado na parte de baixo da janela executam o anunciado a todas as entradas da lista. "Faltando" são arquivos que foram deletados durante o download.

    +

    Mover para o Lixo um arquivo que está sendo baixado no momento irá parar o download. Isso é notado, pelo fato do ícone tornar-se "fantasma".
    +Geralmente, WebPositive é muito tolerante quando se trata de gerir arquivos com o Rastreador (Tracker). Arquivos podem ser renomeados ou movidos mesmo enquanto são baixados e mesmo após o término do download, estas mudanças refletem-se na janela de Downloads.

    +

    Já se perguntou de que sítio baixou um pacote em particular, uma imagem ou qualquer outro arquivo? Pode-se rastrear a origem abrindo o arquivo com o Examinador de Disco e dando uma olhada em seu META:url atributo.

    +

    Quer ter um endereço web mostrado permanentemente em sua pasta de Downloads? Apenas copie um marcador para dentro dele, mantenha a coluna de atributo do marcador exposta e remova o marcador novamente.

    +

    indexAtalhos de teclado

    +

    Aqui estão alguns atalhos de teclado úteis:

    + + + + + + + + + + + + + + +
    ALT TAbre uma nova aba.
    ALT W Fecha a aba atual.
    ALT N Abre uma nova janela.
    SHIFT ALT W Fecha a janela atual.
    ALT ENTER Alterna para o modo de tela cheia.
    ALT R or F5 Atualiza a página atual.
    ALT H Abre a página inicial.
    ALT D Exibe/oculta a janela Downloads.
    ALT F Exibe a barra de localização para pesquisas na página (ocultar com ESC).
    ALT B Adiciona esta página aos favoritos.
    ALT M Gerenciar os favoritos, abrindo a pasta Favoritos.
    ALT Página anterior no histórico.
    ALT Próxima página no histórico.
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/applications/wonderbrush.html b/docs/userguide/pt_BR/applications/wonderbrush.html new file mode 100644 index 0000000000..339ec07073 --- /dev/null +++ b/docs/userguide/pt_BR/applications/wonderbrush.html @@ -0,0 +1,79 @@ + + + + + + + + + WonderBrush + + + + + + + + +
    +
    + +

    wonderbrush-icon_64.pngWonderBrush

    + + + + + +
    Deskbar:Aplicativos
    Localização:/boot/apps/WonderBrush/WonderBrush
    Documentação:/boot/apps/WonderBrush/Documentation {pt_BR}
    Configurações:~/config/settings/WonderBrush
    +


    +

    O WonderBrush é um editor de gráficos bitmap e vetoriais. Encontre maiores informações e oficinas no site da YellowBites e na documentação local.

    + +
    +
    + + + + diff --git a/docs/userguide/pt_BR/attributes.html b/docs/userguide/pt_BR/attributes.html new file mode 100644 index 0000000000..f0d9086825 --- /dev/null +++ b/docs/userguide/pt_BR/attributes.html @@ -0,0 +1,174 @@ + + + + + + + + + Atributos + + + + + + + + +
    +
    + +

    Atributos

    + +

    Atributos são campos de dados que pertencem a um arquivo mas não fazem parte daquele arquivo, ou seja, eles não são computados dentro do tamanho do arquivo e podem ser copiados ou mudados sem tocar no arquivo em si. O sistema usa estes atributos para armazenar, por exemplo, tamanho do arquivo, tipo de arquivo ou data da última modificação. Isto é similar a outros sistemas operacionais e seus sistemas de arquivos.

    +

    O que é diferente é que pode-se adicionar qualquer tipo de atributo a qualquer arquivo e exibi-lo ou torná-lo editável em uma janela do Rastreador. Apenas defina o tipo de atributo que deseja adicionar a um tipo de arquivo (por exemplo, sequência, inteiro ou hora) e dar a ele um nome e descrição.

    +

    O arquivo em si nem sequer precisa de qualquer conteúdo absolutamente. Dê uma olhada nestes arquivos do Pessoas, por exemplo:

    +people.png +
    +

    Como se pode ver, estes são todos arquivos de tamanho zero com atributos anexados, o atributo de correio eletrônico de "John Nox" sendo editado diretamente no Rastreador.

    +

    Se indexar estes atributos, como os arquivos do Pessoas, Correio Eletrônico ou de áudio o são por padrão, eles serão também pesquisáveis com o sistema de consulta rápida do Haiku.

    + +

    +index +Atributos no Rastreador

    +

    Atributos são exibidos de maneira bastante semelhante a uma base de dados ou planilha. Usando o Rastreador pode-se escolher quais atributos exibir (colunas) e classificar listas de arquivos (linhas) adequadamente.

    +

    Para fazer isto, abra uma janela do Rastreador, clique no menu Atributos e selecione os atributos que deseja exibir. Alternativamente, simplesmente clique com o botão direito do mouse no título de uma coluna e marque os itens no menu de contexto. Pode-se rearranjar as colunas por um simples arrastar e soltar do título da coluna. Mover uma coluna para fora de uma janela é uma maneira rápida para se livrar de colunas desnecessárias.

    +

    Clique duas vezes na linha entre dois atributos no título para automaticamente redimensionar uma coluna à sua largura otimizada.

    +

    Clique no título de uma coluna para alternar a ordem de classificação de ascendente para descendente. Pode-se estabelecer uma ordem de classificação secundária ao pressionar a tecla SHIFT enquanto clica no título de uma coluna. Pode-se classificar seus arquivos do Pessoas por companhia e dentro daquela ordem classificar por nome do contato, por exemplo. Veja a imagem acima como um exemplo. A ordem de classificação secundária é marcada por um leve indicador colorido ao lado do título.

    +

    Editar estes atributos é tão simples como renomear um arquivo: ou clique em uma entrada ou pressione ALT E e mova entre os atributos com TAB e SHIFT TAB. ESC sai do modo de edição sem aplicar as mudanças.

    + +

    +index +Atributos no Terminal

    +

    Se preferir utilizar a linha de comando ou planeja trabalhar com muitos arquivos usando scripting, existem vários comandos para controlar atributos a partir do Terminal.

    +

    +index +listattr

    +

    listattr lista os atributos do arquivo, mas não mostra o conteúdo dos atributos.

    +
    uso: listattr 'nome do arquivo' ['nome do arquivo' ...]
    +

    Do nosso exemplo de tela acima:

    +
     ~/people ->listattr Clara\ Botters
    +File: Clara Botters
    +   Type         Size                 Name
    +-----------  ---------  -------------------------------
    +MIME String         21  "BEOS:TYPE"
    +        Text         14  "META:name"
    +        Text          6  "META:nickname"
    +        Text          1  "META:company"
    +
    +        Text         18  "META:address"
    +        Text          8  "META:city"
    +        Text          1  "META:state"
    +        Text          1  "META:zip"
    +        Text          1  "META:country"
    +
    +        Text          1  "META:hphone"
    +        Text         13  "META:wphone"
    +        Text          1  "META:fax"
    +        Text         19  "META:email"
    +        Text          1  "META:url"
    +
    +        Text          5  "META:group"
    +    Raw Data         20  "_trk/pinfo_le"
    + 
    +131 bytes total in attributes.
    +

    Ao lado de todos os atributos "META:*" que retem a informação do contato, existem dois atributos que são gerenciados pelo sistema:

    +
      +
    • BEOS:TYPE retem o tipo de arquivo como uma sequência MIME, aqui "application/x-person". Ele determina o ícone padrão e o aplicativo que abre o arquivo quando, por exemplo, damos um duplo clique nele.

    • +
    • "_trk/pinfo_le" é o atributo com o qual o Rastreador mantem o controle da posição do ícone de um arquivo.

    +
    Observe a barra invertida após "Clara". No Terminal é preciso realizar o "escape" de caracteres especiais como '"*\$?!. O espaço entre "Clara" e "Botters" é também um deles. Portanto a barra invertida está na verdade na frente de um caractere de espaço, e não após "Clara".
    + +

    +index +catattr

    +

    catattr exibe o conteúdo de um atributo específico de um arquivo.

    +
    uso: catattr [--raw|-r] nome_do_atributo arquivo1 [arquivo2...]
    +

    Novamente nosso exemplo:

    +
     ~/people ->catattr META:city Clara\ Botters
    +Clara Botters : string : Whelton
    + +

    +index +addattr

    +

    addattr adiciona um atributo a um arquivo e/ou preenche-o com um valor.

    +
    uso: addattr [-t type] valor do atributo arquivo1 [arquivo2...]
    +    ou: addattr [-f valor-de-um-arquivo] [-t tipo] atributo arquivo1 [arquivo2...]
    + 
    +         O tipo é um destes:
    +                 string, mime, int, llong, float, double, bool, icon, raw
    +                 ou um valor numérico (por exemplo, 0x1234, 42, 'ABCD', ...)
    +         O padrão é "string"
    +

    Então, digamos que a querida Clara conseguiu um emprego coma multinacional Barkelbaer Inc., preencha o inicialmente vazio atributo "Companhia" com aqueles dados (os quais são do tipo "string" (sequência)):

    +
     ~/people ->addattr -t string META:company Barkelbaer\ Inc. Clara\ Botters
    + +

    +index +rmattr

    +

    rmattr remove completamente um atributo de um arquivo.

    + +
    uso: rmattr [-p] atrib nomedoarquivo1 [nomedoarquivo2...]
    +         'atrib' é o nome de um atributo do arquivo
    +         Se '-p' é especificado, 'atrib' é considerado como um padrão.
    +

    Embora, em todo seu aspecto prático, seria suficiente apenas não preencher o atributo "Fax", pode-se removê-lo completamente do arquivo de Clara digitando:

    +
     ~/people ->rmattr META:fax Clara\ Botters
    + +

    +index +copyattr

    +

    copyattr copia atributos de um ou mais arquivos para outro(s). Por padrão, o conteúdo real do arquivo não é copiado.

    +
    Uso: copyattr <opções> <fonte> [ ... ] <destino>
    + +

    Se desejar copiar os atributos mais os dados do arquivo em si, pode-se adicionar a opção "-d" ou "--data".

    + +


    +

    Mais informações sobre estes comandos e suas opções podem ser encontradas digitando o nome do comando seguido de "-h" ou "--help".

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/bash-scripting.html b/docs/userguide/pt_BR/bash-scripting.html new file mode 100644 index 0000000000..ecba610a0e --- /dev/null +++ b/docs/userguide/pt_BR/bash-scripting.html @@ -0,0 +1,113 @@ + + + + + + + + + Bash e Scripting + + + + + + + + +
    +
    + +

    Bash e Scripting

    + +

    "Scripting" é a técnica de encadear comandos formando um procedimento automatizado e salvar isso em arquivos texto, chamados "scripts". Sempre que você executa um script os comandos são processados um após o outro, como se você os digitasse num Terminal.
    +Scripts podem executar simples comandos numa ordem específica, ou resultarem em sofisticadas peças de código que resolvem tarefas complexas.

    + +

    +index +O Bash

    +

    Como os scripts naturalmente dependem bastante do shell em que são interpretados, você deve primeiro se familiarizar com o BASH, que é o utilizado pelo Haiku. Há muitas fontes de informação online já que este é um shell usado amplamente. Um belo documento é de Johan Jansson Introduction to bash - a tutorial for bash under BeOS.

    + +

    +index +A Bíblia do Scripting

    +

    Depois de ter aprendido umas noções básicas sobre como trabalhar no shell, é hora de lentamente adentrar no mundo do scripting. Novamente, você encontrará muitos tutoriais e materiais de referência online como também em livrarias. Uma introdução muito boa que foi praticamente feita sob medida para o Haiku está disponível online, é o capítulo sobre scripting (PDF, 900kb) do livro BeOS Bible de Scot Hacker.

    + +

    +indexScripts no Haiku

    +

    No Haiku, o sistema obviamente também faz uso de scripting. O Boot e o desligamento são típicos procedimentos que fazem uso de scripting. Essas sequências definidas podem ser ampliadas pelo usuário com determinados scritps.
    +Se eles já não existirem, você terá que criar os arquivos necessários por si. Senão, simplesmente adicione seus comandos nas posições do procedimento às quais desejar que eles sejam executados.

    + +

    +index +O UserBootscript

    +

    /boot/home/config/boot/UserBootscript será executado depois do sistema ter terminado seu processo de boot. Por exemplo, você poderá lançar uma série de programas que seriam então automaticamente iniciados a cada novo boot do sistema:

    +
    # Iniciar o LaunchBox
    +/boot/system/apps/LaunchBox &
    +
    +# Iniciar o Applet Workspaces
    +/boot/system/apps/Workspaces &
    +

    Lembre-se de terminar o comando com um "&" para iniciá-lo como um processo em segundo plano (background process), ou o script ficará suspenso até este comando ter sido concluído (neste caso: o aplicativo aberto ser fechado novamente).

    + +

    Uma alternativa simples à anterior para iniciar aplicativos durante o boot é adicionar links para os mesmos no diretório /boot/home/config/boot/launch . Isso pode ser feito simplesmente clicando-se com botão direito no aplicativo que você deseja que seja iniciado automaticamente, indo até Criar Link e depois navegando até o diretório mencionado.

    + +

    +index +O UserShutdownScript

    +

    /boot/home/config/boot/UserShutdownScript será executado como a primeira etapa no procedimento de desligamento. Se o script retornar um status de saída diferente de zero, o desligamento será abortado.

    + +

    +index +O UserShutdownFinishScript

    +

    /boot/home/config/boot/UserShutdownFinishScript será executado como a última etapa do procedimento de desligamento. Note que a maior parte do sistema já estará finalizada no momento da execução deste script.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/bootloader.html b/docs/userguide/pt_BR/bootloader.html new file mode 100644 index 0000000000..fe5517da89 --- /dev/null +++ b/docs/userguide/pt_BR/bootloader.html @@ -0,0 +1,120 @@ + + + + + + + + + Inicializador do Sistema + + + + + + + + +
    +
    + +

    Inicializador do Sistema

    + +

    O Inicializador do Sistema Haiku pode ser útil quando ocorrer algum problema de hardware ou deseja escolher qual instalação do Haiku vai inicializar, caso tenha mais de uma (pode ser através de CD ou de um pendrive USB).
    +Ele também é útil para remover um componente de software que, após ter sido instalado, impeça a inicialização do sistema, A opção Desabilitar adicionais de usuário, mencionada abaixo, irá iniciar o Haiku sem carregar componentes instalados pelo usuário, por exemplo um driver.

    +

    Para entrar nas opções do Inicializador do Sistema, aperte e mantenha pressionada a tecla SHIFT antes do início do processo de inicialização. Se houver um gerenciador de inicialização instalado, você pode começar segurando SHIFT antes de chamar a entrada de inicialização para o Haiku. Se o Haiku é o único sistema operacional instalado na máquina, você pode iniciar segurando a tecla enquanto ainda vê as mensagens de inicialização do BIOS.

    +


    +

    Uma vez lá, são oferecidos quatro menus:

    + + + + + +
    Selecionar volume de inicialização Escolha qual instalação do Haiku a iniciar.
    Selecionar opções de modo seguro
    +
     Existem muitas opções a tentar no caso de problemas com o hardware. Quando deslocando a barra de seleção para uma opção, uma explicação curta aparece na base da tela. +

    - Modo seguro
    +- Desabilitar adicionais de usuário
    +- Desabilitar IDE DMA
    +- Usar modo de vídeo livre de falhas
    +- Desabilltar IO-APIC
    +- Desabilitar LOCAL APIC
    +- Não chamar a BIOS
    +- Desabilitar APM
    +- Desabilitar ACPI +

    Selecionar opções de depuração
    +
    Aqui encontram-se diversas opções que ajudam a depurar ou obter detalhes para um relatório de erros. Novamente, uma explanação curta para cada opção é mostrada na base da tela. +

    - Habilitar saída serial de depuração
    +- Habilitar saída de depuração na tela
    +- Habilitar relatório de sistema da depuração +

    +

    Se o "relatório de sistema da depuração" é habilitado, uma reinicialização a quente após um erro mostra estas opções adicionais:

    +

    - Mostrar relatório de sistema de uma sessão prévia
    +- Salvar relatório de sistema de uma sessão prévia +

    Selecionar modo de vídeo livre de falhas Se tiver ativado a opção Usar modo de vídeo livre de falhas, poderá definir resolução e profundidade de cor.
    +


    +

    Após ativar uma ou mais opções, retorne ao menu principal e continue a inicialização, que apresentará esta tela:

    +boot-screen.png + +

    Se tudo estiver OK, um símbolo após o outro rapidamente se acenderão.
    +Os diferentes símbolos grosseiramente correspondem aos seguintes estágios de inicialização:

    + + + + + + + + +
    Átomo Inicializando módulos.
    Disco + lupa Criando rootfs (/) e montando devfs (/dev).
    Placa de expansão Inicializando gerenciador de dispositivos.
    Disco de inicialização Montando disco de inicialização.
    Chip Carregando módulos específicos da CPU.
    Pasta Inicilização final de subsistemas.
    Foguete Script de inicialização carregando o sistema.
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/contents.html b/docs/userguide/pt_BR/contents.html new file mode 100644 index 0000000000..1ddf3a1c83 --- /dev/null +++ b/docs/userguide/pt_BR/contents.html @@ -0,0 +1,166 @@ + + + + + + + + + Guia do Usuário Haiku - Conteúdo + + + + + + + + +
    +
    + +

    Bem vindo ao Guia do Usuário Haiku

    + +

    Abaixo você encontrará documentação sobre os mais importantes aspectos do Haiku. Naturalmente, completar e estender a documentação é um processo continuado (veja a versão online para atualizar páginas e traduções). Se encontrar erros, desejar sugerir tópicos ou até mesmo contribuir, por favor entre em contato conosco através da lista de correio da documentação. Se estiver interessado em ajudar com as traduções, você encontrará informação relevante sobre o assunto na wiki i18n do guia do usuário.

    +


    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Carregador de InicializaçãoDefinir opções seguras de inicialização para resolver problemas de configuração.
    Disposição do sistema de arquivosEntenda a hierarquia do sistema de arquivos e familiarize-se com a localização de arquivos e pastas importantes.
    Interface Gráfica de Usuário (GUI) do HaikuAprenda sobre os elementos básicos da interface gráfica do usuário.
    Espaços de TrabalhoUse ambientes de trabalho virtuais para ter tudo organizado e aumentar a produtividade.
    TwitcherAlterne entre aplicações em execução.
    Team MonitorTermine aplicações ou componentes de sistema que não estão mais respondendo.
    Rastreador (Tracker)Aprenda tudo sobre navegar, trabalhar com arquivos e pastas e como configurar o gerenciador de arquivos do Haiku.
    Atalhos e combinações de teclasOs atalhos mais comuns para acelerar seu fluxo de trabalho.
    DeskbarUse e configure a versão do Haiku para o menu "Iniciar" e a barra de tarefas.
    Tipos de Arquivos (Filetypes)Defina aplicações padrão, mude os tipos de arquivos e crie o seu próprio.
    AtributosUma das principais funcionalidades do Haiku permite gerenciar e adicionar quaisquer tipos de dados a qualquer arquivo.
    IndexaçãoUse a indexação para permitir a pesquisa por atributos.
    ConsultasUse as consultas super rápidas do Haiku para rapidamente encontrar o que está procurando.
    Oficina: Tipos de Arquivos, Atributos, Indexação e ConsultasAprenda a usar algumas das funcionalidades chave do Haiku organizando seus DVDs.
    Oficina: Gerenciando o Correio EletrônicoAprenda a usar o sistema de correio do Haiku com status e consultas personalizadas.
    Oficina: Rede sem fioConfigure sua rede sem fio, aberta ou encriptada.
    AplicativosAprenda como (des)instalar aplicativos em geral e a trabalhar com aqueles que já vêm com o Haiku.
    Miniaplicativos da Área de TrabalhoFerramentas simples para instalar em sua Área de Trabalho e no Deskbar.
    PreferênciasConfigure e aprimore seu sistema.
    Bash e ScriptingAprenda alguns scripts interessantes usados pelo sistema e recursos online para trabalhar com shell e scripting.
    + +
    +
    + + + diff --git a/docs/userguide/pt_BR/deskbar.html b/docs/userguide/pt_BR/deskbar.html new file mode 100644 index 0000000000..98a9f98e7c --- /dev/null +++ b/docs/userguide/pt_BR/deskbar.html @@ -0,0 +1,146 @@ + + + + + + + + + Deskbar + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + + + + +
    Índice
    + The Deskbar Menu
    + The Tray
    + The list of running programs +
    + +

    Deskbar

    + +

    The Deskbar is the little panel that by default is located in the upper right corner of the screen. It's Haiku's version of Windows' taskbar with its Start button. It contains the Deskbar menu from where you can start applications and preferences, a tray with a clock and other tools below that and a list of currently running programs at the bottom.

    +positions +

    You can move the Deskbar to any corner or as a bar along the upper or lower border of the screen by gripping the knobbly area on one side of the tray and drag&drop it into the new position. You can also fold it into a more compact layout by drag&dropping the knobbly area onto the Deskbar menu.

    + +

    +index +The Deskbar Menu

    +

    A menu opens when you click on the Deskbar's top:

    +deskbar.png +
      +
    • About this system... - Shows some basic information of the system, licenses and the credits of the Haiku project.

    • + +
    • Find... - Opens the Query dialog.

    • +
    • Show replicants - Shows/hides the little Replicant widget you use to drag it around, remove or access its context menu.

    • +
    • Mount - Offers the same options as when invoked by right-clicking the Desktop (see Mounting Volumes).

    • +
    • Deskbar preferences... - Opens a panel to configure the Deskbar (see below).

    • +
    • Shutdown - Offers options to either Restart system or Power off.

    • +
    • Recent documents, folders, applications - List of the last recently opened documents, folders and applications (see Deskbar preferences below).

    • +
    • Applications, Demos, Deskbar applets, Preferences - List of installed applications, demos, applets and preferences.
      You can add links to other programs (or any folder, document, query etc.) by putting them into ~/config/be.

    • +
    + +

    +indexDeskbar Preferences

    +configure.png +
      +
    • Menu
      +Here you can set the number of recent documents, folders and applications that are shown in their menu in the Deskbar, or if you want to see them at all.
      +The button Edit menu... opens the folder /boot/home/config/be/. In it you'll find the files and folders that appear in the Deskbar, by default these are Applications, Demos, Deskbar applets, and Preferences.
      +You can delete or add entries like links to applications, documents or even queries by simply copying/deleting them to/from this folder.

      +

      It's even easier to simply drag a file, folder or saved query and drop it where you want it into the Deskbar.

    • +
    • Window

      + + + + +
      Always on top The Deskbar always stays above all other windows.
      Auto-raise The Deskbar pops to the front if the mouse pointer touches it.
      Auto-hide The Deskbar is reduced to only a few pixels and only pops up if the mouse pointer touches them.
    • +
    • Applications

      + + + + + + + +
      Sort running applications Sorts the list of running programs alphabetically.
      Tracker always first Even if you sort alphabetically, the Tracker entry always stays first in the list.
      Show application expander Provides a small widget to show/hide all windows of a program directly under its entry in the Deskbar.
      Expand new applications Newly launched programs have their windows automatically expanded under their entry in the Deskbar.
      Hide application names Removes the text labels of running applications.
      Icon size Adjusts the icon size of running applications.
    • +
    • Clock

      + + + +
      Show seconds Adds the display of seconds to the clock.
      Show day of week Adds the abbreviation of the weekday to the clock.
    • +
    + +

    +index +The Tray

    +calendar.png +

    Among other things, the tray is housing the clock. Hover the mouse over it to display the date in a tooltip. Left-click it to show a calendar. Right-click it to hide/show the clock or launch the Time preferences to set it.

    +

    Any program can install an icon in the tray to provide an interface to the user. The email system, for instance, shows a different symbol when there's unread mail and offers a context menu to e.g. create or check for new mail. ProcessController is another example that uses its icon in the tray to provide information (CPU/memory usage) and to offer a context menu.

    + +

    +index +The list of running programs

    +list-of-apps.png +

    You can change to a specific running application by clicking on its entry in the Deskbar and choosing (one of) its windows, from the submenu. By right-clicking you can minimize or close a window or the entire application.

    +

    If you activated Expanders in the Deskbar settings, you can expand/collapse the list of windows directly under an application's entry.

    +

    In front of every application's windows is a symbol providing info on its state. A bright symbol means a window is visible, a dark one that it's minimized. Three lines in front of a symbol shows that it's not on the current workspace.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/desktop-applets.html b/docs/userguide/pt_BR/desktop-applets.html new file mode 100644 index 0000000000..89891cf989 --- /dev/null +++ b/docs/userguide/pt_BR/desktop-applets.html @@ -0,0 +1,87 @@ + + + + + + + + + Miniaplicativos da Área de Trabalho + + + + + + + + +
    +
    + +

    Miniaplicativos da Área de Trabalho

    + +

    O Haiku oferece umas poucas ferramentas úteis que podem ser instaladas na Área de Trabalho ou no Deskbar por meio de seus Replicantes.

    + + + + + + + + + + + +
    iconLaunchBox Atalhos para seus aplicativos favoritos.
    iconStatus de Rede Sua conexão está ativa?
    iconStatus de Energia Mostra o estado de carga da bateria do seu notebook.
    iconControlador de Processos Monitora e controla todos os aplicativos e serviços em execução.
    iconEspaços de Trabalho Uma versão em miniatura de todos os espaços de trabalho.
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/desktop-applets/launchbox.html b/docs/userguide/pt_BR/desktop-applets/launchbox.html new file mode 100644 index 0000000000..aa88c9a547 --- /dev/null +++ b/docs/userguide/pt_BR/desktop-applets/launchbox.html @@ -0,0 +1,106 @@ + + + + + + + + + LaunchBox + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    launchbox-icon_64.pngLaunchBox

    + + + + +
    Deskbar:Miniaplicativos da área de trabalho
    Localização:/boot/system/apps/LaunchBox
    Configurações:~/config/settings/LaunchBox/*
    +

    One or more LaunchBox applets can be started to organize shortcuts to your favorite applications or documents. You decide if each is shown on all or just the current workspace. They can also serve to quickly open a document in a specific application. For example, you could drag&drop a HTML file onto a text editor in a LaunchBox to open it in the editor instead of its preferred application, the browser.

    +launchbox.png +

    All options are reached from the context menu:

    + + + + + + + +
    Add button here Adds an empty button.
    Clear button Empties a button.
    Remove button Removes a button.
    Settings
    +- Horizontal layout
    +- Icon size
    +- Ignore double-click
    +- Show window border
    +- Auto raise
    +- Show on all workspaces
     
    +Aligns the buttons horizontally.
    +Sets the icon size between 16 and 64 pixel.
    +Launches the object only once, even when you (accidentally) double-click.
    +Shows the window border.
    +LaunchBox pops up if the mouse is near the screen edge.
    +Shows the LaunchBox on every workspace.
    Pad
    +- New
    +- Clone
    +- Close
     
    +Add a new pad.
    +Duplicate the current pad.
    +Close the current pad.
    LaunchBox
    +- About...
    +- Quit
     
    +Shows the About window.
    +Quits all LaunchBox pads.
     
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/desktop-applets/networkstatus.html b/docs/userguide/pt_BR/desktop-applets/networkstatus.html new file mode 100644 index 0000000000..acf6467897 --- /dev/null +++ b/docs/userguide/pt_BR/desktop-applets/networkstatus.html @@ -0,0 +1,91 @@ + + + + + + + + + NetworkStatus + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    networkstatus-icon_64.pngNetworkStatus

    + + + + +
    Deskbar:Miniaplicativos da área de trabalho
    Localização:/boot/system/apps/NetworkStatus
    Configurações:nenhuma
    +

    NetworkStatus shows the status of your network connections. If not yet running, launching the applet will ask if it should open in window mode or live in the Deskbar. In window mode you're able to resize the icon by resizing the window and use the Replicant handle to drag it to the Desktop.
    +Wherever installed, it's operated via a right-click context menu.

    +

    NetworkStatus applet
    +The first section contains all network devices' names and their state. Clicking on such an entry brings up a window showing its IP, broadcast and netmask address.
    +Below is a list of all wireless networks found by the first wireless adapter and an indicator of their signal strength. Have a look at the Workshop: Wireless networking for more information on how to set up a connection.
    +Lastly, you can Open network preferences... to change your network configuration or Quit the applet.

    + +

    Status icons

    + + + + + + +
    ReadyLink is established.
    ConfiguringConnecting in progress.
    No stateful configurationSome settings are missing (check IP configuration).
    No linkThere is no physical connection (probably the network cable is not connected and wireless networks are unavailable).
    -There are no network adapters available (if you are sure that at least one is connected, there are probably no drivers yet).
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/desktop-applets/powerstatus.html b/docs/userguide/pt_BR/desktop-applets/powerstatus.html new file mode 100644 index 0000000000..3cb40040dd --- /dev/null +++ b/docs/userguide/pt_BR/desktop-applets/powerstatus.html @@ -0,0 +1,92 @@ + + + + + + + + + PowerStatus + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    powerstatus-icon_64.pngPowerStatus

    + + + + +
    Deskbar:Miniaplicativos da área de trabalho
    Localização:/boot/system/apps/PowerStatus
    Configurações:~/config/settings/PowerStatus settings
    +

    PowerStatus shows information about the battery level, so it's only useful on mobile computers. If not yet running, launching the applet will ask if it should open in window mode or live in the Deskbar. In window mode you're able to resize the icon by resizing the window and use the Replicant handle to drag it to the Desktop.
    +Wherever installed, it's operated via a right-click context menu.

    +

    Note: PowerStatus requires a working ACPI support.

    +PowerStatus applet +

    The context menu offers these options:

    + + + + + + + + +
    Show text labelShows battery level in percent or remaining time.
    Show status iconShows icon of the applet.
    Show percent / timeSwitch between showing battery level in percent or remaining time (Show text label has to be active).
    Battery info...Shows the extended battery info window.
    About...Shows the About window.
    QuitQuits the PowerStatus applet.
    +

    When Show text label is active, the battery level is shown in brackets while charging.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/desktop-applets/processcontroller.html b/docs/userguide/pt_BR/desktop-applets/processcontroller.html new file mode 100644 index 0000000000..1aa933239f --- /dev/null +++ b/docs/userguide/pt_BR/desktop-applets/processcontroller.html @@ -0,0 +1,110 @@ + + + + + + + + + ProcessController + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    processcontroller-icon_64.pngProcessController

    + + + + +
    Deskbar:Miniaplicativos da área de trabalho
    Localização:/boot/system/apps/ProcessController
    Configurações:nenhuma
    + +

    ProcessController appletThe primary task of the ProcessController applet is to show the activity of your CPU(s) and the amount of used memory. It allows monitoring of individual teams, change their priority, and kill them if the program freezes. In multiprocessor environments it allows you to disable individual processors/cores. When Tracker or Deskbar crash you can restart them from ProcessController's menu.

    +

    Indicators on the left show each CPU's usage, while the bar on the right shows the memory consumption. Remember that the number of indicators depend on the number of processors/cores in the computer.

    +

    If not yet running, launching ProcessController asks if it should open in window mode or live in the Deskbar. In window mode you can resize the bar-display by resizing the window and then use the Replicant handle to drag it to the Desktop.
    +Wherever it's installed, it's operated via a right-click context menu.
    +To remove the applet again from the Deskbar, uncheck Live in the Deskbar in its context menu.

    +

    Quit an application

    +ProcessController - Quit an application +

    To quit an application just choose its name from the Quit an application menu. This is a clean way to close app, just like clicking its close button. Be careful not to quit system processes like servers or daemons, however. Your system may stop working reliably.

    +

    Memory usage

    +ProcessController - Memory usage +

    Monitoring memory usage can be rather inaccurate.

    +

    This menu allows you to monitor memory usage of different teams in your system. Next to the team's name there are two columns: first with the amount reserved for writable memory, while the second shows all memory including read-only space (shared libraries for example).

    +

    The first row System resources & caches... shows the total amount of memory used by the system and all applications. The length of the blue bar is based on the total physical memory in your computer. The next rows show memory used by each process. Note that the length of the bar is based only on the actually used part of the memory.

    + + + +
    Memory used only by given application (with write access)
    Memory including read-only space (can be shared with other applications)
    + +

    Threads and CPU usage

    +

    This menu allows you to change thread priorities, kill teams or debug them.

    +
    Changes via the commands in this menu reach deep into the system and can cause data loss and system instability. Keep that mouse hand steady!
    +ProcessController - Priority + + + + +
    Kernel code
    User code
    Idle thread
    +

    At the first level you see team names. By clicking on one, you can kill the whole team. The dark-blue part of the bar is time spent in kernel code, the light-blue part in user code, the green part in the idle thread(s). A bar completely filled with blue means that the team is using all processoring power.

    +

    The second level shows particular threads of a team. By clicking on one, you can debug or kill it. A bar completely filled with blue means that the thread is pegging one processor/core.

    +

    The last level of the menu allows you to change a thread's priority. Be careful with that! As a rule of thumb the priority of a thread should be inverse its CPU usage. That is, the more it tries to claim CPU time, the lower should be it's priority. In general, don't mess with an app's priorities; contact its author, that's his business. +

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/desktop-applets/workspaces.html b/docs/userguide/pt_BR/desktop-applets/workspaces.html new file mode 100644 index 0000000000..86c1d854d8 --- /dev/null +++ b/docs/userguide/pt_BR/desktop-applets/workspaces.html @@ -0,0 +1,97 @@ + + + + + + + + + Miniaplicativo Workspaces + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    +

    workspaces-icon_64.pngWorkspaces

    + + + + +
    Deskbar:Miniaplicativos da área de trabalho
    Localização:/boot/system/apps/Workspaces
    Configurações:~/config/settings/system/app_server/workspaces
    +~/config/settings/Workspaces_settings - Armazena a posição da janela do painel.
    +


    +workspaces.png +

    Você vai encontrar o miniaplicativo Workspaces juntamente com outros nos miniaplicativos da Área de Trabalho no Deskbar. Ele mostra uma versão em miniatura de todos os espaços de trabalho. Existem várias opções disponíveis no menu de contexto da janela do aplicativo, são todas muito auto-explicativas.
    +Mudando a quantidade de espaços de trabalho... abrirá as preferências de Tela onde você pode mudar o número dos espaços de trabalho e a forma como são arranjadas (quantas linhas e colunas).

    +

    Since the applet is a Replicant, you can resize the window as desired and then drag&drop it by its handle onto the desktop (make sure Show replicants is activated in the Deskbar menu). Hold SHIFT while resizing to keep your screen's aspect ratio.

    + +

    +index +Movendo-se pelos espaços de trabalho

    +

    Para mover uma janela, você simplesmente deve arrastá-la para outra área de trabalho virtual dentro do Workspaces. A vantagem disso é que você não precisa sair da atual área de trabalho. Claro que isso só funciona bem quando não há muitas janelas na área de trabalho e quando seu alvo não está sob outra janela. Outra possibilidade é pegar a aba da janela e segurá-la enquanto se muda de área de trabalho clicando ALT Fx.

    +

    Para mais informações e mais atalhos de teclado sobre espaços de trabalho em geral, leia o tópico Workspaces.

    + +

    +index +Funcionalidade especial

    +

    O Workspaces oferece algumas funcionalidades adicionais quando a gente clica numa janela segurando essas teclas:

    + + + + +
    CTRLTraz a janela para o primeiro plano.
    CTRL SHIFTMinimiza a janela.
    OPTManda a janela pro plano de fundo.
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/filesystem-layout.html b/docs/userguide/pt_BR/filesystem-layout.html new file mode 100644 index 0000000000..6bf91c1dfb --- /dev/null +++ b/docs/userguide/pt_BR/filesystem-layout.html @@ -0,0 +1,159 @@ + + + + + + + + + Disposição do sistema de arquivos + + + + + + + + +
    +
    + +

    Disposição do sistema de arquivos

    + +

    A disposição do sistema de arquivos do Haiku é totalmente transparente, procurando sempre usar nomes inteligíveis para arquivos e pastas, que não obrigam o usuário a adivinhar do que se trata. Arquivos e pastas que são importantes para o funcionamento do sistema são protegidos de ações acidentais pela exibição de um dos seguintes alertas:

    +achtung-user.png  +achtung-system.png +

    O segundo alerta aparece caso tente renomear ou deletar algo na hierarquia do sistema. Aqui, o botão "Rename" somente estará disponível quando o usuário estiver segurando a tecla SHIFT.

    +

    Geralmente, existem três ramificações separadas partindo da pasta raiz do volume de inicialização:

    + + + + +
    /boot/system/ pertence ao sistema. Não mexa!
    /boot/common/ abriga arquivos que são compartilhados entre usuários.
    /boot/home/ é sua pasta pessoal, que contém seus dados e configurações.
    + +

    +index +A pasta system - /boot/system/

    +

    No BeOS, antecessor do Haiku, esta pasta era chamada /boot/beos/. Esta denominação ainda pode ser encontrada em alguns documentos antigos (por exemplo, o BeBook original).
    +Seja como for que se denomine, não se deve alterar seu conteúdo. Toda atualização do Haiku pode adicionar, remover ou sobrescrever qualquer coisa lá dentro. Se deseja adicionar funcionalidades, sejam outros adicionais do Rastreador (Tracker), Tradutores ou mesmo outro driver de dispositivo, instale-os na estrutura da sua pasta /boot/home/ ou, supondo que os deseje disponíveis para todos os usuários, na pasta /boot/common/. Enquanto o Haiku não é multiusuário, essa diferenciação não possui efeito prático, uma vez que existe apenas um usuário com uma pasta home. Mas desde que, finalmente, haja suporte para mais usuários, faz sentido aprender a maneira certa desde o início.

    +

    Então, digamos que deseje instalar um novo Tradutor para o mais recente formato de imagem, não simplesmente copie para a pasta system respectiva. Lembre-se: Não mexa!
    +Ao invés disso, ponha a estrutura espelhada na pasta /boot/common/ ou na pasta /boot/home/config/.

    +

    Em nosso exemplo, a localização para Tradutores na pasta system deveria ser

    +

    /boot/system/add-ons/Translators/

    +

    Então, a pasta "espelho" do usuário é igualmente

    +

    /boot/home/config/add-ons/Translators/
    +ou
    +/boot/common/add-ons/Translators/

    +

    Isso tem outra vantagem: se o componente instalado mexer em alguma coisa (o que pode acontecer ao instalar drivers de dispositivo), será possível selecionar "Desabilitar adicionais de usuário" do menu do Inicializador do sistema e assim inicializar sempre sem o componente problemático.

    +

    A maior parte do tempo, entretanto, você não irá lidar com essas coisas, já que todo software oriundo de uma fonte confiável deve incluir uma rotina de instalação que cuide disso.
    + +

    + +

    +index +A pasta common - /boot/common/

    +

    Haiku não é um sistema multiusuário ainda. Sendo assim, todo usuário tem sua própria pasta home que não é acessível a ninguém mais. Todo aplicativo ou componente acrescentado, como adicionais do Rastreador (Tracker), Tradutores, etc., bem como quaisquer dados que se deseje compartilhar entre diferentes usuários, devem ser inseridos em /boot/common/.

    + +

    +index +A pasta home - /boot/home/

    +

    Esta pasta pertence a você. Aqui podem ser criados e excluídos os arquivos e pastas que desejar. Entretanto, não deve mexer demais no diretório ~/config/ e suas subpastas. É possível excluir, por exemplo, a pasta ~/config/settings/ sem danificar o sistema operacional em si, mas quem quer perder todas as suas configurações e ajustes dos aplicativos? Em todo caso, o sistema avisará com os alertas mencionados no topo desta página.

    +

    Além da pasta ~/config/add-ons/, a qual espelha a pasta de adicionais do sistema para componentes outros como os descritos acima, existem mais algumas poucas pastas de interesse. (A propósito, o til ("~") é um atalho para sua pasta home, então não é preciso escrever sempre "/boot/home/" no Terminal.)

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ~/mail Por padrão, é onde seus correios são mantidos.
    ~/queries Consultas são armazenadas temporariamente por 7 dias, por padrão, nesta pasta.
    ~/config/be/ Mais uma vez do nosso legado do BeOS, a pasta be contém o que é mostrado no menu do Deskbar. Pode-se adicionar e remover itens colocando arquivos, pastas, vínculos ou consultas nesta pasta.
    ~/config/bin/ Complementa a pasta de sistema /boot/system/bin/ e abriga todos os programas de linha de comando.
    ~/config/boot/ Esta pasta é o local para aqueles Scripts de Usuário que são executados antes ou depois que o sistema inicializa ou é desligado.
    ~/config/boot/launch/ Vínculos para programas ou documentos nesta pasta são automaticamente lançados a cada inicialização do sistema.
    ~/config/data/fonts/ Simplesmente copie uma fonte TrueType ou Postscript para esta pasta e ela estará disponível imediatamente.
    ~/config/settings/ Esta pasta contém as definições de todas as aplicações e certas configurações para o sistema. Algumas aplicações gerenciam suas definições em subpastas próprias, outras simplesmente colocam seu arquivo de configuração aqui.
    ~/config/settings/beos_mime/ Neste banco de dados MIME o Haiku mantém uma lista de todos os diferentes tipos de arquivos e suas definições.
    ~/config/settings/kernel/drivers/ Existe um arquivo de definições que pode ser de interesse: kernel oferece algumas configurações de baixo nível tais como desabilitar SMP, ativar depuração serial ou habilitar gerenciamento avançado de energia. Ativa-se a linha de configuração removendo o símbolo de comentário "#". Tenha muito cuidado aqui!
    ~/config/settings/Tracker/ Além dos vários arquivos de definição para o Rastreador (Tracker), existem algumas subpastas interessantes:
    DefaultFolderTemplate/Mostra e organiza todos os atributos e o tamanho da janela ao seu gosto. Toda nova pasta que for criada a usará como modelo.
    DefaultQueryTemplates/Pode-se definir a disposição da janela do resultado de consulta para certos tipos de arquivo. Veja o tópico Consulta: A janela de resultado.
    Go/Ponha vínculos para seus locais favoritos aqui para torná-los disponíveis, por exemplo abrir e salvar painéis. Veja o tópico Interface Gráfica de Usuário (GUI) do Haiku: Favoritos e pastas recentes.
    Tracker New Template/Adicione um modelo para qualquer tipo de arquivo, o qual estará, então, disponível a partir do menu Arquivo | Novo... do Rastreador (Tracker). Veja o tópico Rastreador (Tracker): trabalhando com arquivos.
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/filetypes.html b/docs/userguide/pt_BR/filetypes.html new file mode 100644 index 0000000000..ace17f6952 --- /dev/null +++ b/docs/userguide/pt_BR/filetypes.html @@ -0,0 +1,123 @@ + + + + + + + + + Filetypes + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    Filetypes

    + +

    Other than Windows, Haiku doesn't rely on the 3-letter file extension for a file type (e.g. .txt, .jpg, .mp3). This method is only a last resort fallback. Haiku uses MIME types just like it's custom on the internet.

    +
    While there's no reason to use file extensions in Haiku, remember to add them to files you want to share with users of other operating systems, e.g. over email, uploading to a server or via exchange of an USB drive. Otherwise their system may not recognize the file type.
    + +

    index +Setting the filetype of a specific file

    +

    You can change the type of a specific file, its icon and the associated application. Select the file and invoke the Add-Ons | Filetype add-on from the right-click context menu.

    +filetype-addon.png + +

    +index +The File Type

    +

    The above is a PNG file, it's MIME string image/png. Let's say you definitely know that it's not a PNG but a GIF. You can change that either by entering the correct MIME string by hand or with one of the two buttons below the textbox:

    + + + +
    Select... shows a hierarchical list of filetypes where you navigate to image | GIF Image.
    Same as... opens a file dialog where you choose any file that already has the filetype you're looking for.
    + +

    +index +The Preferred Application

    +

    This pop-up menu shows a list of all applications that can handle this particular filetype. From here you can choose which program should open this specific file when it's double-clicked. You could, for example, change a HTML file's preferred application from the browser to a text editor while you're working on it. Every other HTML file still opens in the browser, only this particular one starts in your text editor.

    + +

    The Default application is the one that's set globally for that filetype. If you don't find the program you want to associate with this file in the pop-up menu, you'll again find the buttons Select... and Same as... which do the similar thing described under "The File Type" above.

    + +

    +index +The Icon

    +

    If you're wondering why the icon well on the top right is empty: Icons are normally inherited from the system default for that filetype. You can open the Filetype add-on of a file that contains an icon and drag&drop it into your file's icon well. Or you double-click the icon well and create or edit your own icon. For more info on icons and how to create your own, see topic Icon-O-Matic.

    + +

    +index +Special settings for applications

    +

    If you invoke the Filetype add-on on an executable (here: StyledEdit), you'll get a different dialog:

    +filetype-addon-stylededit.png +

    On top, you'll see, instead of a standardized MIME string, the unique application signature. With it, the system finds the program wherever it's installed.

    +

    Below it are several flags, controlling the app's behaviour:

    + + + + + + +
    Single launch Only one instance of the app can be running per executable file. If you have two copies of that app, however, they can run side by side.
    Multiple launch Many instances of the app can run simultaneously.
    Exclusive launch Really only one instance with that app's signature is allowed to run at a time.
    Args only Indicates the app doesn't respond to messages.
    Background app The app won't appear in Twitcher or the list of running apps of the Deskbar.
    +

    Then there's the list of supported filetypes. You can add (and remove) filetypes if you think the application can handle them. As a consequence, the app will appear in the menu for preferred applications or Tracker's Open with... context menu when you right-click on a file of that type.

    +

    At the bottom are version and copyright information. Like the application signature, they are filled in by the app's author and shouldn't be altered.

    + +

    +index +Global settings with the FileTypes Preferences

    +

    The FileTypes preferences don't deal with individual files but with global settings of filetypes. You can change default icons and preferred applications or add, remove, or alter attributes of whole filetypes. You can even create your own filetype from scratch.

    +

    All filetypes and their configurations are stored in /boot/home/config/settings/beos_mime/. Before you start experimenting, it may be prudent to make a backup of that folder...

    +

    To learn more about the FileTypes preferences see the workshop: Filetypes, Attributes, Index and Queries.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/gui.html b/docs/userguide/pt_BR/gui.html new file mode 100644 index 0000000000..63d7b2a0d6 --- /dev/null +++ b/docs/userguide/pt_BR/gui.html @@ -0,0 +1,164 @@ + + + + + + + + + Interface Gráfica de Usuário (GUI) do Haiku + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + + + + +
    Índice
    + Fácil deslocamento e redimensionamento
    + Empilhar e encaixar (Stack & Tile)
    + Caixas de diálogo Abrir e Salvar
    + Replicantes
    + +

    Interface Gráfica de Usuário (GUI) do Haiku

    + +

    A interface gráfica de usuário do Haiku é uma parte integrante do sistema. Diferentemente dos sistemas operacionais baseados em Unix, não existe um gerenciador de janelas separado e inicializar apenas dentro de um console de linha de comendo não é possível. Estando o foco do Haiku no usuário final, isto não é considerado necessário.

    +

    Como você provavelmente tem experiência com outros ambientes gráficos, vamos pular o básico como menus, menus de contexto com clique no botão direito do mouse, arrastar e soltar, etc. Ao invés disso, vamos ter uma visão sobre alguns aspectos únicos da GUI do Haiku.

    +gui.png +

    Existem apenas umas poucas coisas na GUI do Haiku que não são óbvias e fazem jus a uma explanação.

    +
      +
    1. O Deskbar é o menu "Iniciar" do Haiku e a barra de tarefas, se você quiser. Veja o tópico Deskbar.

    2. +
    3. A guia amarela oferece mais do que um nome de programa ou o nome de um arquivo de documento: +
      • Você pode movê-lo ao segurar a tecla SHIFT enquanto a arrasta para outra posição, habilitando empilhar uma quantidade de janelas e convenientemente acessando-as por suas guias.
      • +
      • Pode-se minimizar uma janela com um clique duplo em sua guia (ou com CTRL ALT M). Essa janela oculta pode ser acessada por sua entrada no Deskbar ou Twitcher.
      • +
      • Pode-se enviar uma janela para trás com um clique no botão direito do mouse em sua guia (ou seu contorno).
    4. +
    5. O botão fechar.

    6. +
    7. O botão "zoom" (ou CTRL ALT Z). Na maioria dos aplicativos, isto expande uma janela para o tamanho máximo. Entretanto, isso não é obrigatório. A janela do Rastreador (Tracker), por exemplo, irá redimensionar para melhor ajustar os conteúdos.

    8. +
    9. O contorna da janela. Arrastando com o botão esquerdo do mouse move a janela, com o botão direito redimensiona.

    10. +
    11. O canto de redimensionamento.

    12. +
    + +

    +index +Uma maneira rápida de mover e redimensionar janelas

    +

    Mover e redimensionar janelas é uma grande parte da interação com vários aplicativos rodando de forma concorrente. Ao invés de apontar para a pequena guia amarela ou para a ainda menor borda da janela, existe uma maneira mais conveniente de mover uma janela. Também, somando-se ao seu pequeno tamanho, o canto de redimensionamento tem outra limitação: ele apenas permite redimensionar e na direção do canto direito mais abaixo.
    Arraste com o botão direito do mouse um contorno para redimensionar trabalhos, mas novamente terá que procurar com cuidado.

    +

    Para responder a estas questões, Haiku proporciona uma solução clara usando a combinação de teclas de gerenciamento de janela CTRL ALT e o mouse. Veja também o capítulo Atalhos e combinações de teclas para mais atalhos relativos a gerenciamento de janela.

    +resizing.png +

    Apertando e segurando CTRL ALT irá realçar os contornos da janela próximos ao cursor do mouse. Mova o mouse em direção à outra borda para mudar o alvo. Clicar e arrastar com o botão direito do mouse irá redimensionar a janela ao longo do(s) contorno(s) realçado(s).

    +

    Pressione CTRL ALT e clique e arraste com o botão esquerdo do mouse em qualquer área da janela para movê-la. Um rápido clique com o botão direito do mouse a enviará para trás.

    + +

    +index +Empilhar e Encaixar (Stack & Tile)

    +

    A interface de usuário do Haiku oferece uma característica única que evidencia o fato de que as janelas possuem uma guia amarela ao invés de uma barra de título que abrange toda a largura, para um uso perfeito. Chama-se "Empilhar e Encaixar (Stack & Tile)".
    +No exemplo abaixo, uma janela do Rastreador (Tracker) com marcadores está encaixado à esquerda de uma janela do WebPositivo, o qual está empilhado com outra janela do Rastreador (Tracker) mostrando a pasta fonte haiku. Nesta animação, o usuário clica nas guias das janelas empilhadas para alternadamente trazer uma ou outra para a frente.

    +gui-s+t.gif +

    Conectado assim, o grupo de janelas pode ser movido e redimensionado junto - um belo arranjo para trabalhar em um ambiente mais centrado ao projeto. Ao invés de procurar pela janela certa do navegador com a documentação, do editor e do Rastreador (Tracker) e talvez um correio relativo ao projeto no qual está trabalhando, apenas empilhe-os e encaixe-os juntos.

    +

    Fazer o arranjo real de janelas é fácil: Pressione OPT ou SUPER (botão do Windows) enquanto arrasta uma janela pela sua guia para outra guia de janela ou borda até que ela esteja realçada. Neste momento, solte o botão do mouse.

    +

    Empilhar e Encaixar (Stack & Tile) consiste de duas partes relacionadas.

    + + +
    gui-stacking.png

    "Empilhar" é colocar janelas no topo umas das outras, movendo automaticamente as guias amarelas para a posição.
    +Enquanto pressiona OPT ou SUPER, as guias mudam de cor quando se sobrepõem; solte a janela para realizar o empilhamento.

    + + +
    gui-tilinging.png

    "Tiling" means gluing windows horizontally or vertically together.
    +Again, while holding OPT, the borders that'll fuse together when you drop the window change color when brought near each other.

    +

    A separação é feita da mesma maneira, pressionando OPT ou SUPER enquanto arrasta uma janela pela sua guia para fora do grupo.

    + +

    +index +Caixas de diálogo Abrir e Salvar

    +

    Ao abrir ou salvar um arquivo de qualquer aplicativo, uma caixa de diálogo como esta aparece:

    +open-save.png +

    Ela tem todas as coisas usuais: Uma lista de arquivos da pasta corrente para escolher, no caso de uma caixa de diálogo Salvar, um campo de texto para especificar um nome de arquivo e um menu pop-up para diferentes formatos de arquivo e suas definições.
    +Pode-se escolher as pastas de destino no menu pop-up acima da lista de arquivos.

    +

    Se já existe uma janela do Rastreador (Tracker) com o local para um arquivo aberto, pode-se simplesmente arrastar também qualquer arquivo ou a representação da pasta (ou seja, o símbolo na extremidade direita da barra de menu) para dentro da caixa de diálogo. Isto alterna a caixa para aquele novo local.

    + +

    +index +Atalhos de teclado

    +

    Muitos atalhos nas caixas de diálogo Abrir e Salvar são os mesmos utilizados no Rastreador (Tracker). Além dos comandos que também estão disponíveis através do menu Arquivo, existem alguns poucos que não são tão óbvios:

    + + + + + + + +
    ALT NCria uma nova pasta.
    ALT EPermite renomear o registro selecionado.
    ALT Move para a pasta de origem.
    ALT or ENTERMove para dentro da pasta selecionada.
    ALT DVai para a Área de Trabalho.
    ALT HVai para a pasta Home.
    + +

    +index +Favoritos e pastas recentes

    +

    O menu Favoritos nas caixas de diálogo Abrir e Salvar mostra pastas recentemente acessadas e locais favoritos que podem ser definidas por você mesmo. Como indicado pela pequena seta, pode-se também usar estes locais para navegar avançando na estrutura através dos submenus.

    +favorites.png +

    Para adicionar um Favorito, simplesmente navegue para seu destino e escolha Favoritos | Adicionar pasta atual. Doravante ela aparecerá em todas as caixas de diálogo abrir/salvar. Para remover um Favorito, escolha Favoritos | Configurar favoritos... e deletar sua entrada.
    +Todos os Favoritos são mantidos em /boot/home/config/settings/Tracker/Go/. Lá, é possível adicionar e remover vínculos a arquivos e pastas diretamente.

    + +

    +index +Replicantes

    +

    Replicantes são pequenas partes fechadas de aplicativos que pode ser integrados a outros programas. Habilitados quando a opção Mostrar replicantes do Deskbar está ativa, reconhece-se uma parte replicante de um aplicativo por sua pequena alça, normalmente no canto direito inferior:

    +replicant.png +

    O local que mais aceita Replicantes é a Área de Trabalho: simplesmente arraste e solte a pequena alça sobre ela. A partir desse momento passa a fazer parte da Área de Trabalho e o aplicativo de origem do Replicante não pode ser iniciado por ela.
    +Um clique com o botão direito do mouse em uma alça Replicante oferece um menu de contexto que mostra a janela Sobre do aplicativo de origem e a opção Remover replicante.

    +
    Caso tenha dificuldades com um Replicante na Área de Trabalho e não consiga livrar-se dele, exclua ~/config/settings/Tracker/tracker_shelf. Lamentavelmente, isto removerá todos os Replicantes da Área de Trabalho.
    +

    Exemplos de aplicativos replicáveis são os gráficos do Monitor de Atividade, o miniaplicativo Workspaces ou a Calculadora de Mesa.

    +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/images/apps-images/activitymonitor.png b/docs/userguide/pt_BR/images/apps-images/activitymonitor.png new file mode 100644 index 0000000000..94ee224e90 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/activitymonitor.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/bootmanager-1.png b/docs/userguide/pt_BR/images/apps-images/bootmanager-1.png new file mode 100644 index 0000000000..254f731d81 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/bootmanager-1.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/bootmanager-2.png b/docs/userguide/pt_BR/images/apps-images/bootmanager-2.png new file mode 100644 index 0000000000..a4e7367623 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/bootmanager-2.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/bootmanager-3.png b/docs/userguide/pt_BR/images/apps-images/bootmanager-3.png new file mode 100644 index 0000000000..b92bb346c5 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/bootmanager-3.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/bootmanager-4.png b/docs/userguide/pt_BR/images/apps-images/bootmanager-4.png new file mode 100644 index 0000000000..7148b2d4d5 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/bootmanager-4.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/bootmanager-5.png b/docs/userguide/pt_BR/images/apps-images/bootmanager-5.png new file mode 100644 index 0000000000..3a17fce129 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/bootmanager-5.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/bootmanager-6.png b/docs/userguide/pt_BR/images/apps-images/bootmanager-6.png new file mode 100644 index 0000000000..4d766dcf74 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/bootmanager-6.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/bootmanager-7.png b/docs/userguide/pt_BR/images/apps-images/bootmanager-7.png new file mode 100644 index 0000000000..7fab263435 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/bootmanager-7.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/bootmanager-8.png b/docs/userguide/pt_BR/images/apps-images/bootmanager-8.png new file mode 100644 index 0000000000..6ab9b43e85 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/bootmanager-8.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/bootmenu.png b/docs/userguide/pt_BR/images/apps-images/bootmenu.png new file mode 100644 index 0000000000..1fe7ead138 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/bootmenu.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/cdplayer.png b/docs/userguide/pt_BR/images/apps-images/cdplayer.png new file mode 100644 index 0000000000..07e941933d Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/cdplayer.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/charactermap.png b/docs/userguide/pt_BR/images/apps-images/charactermap.png new file mode 100644 index 0000000000..a5542f3831 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/charactermap.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/cli-alert.png b/docs/userguide/pt_BR/images/apps-images/cli-alert.png new file mode 100644 index 0000000000..a372778720 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/cli-alert.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/cli-desklink.png b/docs/userguide/pt_BR/images/apps-images/cli-desklink.png new file mode 100644 index 0000000000..b56fd0c53f Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/cli-desklink.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/cli-filepanel.png b/docs/userguide/pt_BR/images/apps-images/cli-filepanel.png new file mode 100644 index 0000000000..d9f7b81490 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/cli-filepanel.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/codycam.png b/docs/userguide/pt_BR/images/apps-images/codycam.png new file mode 100644 index 0000000000..5679698b76 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/codycam.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/deskcalc.png b/docs/userguide/pt_BR/images/apps-images/deskcalc.png new file mode 100644 index 0000000000..b4b14b991d Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/deskcalc.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/diskprobe-about-attr.png b/docs/userguide/pt_BR/images/apps-images/diskprobe-about-attr.png new file mode 100644 index 0000000000..a7bee6b197 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/diskprobe-about-attr.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/diskprobe.png b/docs/userguide/pt_BR/images/apps-images/diskprobe.png new file mode 100644 index 0000000000..8f4f2a1762 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/diskprobe.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/diskusage.png b/docs/userguide/pt_BR/images/apps-images/diskusage.png new file mode 100644 index 0000000000..6b7f86709d Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/diskusage.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/drivesetup-create.png b/docs/userguide/pt_BR/images/apps-images/drivesetup-create.png new file mode 100644 index 0000000000..d91486def3 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/drivesetup-create.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/drivesetup-initialize.png b/docs/userguide/pt_BR/images/apps-images/drivesetup-initialize.png new file mode 100644 index 0000000000..8c02ea1b90 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/drivesetup-initialize.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/drivesetup.png b/docs/userguide/pt_BR/images/apps-images/drivesetup.png new file mode 100644 index 0000000000..f14d571b05 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/drivesetup.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/expander-preferences.png b/docs/userguide/pt_BR/images/apps-images/expander-preferences.png new file mode 100644 index 0000000000..3288945617 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/expander-preferences.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/expander.png b/docs/userguide/pt_BR/images/apps-images/expander.png new file mode 100644 index 0000000000..07b37ea9cd Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/expander.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/i-o-m-gradients.png b/docs/userguide/pt_BR/images/apps-images/i-o-m-gradients.png new file mode 100644 index 0000000000..db2823f143 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/i-o-m-gradients.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/i-o-m-overview.png b/docs/userguide/pt_BR/images/apps-images/i-o-m-overview.png new file mode 100644 index 0000000000..6429bbb7eb Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/i-o-m-overview.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/installer.png b/docs/userguide/pt_BR/images/apps-images/installer.png new file mode 100644 index 0000000000..0106866921 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/installer.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/magnify.png b/docs/userguide/pt_BR/images/apps-images/magnify.png new file mode 100644 index 0000000000..6fea1ac224 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/magnify.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/mail-attachments.png b/docs/userguide/pt_BR/images/apps-images/mail-attachments.png new file mode 100644 index 0000000000..12df2df096 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/mail-attachments.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/mail-preferences.png b/docs/userguide/pt_BR/images/apps-images/mail-preferences.png new file mode 100644 index 0000000000..64c0b9d22a Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/mail-preferences.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/mail-read.png b/docs/userguide/pt_BR/images/apps-images/mail-read.png new file mode 100644 index 0000000000..1e11ffa4a0 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/mail-read.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/mail-signature.png b/docs/userguide/pt_BR/images/apps-images/mail-signature.png new file mode 100644 index 0000000000..432cc5b522 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/mail-signature.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/mail-spellcheck.png b/docs/userguide/pt_BR/images/apps-images/mail-spellcheck.png new file mode 100644 index 0000000000..2511586647 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/mail-spellcheck.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/mail-write.png b/docs/userguide/pt_BR/images/apps-images/mail-write.png new file mode 100644 index 0000000000..fe85df60a6 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/mail-write.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/mediaplayer-info.png b/docs/userguide/pt_BR/images/apps-images/mediaplayer-info.png new file mode 100644 index 0000000000..5601ff94c4 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/mediaplayer-info.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/mediaplayer-playlist.png b/docs/userguide/pt_BR/images/apps-images/mediaplayer-playlist.png new file mode 100644 index 0000000000..03f666ff76 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/mediaplayer-playlist.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/mediaplayer-settings.png b/docs/userguide/pt_BR/images/apps-images/mediaplayer-settings.png new file mode 100644 index 0000000000..9d7ef19ea4 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/mediaplayer-settings.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/mediaplayer.png b/docs/userguide/pt_BR/images/apps-images/mediaplayer.png new file mode 100644 index 0000000000..ad6cc192a6 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/mediaplayer.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/midiplayer.png b/docs/userguide/pt_BR/images/apps-images/midiplayer.png new file mode 100644 index 0000000000..22b2081dd4 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/midiplayer.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/newactivitymonitor.png b/docs/userguide/pt_BR/images/apps-images/newactivitymonitor.png new file mode 100644 index 0000000000..94ee224e90 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/newactivitymonitor.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/packageinstaller-installer.png b/docs/userguide/pt_BR/images/apps-images/packageinstaller-installer.png new file mode 100644 index 0000000000..5ce144af22 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/packageinstaller-installer.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/packageinstaller.png b/docs/userguide/pt_BR/images/apps-images/packageinstaller.png new file mode 100644 index 0000000000..cdab34eda3 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/packageinstaller.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/people-files.png b/docs/userguide/pt_BR/images/apps-images/people-files.png new file mode 100644 index 0000000000..f82758f20c Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/people-files.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/people.png b/docs/userguide/pt_BR/images/apps-images/people.png new file mode 100644 index 0000000000..6b7854f0dc Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/people.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/poorman.png b/docs/userguide/pt_BR/images/apps-images/poorman.png new file mode 100644 index 0000000000..df094ffbd9 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/poorman.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/screenshot.png b/docs/userguide/pt_BR/images/apps-images/screenshot.png new file mode 100644 index 0000000000..8e54baaea9 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/screenshot.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/showimage-browse.jpg b/docs/userguide/pt_BR/images/apps-images/showimage-browse.jpg new file mode 100644 index 0000000000..2d4681c1dd Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/showimage-browse.jpg differ diff --git a/docs/userguide/pt_BR/images/apps-images/showimage-dnd.jpg b/docs/userguide/pt_BR/images/apps-images/showimage-dnd.jpg new file mode 100644 index 0000000000..e284a8d7c0 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/showimage-dnd.jpg differ diff --git a/docs/userguide/pt_BR/images/apps-images/showimage-edit.jpg b/docs/userguide/pt_BR/images/apps-images/showimage-edit.jpg new file mode 100644 index 0000000000..f2d69b4b74 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/showimage-edit.jpg differ diff --git a/docs/userguide/pt_BR/images/apps-images/showimage-toolbar.png b/docs/userguide/pt_BR/images/apps-images/showimage-toolbar.png new file mode 100644 index 0000000000..a51f23f576 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/showimage-toolbar.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/showimage-view.jpg b/docs/userguide/pt_BR/images/apps-images/showimage-view.jpg new file mode 100644 index 0000000000..2130d0b3d6 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/showimage-view.jpg differ diff --git a/docs/userguide/pt_BR/images/apps-images/stylededit.png b/docs/userguide/pt_BR/images/apps-images/stylededit.png new file mode 100644 index 0000000000..4ebd7e2643 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/stylededit.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/terminal-settings.png b/docs/userguide/pt_BR/images/apps-images/terminal-settings.png new file mode 100644 index 0000000000..331b505450 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/terminal-settings.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/terminal.png b/docs/userguide/pt_BR/images/apps-images/terminal.png new file mode 100644 index 0000000000..079ff04eed Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/terminal.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/textsearch.png b/docs/userguide/pt_BR/images/apps-images/textsearch.png new file mode 100644 index 0000000000..974ec4c06a Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/textsearch.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/web+bookmarks.png b/docs/userguide/pt_BR/images/apps-images/web+bookmarks.png new file mode 100644 index 0000000000..7d8647aed8 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/web+bookmarks.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/web+download.png b/docs/userguide/pt_BR/images/apps-images/web+download.png new file mode 100644 index 0000000000..621e022340 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/web+download.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/web+downloads-folder.png b/docs/userguide/pt_BR/images/apps-images/web+downloads-folder.png new file mode 100644 index 0000000000..f01f9e3b9b Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/web+downloads-folder.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/web+downloads-window.png b/docs/userguide/pt_BR/images/apps-images/web+downloads-window.png new file mode 100644 index 0000000000..402072a463 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/web+downloads-window.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/web+settings.png b/docs/userguide/pt_BR/images/apps-images/web+settings.png new file mode 100644 index 0000000000..7b9a0945ad Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/web+settings.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/webpositive-bookmarks.png b/docs/userguide/pt_BR/images/apps-images/webpositive-bookmarks.png new file mode 100644 index 0000000000..e7a04ba460 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/webpositive-bookmarks.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/webpositive-downloads.png b/docs/userguide/pt_BR/images/apps-images/webpositive-downloads.png new file mode 100644 index 0000000000..88ceb0e825 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/webpositive-downloads.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/webpositive-locator.png b/docs/userguide/pt_BR/images/apps-images/webpositive-locator.png new file mode 100644 index 0000000000..eeb3491e43 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/webpositive-locator.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/webpositive-settings.png b/docs/userguide/pt_BR/images/apps-images/webpositive-settings.png new file mode 100644 index 0000000000..2a6123a735 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/webpositive-settings.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/webpositive-tabbar.png b/docs/userguide/pt_BR/images/apps-images/webpositive-tabbar.png new file mode 100644 index 0000000000..5cf13f972e Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/webpositive-tabbar.png differ diff --git a/docs/userguide/pt_BR/images/apps-images/webpositive.png b/docs/userguide/pt_BR/images/apps-images/webpositive.png new file mode 100644 index 0000000000..17f776e5d8 Binary files /dev/null and b/docs/userguide/pt_BR/images/apps-images/webpositive.png differ diff --git a/docs/userguide/pt_BR/images/attributes-images/people.png b/docs/userguide/pt_BR/images/attributes-images/people.png new file mode 100644 index 0000000000..df7892c6c5 Binary files /dev/null and b/docs/userguide/pt_BR/images/attributes-images/people.png differ diff --git a/docs/userguide/pt_BR/images/deskbar-images/calendar.png b/docs/userguide/pt_BR/images/deskbar-images/calendar.png new file mode 100644 index 0000000000..b805afaee5 Binary files /dev/null and b/docs/userguide/pt_BR/images/deskbar-images/calendar.png differ diff --git a/docs/userguide/pt_BR/images/deskbar-images/configure.png b/docs/userguide/pt_BR/images/deskbar-images/configure.png new file mode 100644 index 0000000000..3f53b2280d Binary files /dev/null and b/docs/userguide/pt_BR/images/deskbar-images/configure.png differ diff --git a/docs/userguide/pt_BR/images/deskbar-images/deskbar.png b/docs/userguide/pt_BR/images/deskbar-images/deskbar.png new file mode 100644 index 0000000000..67d09d587b Binary files /dev/null and b/docs/userguide/pt_BR/images/deskbar-images/deskbar.png differ diff --git a/docs/userguide/pt_BR/images/deskbar-images/list-of-apps.png b/docs/userguide/pt_BR/images/deskbar-images/list-of-apps.png new file mode 100644 index 0000000000..e9f9cd34f7 Binary files /dev/null and b/docs/userguide/pt_BR/images/deskbar-images/list-of-apps.png differ diff --git a/docs/userguide/pt_BR/images/deskbar-images/positions.png b/docs/userguide/pt_BR/images/deskbar-images/positions.png new file mode 100644 index 0000000000..de38e8dee7 Binary files /dev/null and b/docs/userguide/pt_BR/images/deskbar-images/positions.png differ diff --git a/docs/userguide/pt_BR/images/desktop-applets-images/launchbox.png b/docs/userguide/pt_BR/images/desktop-applets-images/launchbox.png new file mode 100644 index 0000000000..16d43d404b Binary files /dev/null and b/docs/userguide/pt_BR/images/desktop-applets-images/launchbox.png differ diff --git a/docs/userguide/pt_BR/images/filesystem-layout-images/achtung-system.png b/docs/userguide/pt_BR/images/filesystem-layout-images/achtung-system.png new file mode 100644 index 0000000000..fbcebee00c Binary files /dev/null and b/docs/userguide/pt_BR/images/filesystem-layout-images/achtung-system.png differ diff --git a/docs/userguide/pt_BR/images/filesystem-layout-images/achtung-user.png b/docs/userguide/pt_BR/images/filesystem-layout-images/achtung-user.png new file mode 100644 index 0000000000..fa6d1cfa24 Binary files /dev/null and b/docs/userguide/pt_BR/images/filesystem-layout-images/achtung-user.png differ diff --git a/docs/userguide/pt_BR/images/filetypes-images/filetype-addon-stylededit.png b/docs/userguide/pt_BR/images/filetypes-images/filetype-addon-stylededit.png new file mode 100644 index 0000000000..928f02c631 Binary files /dev/null and b/docs/userguide/pt_BR/images/filetypes-images/filetype-addon-stylededit.png differ diff --git a/docs/userguide/pt_BR/images/filetypes-images/filetype-addon.png b/docs/userguide/pt_BR/images/filetypes-images/filetype-addon.png new file mode 100644 index 0000000000..15180be2d6 Binary files /dev/null and b/docs/userguide/pt_BR/images/filetypes-images/filetype-addon.png differ diff --git a/docs/userguide/pt_BR/images/gui-images/favorites.png b/docs/userguide/pt_BR/images/gui-images/favorites.png new file mode 100644 index 0000000000..cf9f5f3be5 Binary files /dev/null and b/docs/userguide/pt_BR/images/gui-images/favorites.png differ diff --git a/docs/userguide/pt_BR/images/gui-images/gui-s+t.gif b/docs/userguide/pt_BR/images/gui-images/gui-s+t.gif new file mode 100644 index 0000000000..6cbab7f641 Binary files /dev/null and b/docs/userguide/pt_BR/images/gui-images/gui-s+t.gif differ diff --git a/docs/userguide/pt_BR/images/gui-images/gui-stacking.png b/docs/userguide/pt_BR/images/gui-images/gui-stacking.png new file mode 100644 index 0000000000..fb2cce5572 Binary files /dev/null and b/docs/userguide/pt_BR/images/gui-images/gui-stacking.png differ diff --git a/docs/userguide/pt_BR/images/gui-images/gui-tiling.png b/docs/userguide/pt_BR/images/gui-images/gui-tiling.png new file mode 100644 index 0000000000..7f18ae5cf5 Binary files /dev/null and b/docs/userguide/pt_BR/images/gui-images/gui-tiling.png differ diff --git a/docs/userguide/pt_BR/images/gui-images/gui.png b/docs/userguide/pt_BR/images/gui-images/gui.png new file mode 100644 index 0000000000..0ee9666efc Binary files /dev/null and b/docs/userguide/pt_BR/images/gui-images/gui.png differ diff --git a/docs/userguide/pt_BR/images/gui-images/open-save.png b/docs/userguide/pt_BR/images/gui-images/open-save.png new file mode 100644 index 0000000000..662bedc2ae Binary files /dev/null and b/docs/userguide/pt_BR/images/gui-images/open-save.png differ diff --git a/docs/userguide/pt_BR/images/gui-images/resizing.png b/docs/userguide/pt_BR/images/gui-images/resizing.png new file mode 100644 index 0000000000..2a2ff48320 Binary files /dev/null and b/docs/userguide/pt_BR/images/gui-images/resizing.png differ diff --git a/docs/userguide/pt_BR/images/networkstatus-images/applet.png b/docs/userguide/pt_BR/images/networkstatus-images/applet.png new file mode 100644 index 0000000000..81e42499af Binary files /dev/null and b/docs/userguide/pt_BR/images/networkstatus-images/applet.png differ diff --git a/docs/userguide/pt_BR/images/networkstatus-images/icon-connecting.png b/docs/userguide/pt_BR/images/networkstatus-images/icon-connecting.png new file mode 100644 index 0000000000..84013cb9a6 Binary files /dev/null and b/docs/userguide/pt_BR/images/networkstatus-images/icon-connecting.png differ diff --git a/docs/userguide/pt_BR/images/networkstatus-images/icon-noconnection.png b/docs/userguide/pt_BR/images/networkstatus-images/icon-noconnection.png new file mode 100644 index 0000000000..329d5a6c94 Binary files /dev/null and b/docs/userguide/pt_BR/images/networkstatus-images/icon-noconnection.png differ diff --git a/docs/userguide/pt_BR/images/networkstatus-images/icon-nodevices.png b/docs/userguide/pt_BR/images/networkstatus-images/icon-nodevices.png new file mode 100644 index 0000000000..442f3b6c8a Binary files /dev/null and b/docs/userguide/pt_BR/images/networkstatus-images/icon-nodevices.png differ diff --git a/docs/userguide/pt_BR/images/networkstatus-images/icon-nosettings.png b/docs/userguide/pt_BR/images/networkstatus-images/icon-nosettings.png new file mode 100644 index 0000000000..a0fa47e9b8 Binary files /dev/null and b/docs/userguide/pt_BR/images/networkstatus-images/icon-nosettings.png differ diff --git a/docs/userguide/pt_BR/images/networkstatus-images/icon-ready.png b/docs/userguide/pt_BR/images/networkstatus-images/icon-ready.png new file mode 100644 index 0000000000..7d9ea72428 Binary files /dev/null and b/docs/userguide/pt_BR/images/networkstatus-images/icon-ready.png differ diff --git a/docs/userguide/pt_BR/images/powerstatus-images/applet.png b/docs/userguide/pt_BR/images/powerstatus-images/applet.png new file mode 100644 index 0000000000..64c30d75f3 Binary files /dev/null and b/docs/userguide/pt_BR/images/powerstatus-images/applet.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/appearance-antialiasing.png b/docs/userguide/pt_BR/images/prefs-images/appearance-antialiasing.png new file mode 100644 index 0000000000..cbb49dc808 Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/appearance-antialiasing.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/appearance-colors.png b/docs/userguide/pt_BR/images/prefs-images/appearance-colors.png new file mode 100644 index 0000000000..eeb3574015 Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/appearance-colors.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/appearance-decorators.png b/docs/userguide/pt_BR/images/prefs-images/appearance-decorators.png new file mode 100644 index 0000000000..99d9ade42b Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/appearance-decorators.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/appearance-fonts.png b/docs/userguide/pt_BR/images/prefs-images/appearance-fonts.png new file mode 100644 index 0000000000..c962c53232 Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/appearance-fonts.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/appearance-glyph-off.png b/docs/userguide/pt_BR/images/prefs-images/appearance-glyph-off.png new file mode 100644 index 0000000000..0fe9e2169c Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/appearance-glyph-off.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/appearance-glyph-on-subpixel.png b/docs/userguide/pt_BR/images/prefs-images/appearance-glyph-on-subpixel.png new file mode 100644 index 0000000000..e4d03a1643 Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/appearance-glyph-on-subpixel.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/appearance-glyph-on.png b/docs/userguide/pt_BR/images/prefs-images/appearance-glyph-on.png new file mode 100644 index 0000000000..28b80dfed8 Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/appearance-glyph-on.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/appearance-subpixel.png b/docs/userguide/pt_BR/images/prefs-images/appearance-subpixel.png new file mode 100644 index 0000000000..a42a3d006e Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/appearance-subpixel.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/backgrounds.png b/docs/userguide/pt_BR/images/prefs-images/backgrounds.png new file mode 100644 index 0000000000..ed757967dc Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/backgrounds.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/datatranslations.png b/docs/userguide/pt_BR/images/prefs-images/datatranslations.png new file mode 100644 index 0000000000..c7ea18a396 Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/datatranslations.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/e-mail-accounts.png b/docs/userguide/pt_BR/images/prefs-images/e-mail-accounts.png new file mode 100644 index 0000000000..17694e831e Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/e-mail-accounts.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/e-mail-filter-header.png b/docs/userguide/pt_BR/images/prefs-images/e-mail-filter-header.png new file mode 100644 index 0000000000..9e6839c9c5 Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/e-mail-filter-header.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/e-mail-filter-notification.png b/docs/userguide/pt_BR/images/prefs-images/e-mail-filter-notification.png new file mode 100644 index 0000000000..c1e5160bb6 Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/e-mail-filter-notification.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/e-mail-filter-spam.png b/docs/userguide/pt_BR/images/prefs-images/e-mail-filter-spam.png new file mode 100644 index 0000000000..2b88579c8f Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/e-mail-filter-spam.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/e-mail-in.png b/docs/userguide/pt_BR/images/prefs-images/e-mail-in.png new file mode 100644 index 0000000000..8d42bb21b5 Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/e-mail-in.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/e-mail-mailbox.png b/docs/userguide/pt_BR/images/prefs-images/e-mail-mailbox.png new file mode 100644 index 0000000000..8ea1d4811e Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/e-mail-mailbox.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/e-mail-new-account-2.png b/docs/userguide/pt_BR/images/prefs-images/e-mail-new-account-2.png new file mode 100644 index 0000000000..fd42a1cda9 Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/e-mail-new-account-2.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/e-mail-new-account.png b/docs/userguide/pt_BR/images/prefs-images/e-mail-new-account.png new file mode 100644 index 0000000000..8904978729 Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/e-mail-new-account.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/e-mail-out.png b/docs/userguide/pt_BR/images/prefs-images/e-mail-out.png new file mode 100644 index 0000000000..2ed6eecb6c Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/e-mail-out.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/e-mail-settings.png b/docs/userguide/pt_BR/images/prefs-images/e-mail-settings.png new file mode 100644 index 0000000000..00c0e34085 Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/e-mail-settings.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/fonts.png b/docs/userguide/pt_BR/images/prefs-images/fonts.png new file mode 100644 index 0000000000..fbf879455d Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/fonts.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/keyboard.png b/docs/userguide/pt_BR/images/prefs-images/keyboard.png new file mode 100644 index 0000000000..d7ead8e810 Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/keyboard.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/keymap.png b/docs/userguide/pt_BR/images/prefs-images/keymap.png new file mode 100644 index 0000000000..b502b82adc Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/keymap.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/locale-formatting.png b/docs/userguide/pt_BR/images/prefs-images/locale-formatting.png new file mode 100644 index 0000000000..1debec6faa Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/locale-formatting.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/locale-language.png b/docs/userguide/pt_BR/images/prefs-images/locale-language.png new file mode 100644 index 0000000000..d94efe28ac Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/locale-language.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/mouse.png b/docs/userguide/pt_BR/images/prefs-images/mouse.png new file mode 100644 index 0000000000..b735a68a7d Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/mouse.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/network.png b/docs/userguide/pt_BR/images/prefs-images/network.png new file mode 100644 index 0000000000..0cb30f816f Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/network.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/screen.png b/docs/userguide/pt_BR/images/prefs-images/screen.png new file mode 100644 index 0000000000..75cfe8bcb2 Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/screen.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/screensaver-fade.png b/docs/userguide/pt_BR/images/prefs-images/screensaver-fade.png new file mode 100644 index 0000000000..cdb2a2e5e3 Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/screensaver-fade.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/screensaver-modules.png b/docs/userguide/pt_BR/images/prefs-images/screensaver-modules.png new file mode 100644 index 0000000000..ebeac24d1e Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/screensaver-modules.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/sounds.png b/docs/userguide/pt_BR/images/prefs-images/sounds.png new file mode 100644 index 0000000000..e89cb8a52a Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/sounds.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/time-time.png b/docs/userguide/pt_BR/images/prefs-images/time-time.png new file mode 100644 index 0000000000..4b60a7136d Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/time-time.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/time-timezone.png b/docs/userguide/pt_BR/images/prefs-images/time-timezone.png new file mode 100644 index 0000000000..4ddf6df643 Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/time-timezone.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/touchpad.png b/docs/userguide/pt_BR/images/prefs-images/touchpad.png new file mode 100644 index 0000000000..b7f7365b9d Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/touchpad.png differ diff --git a/docs/userguide/pt_BR/images/prefs-images/virtualmemory.png b/docs/userguide/pt_BR/images/prefs-images/virtualmemory.png new file mode 100644 index 0000000000..19f66bcb1c Binary files /dev/null and b/docs/userguide/pt_BR/images/prefs-images/virtualmemory.png differ diff --git a/docs/userguide/pt_BR/images/processcontroller-images/applet.png b/docs/userguide/pt_BR/images/processcontroller-images/applet.png new file mode 100644 index 0000000000..6bb61d3151 Binary files /dev/null and b/docs/userguide/pt_BR/images/processcontroller-images/applet.png differ diff --git a/docs/userguide/pt_BR/images/processcontroller-images/memory.png b/docs/userguide/pt_BR/images/processcontroller-images/memory.png new file mode 100644 index 0000000000..e2b7e4f4de Binary files /dev/null and b/docs/userguide/pt_BR/images/processcontroller-images/memory.png differ diff --git a/docs/userguide/pt_BR/images/processcontroller-images/priority.png b/docs/userguide/pt_BR/images/processcontroller-images/priority.png new file mode 100644 index 0000000000..c40c0b0678 Binary files /dev/null and b/docs/userguide/pt_BR/images/processcontroller-images/priority.png differ diff --git a/docs/userguide/pt_BR/images/processcontroller-images/quit.png b/docs/userguide/pt_BR/images/processcontroller-images/quit.png new file mode 100644 index 0000000000..497b1801db Binary files /dev/null and b/docs/userguide/pt_BR/images/processcontroller-images/quit.png differ diff --git a/docs/userguide/pt_BR/images/queries-images/basic-query.png b/docs/userguide/pt_BR/images/queries-images/basic-query.png new file mode 100644 index 0000000000..4fb4306de2 Binary files /dev/null and b/docs/userguide/pt_BR/images/queries-images/basic-query.png differ diff --git a/docs/userguide/pt_BR/images/queries-images/formula-query.png b/docs/userguide/pt_BR/images/queries-images/formula-query.png new file mode 100644 index 0000000000..23f94c790d Binary files /dev/null and b/docs/userguide/pt_BR/images/queries-images/formula-query.png differ diff --git a/docs/userguide/pt_BR/images/queries-images/query-window-filled.png b/docs/userguide/pt_BR/images/queries-images/query-window-filled.png new file mode 100644 index 0000000000..a11ac49515 Binary files /dev/null and b/docs/userguide/pt_BR/images/queries-images/query-window-filled.png differ diff --git a/docs/userguide/pt_BR/images/queries-images/query-window.png b/docs/userguide/pt_BR/images/queries-images/query-window.png new file mode 100644 index 0000000000..6d38e807ee Binary files /dev/null and b/docs/userguide/pt_BR/images/queries-images/query-window.png differ diff --git a/docs/userguide/pt_BR/images/queries-images/result-window.png b/docs/userguide/pt_BR/images/queries-images/result-window.png new file mode 100644 index 0000000000..a45f9a70fd Binary files /dev/null and b/docs/userguide/pt_BR/images/queries-images/result-window.png differ diff --git a/docs/userguide/pt_BR/images/teammonitor-images/teammonitor.png b/docs/userguide/pt_BR/images/teammonitor-images/teammonitor.png new file mode 100644 index 0000000000..26fed82446 Binary files /dev/null and b/docs/userguide/pt_BR/images/teammonitor-images/teammonitor.png differ diff --git a/docs/userguide/pt_BR/images/tracker-images/drill-down.png b/docs/userguide/pt_BR/images/tracker-images/drill-down.png new file mode 100644 index 0000000000..74d1e1caf6 Binary files /dev/null and b/docs/userguide/pt_BR/images/tracker-images/drill-down.png differ diff --git a/docs/userguide/pt_BR/images/tracker-images/get-info.png b/docs/userguide/pt_BR/images/tracker-images/get-info.png new file mode 100644 index 0000000000..fc9e493c82 Binary files /dev/null and b/docs/userguide/pt_BR/images/tracker-images/get-info.png differ diff --git a/docs/userguide/pt_BR/images/tracker-images/mount-settings.png b/docs/userguide/pt_BR/images/tracker-images/mount-settings.png new file mode 100644 index 0000000000..fbf85dd2b6 Binary files /dev/null and b/docs/userguide/pt_BR/images/tracker-images/mount-settings.png differ diff --git a/docs/userguide/pt_BR/images/tracker-images/new-menu.png b/docs/userguide/pt_BR/images/tracker-images/new-menu.png new file mode 100644 index 0000000000..09189af74b Binary files /dev/null and b/docs/userguide/pt_BR/images/tracker-images/new-menu.png differ diff --git a/docs/userguide/pt_BR/images/tracker-images/open-with-preferred.png b/docs/userguide/pt_BR/images/tracker-images/open-with-preferred.png new file mode 100644 index 0000000000..869ef8da90 Binary files /dev/null and b/docs/userguide/pt_BR/images/tracker-images/open-with-preferred.png differ diff --git a/docs/userguide/pt_BR/images/tracker-images/open-with.png b/docs/userguide/pt_BR/images/tracker-images/open-with.png new file mode 100644 index 0000000000..42715557a1 Binary files /dev/null and b/docs/userguide/pt_BR/images/tracker-images/open-with.png differ diff --git a/docs/userguide/pt_BR/images/tracker-images/tracker-preferences-navigator.png b/docs/userguide/pt_BR/images/tracker-images/tracker-preferences-navigator.png new file mode 100644 index 0000000000..68bf5a6cec Binary files /dev/null and b/docs/userguide/pt_BR/images/tracker-images/tracker-preferences-navigator.png differ diff --git a/docs/userguide/pt_BR/images/tracker-images/transaction-status.png b/docs/userguide/pt_BR/images/tracker-images/transaction-status.png new file mode 100644 index 0000000000..8799bc6af7 Binary files /dev/null and b/docs/userguide/pt_BR/images/tracker-images/transaction-status.png differ diff --git a/docs/userguide/pt_BR/images/tracker-images/window-drill-down.png b/docs/userguide/pt_BR/images/tracker-images/window-drill-down.png new file mode 100644 index 0000000000..fb0103d6db Binary files /dev/null and b/docs/userguide/pt_BR/images/tracker-images/window-drill-down.png differ diff --git a/docs/userguide/pt_BR/images/tracker-images/window-menu.png b/docs/userguide/pt_BR/images/tracker-images/window-menu.png new file mode 100644 index 0000000000..cffa41cd33 Binary files /dev/null and b/docs/userguide/pt_BR/images/tracker-images/window-menu.png differ diff --git a/docs/userguide/pt_BR/images/tracker-images/window-type-ahead.png b/docs/userguide/pt_BR/images/tracker-images/window-type-ahead.png new file mode 100644 index 0000000000..9197002fe0 Binary files /dev/null and b/docs/userguide/pt_BR/images/tracker-images/window-type-ahead.png differ diff --git a/docs/userguide/pt_BR/images/workshop-email-images/browsing.png b/docs/userguide/pt_BR/images/workshop-email-images/browsing.png new file mode 100644 index 0000000000..9713e0fdfb Binary files /dev/null and b/docs/userguide/pt_BR/images/workshop-email-images/browsing.png differ diff --git a/docs/userguide/pt_BR/images/workshop-email-images/daemon-in-deskbar.png b/docs/userguide/pt_BR/images/workshop-email-images/daemon-in-deskbar.png new file mode 100644 index 0000000000..853d6bd582 Binary files /dev/null and b/docs/userguide/pt_BR/images/workshop-email-images/daemon-in-deskbar.png differ diff --git a/docs/userguide/pt_BR/images/workshop-email-images/query-1.png b/docs/userguide/pt_BR/images/workshop-email-images/query-1.png new file mode 100644 index 0000000000..e093383948 Binary files /dev/null and b/docs/userguide/pt_BR/images/workshop-email-images/query-1.png differ diff --git a/docs/userguide/pt_BR/images/workshop-email-images/query-2.png b/docs/userguide/pt_BR/images/workshop-email-images/query-2.png new file mode 100644 index 0000000000..b1d2a5f85e Binary files /dev/null and b/docs/userguide/pt_BR/images/workshop-email-images/query-2.png differ diff --git a/docs/userguide/pt_BR/images/workshop-email-images/query-3.png b/docs/userguide/pt_BR/images/workshop-email-images/query-3.png new file mode 100644 index 0000000000..39d4506715 Binary files /dev/null and b/docs/userguide/pt_BR/images/workshop-email-images/query-3.png differ diff --git a/docs/userguide/pt_BR/images/workshop-email-images/query-4.png b/docs/userguide/pt_BR/images/workshop-email-images/query-4.png new file mode 100644 index 0000000000..8ecd8de316 Binary files /dev/null and b/docs/userguide/pt_BR/images/workshop-email-images/query-4.png differ diff --git a/docs/userguide/pt_BR/images/workshop-email-images/status.png b/docs/userguide/pt_BR/images/workshop-email-images/status.png new file mode 100644 index 0000000000..e425361ba7 Binary files /dev/null and b/docs/userguide/pt_BR/images/workshop-email-images/status.png differ diff --git a/docs/userguide/pt_BR/images/workshop-filetypes+attributes-images/filetype-extra-attribute.png b/docs/userguide/pt_BR/images/workshop-filetypes+attributes-images/filetype-extra-attribute.png new file mode 100644 index 0000000000..d957d697cf Binary files /dev/null and b/docs/userguide/pt_BR/images/workshop-filetypes+attributes-images/filetype-extra-attribute.png differ diff --git a/docs/userguide/pt_BR/images/workshop-filetypes+attributes-images/filetypes-dvddb-empty.png b/docs/userguide/pt_BR/images/workshop-filetypes+attributes-images/filetypes-dvddb-empty.png new file mode 100644 index 0000000000..d9e5b8bcce Binary files /dev/null and b/docs/userguide/pt_BR/images/workshop-filetypes+attributes-images/filetypes-dvddb-empty.png differ diff --git a/docs/userguide/pt_BR/images/workshop-filetypes+attributes-images/filetypes-dvddb.png b/docs/userguide/pt_BR/images/workshop-filetypes+attributes-images/filetypes-dvddb.png new file mode 100644 index 0000000000..5411fdfe99 Binary files /dev/null and b/docs/userguide/pt_BR/images/workshop-filetypes+attributes-images/filetypes-dvddb.png differ diff --git a/docs/userguide/pt_BR/images/workshop-filetypes+attributes-images/filetypes-new-file-type.png b/docs/userguide/pt_BR/images/workshop-filetypes+attributes-images/filetypes-new-file-type.png new file mode 100644 index 0000000000..97e926f72b Binary files /dev/null and b/docs/userguide/pt_BR/images/workshop-filetypes+attributes-images/filetypes-new-file-type.png differ diff --git a/docs/userguide/pt_BR/images/workshop-filetypes+attributes-images/query-dvddb.png b/docs/userguide/pt_BR/images/workshop-filetypes+attributes-images/query-dvddb.png new file mode 100644 index 0000000000..7897ca38df Binary files /dev/null and b/docs/userguide/pt_BR/images/workshop-filetypes+attributes-images/query-dvddb.png differ diff --git a/docs/userguide/pt_BR/images/workshop-wlan-images/join-network.png b/docs/userguide/pt_BR/images/workshop-wlan-images/join-network.png new file mode 100644 index 0000000000..2fedecda91 Binary files /dev/null and b/docs/userguide/pt_BR/images/workshop-wlan-images/join-network.png differ diff --git a/docs/userguide/pt_BR/images/workshop-wlan-images/join-status.gif b/docs/userguide/pt_BR/images/workshop-wlan-images/join-status.gif new file mode 100644 index 0000000000..dea116d418 Binary files /dev/null and b/docs/userguide/pt_BR/images/workshop-wlan-images/join-status.gif differ diff --git a/docs/userguide/pt_BR/images/workspaces-images/workspaces.png b/docs/userguide/pt_BR/images/workspaces-images/workspaces.png new file mode 100644 index 0000000000..015f05aa31 Binary files /dev/null and b/docs/userguide/pt_BR/images/workspaces-images/workspaces.png differ diff --git a/docs/userguide/pt_BR/index.html b/docs/userguide/pt_BR/index.html new file mode 100644 index 0000000000..96b538299a --- /dev/null +++ b/docs/userguide/pt_BR/index.html @@ -0,0 +1,167 @@ + + + + + + + + + Índice + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    Índice

    + +

    Attributes and Queries are key features of Haiku. While attributes are useful on their own, to display additional information on a file, for a query on them, they need to be indexed. It puts them into a lookup table, which in turn makes queries lightning fast.
    +The index is part of the filesystem and is kept for every volume/partition separately.

    + +

    +Indexing commands in Terminal

    +

    There are several commands to manage the index:

    +
      +
    • lsindex - Displays the indexed attributes on the current volume/partition.
      +These are the attributes that are indexed by default:
    • +
    +
     ~ ->lsindex 
    +BEOS:APP_SIG 
    +MAIL:account 
    +MAIL:cc 
    +MAIL:chain 
    +MAIL:draft 
    +MAIL:flags 
    +MAIL:from 
    +MAIL:name 
    +MAIL:pending_chain 
    +MAIL:priority 
    +MAIL:reply 
    +MAIL:status 
    +MAIL:subject 
    +MAIL:thread 
    +MAIL:to 
    +MAIL:when 
    +META:address 
    +META:city 
    +META:company 
    +META:country 
    +META:email 
    +META:fax 
    +META:group 
    +META:hphone 
    +META:name 
    +META:nickname 
    +META:state 
    +META:url 
    +META:wphone 
    +META:zip 
    +_signature 
    +_status 
    +_trk/qrylastchange 
    +_trk/recentQuery 
    +be:deskbar_item_status 
    +last_modified 
    +name 
    +size 
    +
    +
      +
    • mkindex - Adds an attribute to the index of a volume/partition.
    • +
    +
    Usage: mkindex [options] <attribute> 
    +Creates a new index for the specified attribute. 
    + 
    +  -d, --volume=PATH     a path on the volume to which the index will be added, 
    +                        defaults to current volume. 
    +  -t, --type=TYPE       the type of the attribute being indexed.  One of "int", 
    +                        "llong", "string", "float", or "double". 
    +                        Defaults to "string". 
    +      --copy-from       path to volume to copy the indexes from. 
    +  -v, --verbose         print information about the index being created 
    +
    +
    +

    Only new files with that attribute come automatically into the index!
    +Existing files have to be added manually by copying them and deleting the originals after that. Alternatively you can use the command reindex. +

    +
      +
    • reindex - Puts the attributes of existing files into the newly created index of a volume/partition.
    • +
    +
    Usage: reindex [-rvf] attr <list of filenames and/or directories> 
    +  -r    enter directories recursively
    +  -v    verbose output
    +  -f    create/update all indices from the source volume,
    +        "attr" is the path to the source volume
    +
    +
    +
      +
    • rmindex - Removes an attribute from the index of a volume/partition.
    • +
    +
    Usage: rmindex [OPTION]... INDEX_NAME 
    + 
    +Removes the index named INDEX_NAME from a disk volume.  Once this has been 
    +done, it will no longer be possible to use the query system to search for 
    +files with the INDEX_NAME attribute. 
    + 
    +  -d, --volume=PATH     a path on the volume from which the index will be 
    +                         removed 
    +  -h, --help            display this help and exit 
    +  -p, --pattern         INDEX_NAME is a pattern 
    +  -v, --verbose         print information about the index being removed 
    + 
    +INDEX_NAME is the name of a file attribute. 
    + 
    +If no volume is specified, the volume of the current directory is assumed.
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/keyboard-shortcuts.html b/docs/userguide/pt_BR/keyboard-shortcuts.html new file mode 100644 index 0000000000..30b06e7dc6 --- /dev/null +++ b/docs/userguide/pt_BR/keyboard-shortcuts.html @@ -0,0 +1,151 @@ + + + + + + + + + Atalhos e combinações de teclas + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    Atalhos e combinações de teclas

    + +

    By default, Haiku's shortcut key, to invoke commands from menus for example, is not the usual CTRL key, but ALT instead. This has historical reasons, because the BeOS was inspired somewhat by MacOS. After you get used to it, it actually has advantages as e.g. ALT C and ALT V integrate seamlessly into the bash shell of the Terminal, where CTRL C quits the running process.

    +

    In any case, you can switch to the maybe more familiar CTRL key in the Keymap preferences. The user guide always describes the default configuration with the command key being ALT.

    +

    If you're in doubt which keys are the OPT or MENU keys on your particular keymap/keyboard-layout, again use the Keymap preferences. There you can see what keystroke is sent when you press a key on your keyboard.

    + +

    +index +Atalhos gerais

    +

    Here's a table of many of the most commonly used shortcuts that are always available, even if there isn't a corresponding menu:

    + + + + + + + + + + + + + + + + + + + + + + +
    ALT FxSwitches to Workspace X (Fx is the function key corresponding to that workspace). Take the active window with you by adding SHIFT
    CTRL ALT / / / Navigates spatially the rows/columns of the available workspaces. Add SHIFT to take the active window with you.
    OPTHolding OPT while dragging a window near another window's tab or border will stack or tile them (see chapter GUI).
    CTRL ALT + left mouseClick and drag with left mouse button to move a window (see chapter GUI).
    CTRL ALT + right mouseClick and drag with right mouse button to resize a window (see chapter GUI).
    CTRL ALT ZZooms a window to an alternative size (maximum size for most applications).
    CTRL ALT MMinimizes the active window.
    CTRL ALT HHides (minimizes) all windows of the active application.
    CTRL ALT FPulls the active window to the front (only applicable with the mouse setting Focus Follows Mouse).
    CTRL ALT BSends the active window to the back.
    CTRL TABHold down to bring up the Twitcher.
    CTRL ALT DELOpens the Team Monitor.
    ALT ESCEnters the menu bar (leave with ESC).
    ALT CCopies the selection to the clipboard.
    ALT XCuts the selection to the clipboard.
    ALT VPastes the clipboard's contents.
    ALT WCloses the active window.
    ALT QQuits an application.
    PRINTTakes a screenshot with zero delay and launches the Screenshot panel.
    SHIFT PRINTTakes a screenshot silently (without opening the panel), while still respecting the last used settings.
    CTRL PRINTAlso takes a screenshot silently with the saved settings, but instead of saving it as a file, it's just copied to the clipboard.
    + +

    +index +Shortcuts for Tracker navigation

    +

    Additionally to the general shortcuts, here are some more for navigating with Tracker:

    + + + + + + + +
    ALT Opens the parent folder.
    ALT or ENTEROpens the selected folder.
    OPTHolding it while opening a folder will automatically close the parent folder. This also works when navigating with the mouse.
    MENUOpens the Deskbar menu (leave with ESC).
    ALT ZUndo last action. The undo history is only limited by the available memory. Note, this only works for actions on the file itself, changed attributes and permission settings can't be undone with this. Also, once a file is removed from Trash it's gone for good.
    ALT SHIFT ZRedo the action you just reverted with ALT Z.
    + +

    +index +Atalhos no Terminal

    + + + + + + + + + + + + + + + + +
    ALT NOpens another Terminal session in a new window.
    ALT TOpens another Terminal session in a new tab.
    ALT 1, 2, 3 ...Switches to the corresponding tab.
    ALT TABSwitches to the next Terminal window.
    SHIFT / Switches to the tab to the left/right.
    ALT SHIFT / Moves the current tab left/right.
    ALT + / -Increase/Decrease font size.
    ALT ENTEREnter/leave fullscreen mode.
    SHIFT / Scrolls the Terminal output up/down one line.
    SHIFT Page↑ / Page↓ Scrolls the Terminal output up/down one page.
    TABTab-completion. After entering a few letters, press TAB once to auto-complete a filename or path. If there is more than one match, it stops where the name starts to differ and you have to provide some more letters to further distinguish them. You can also press TAB twice to have all matches listed.
    / Moves up or down in a history of all previously entered commands.
    CTRL RBash history. All the commands you enter +are stored in the file ~/.bash_history. Press CTRL R and start to enter a command and you'll be provided with the first match from the bash history. Keep pressing CTRL R until you find the right command line and press ENTER to execute it.
    CTRL CStops the currently running command.
    CTRL DCloses the current Terminal session.
    + +

    +index +Outras combinações de teclas

    +

    You can add or remove items to/from a selection by holding down a modifier key while clicking on a entry (or file in case of Tracker).

    + + + +
    SHIFTThis will select everything between the first selected item and the one you click on.
    ALTAdds or removes the item you're clicking on from the selection.
    +

    In a Tracker window, if you just start typing, Tracker scrolls to and selects the file that best fits your incremental search. If there's no file starting with your typed letters, files that contain the search string anywhere in their name or other displayed attributes are selected. This search is not case-sensitive.
    +The letters you type appear at the bottom-left, where normally the number of items is listed. After a second it reverts back and you could start a new incremental search.
    +Instead of jumping to the first occurrence of your search string, Tracker can be configured to filter out all non-matching files. See the topic on type-ahead filtering.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/preferences.html b/docs/userguide/pt_BR/preferences.html new file mode 100644 index 0000000000..a6b28c1538 --- /dev/null +++ b/docs/userguide/pt_BR/preferences.html @@ -0,0 +1,117 @@ + + + + + + + + + Preferências + + + + + + + + +
    +
    + +

    Preferências

    + +

    Embora a filosofia fundamental do Haiku é reduzir as opções e, ao invés disso, ter padrões sensíveis, existem algumas coisas que precisam ser configuradas ou podem ser definidas pela preferência individual. Encontre todas as janelas de diálogo no menu Preferências do Deskbar.

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    iconAparência Configure certos aspectos da interface gráfica.
    iconPlanos de Fundo Defina uma cor ou imagem como plano de fundo da Área de trabalho ou qualquer outra pasta.
    iconTraduções de Dados Definições para todos os formatos de arquivo suportados.
    iconDeskbar Configure o Deskbar.
    iconCorreio eletrônico Configure suas contas de correio.
    iconTipos de Arquivos Adicione, remova e configure tipos de arquivos.
    iconTeclado Configure o atraso e a taxa de repetição de tecla.
    iconMapa de Teclado Defina o mapeamento do seu teclado.
    iconLocalidade Defina a linguagem do seu sistema e sua formatação.
    iconMídia Definições de áudio e vídeo como dispositivos de entrada e saída e o misturador de áudio do sistema.
    iconMouse Configure seu mouse.
    iconRede Configure sua rede.
    iconImpressoras Adicione, remova e configure impressoras.
    iconTela Configure resolução, profundidade, taxa de atualização e número de Workspaces usados.
    iconProtetor de Tela Adicione, remova e configure um protetor de tela.
    iconSons Atribua sons a diferentes eventos do sistema.
    iconData e Hora Defina hora, data e fuso horário.
    iconRastreador (Tracker) Configure o gerenciador de arquivos do Haiku.
    iconTouchpad Configure seu touchpad.
    iconMemória Virtual Defina a quantidade de espaço de troca.
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/preferences/appearance.html b/docs/userguide/pt_BR/preferences/appearance.html new file mode 100644 index 0000000000..237dd7fa0e --- /dev/null +++ b/docs/userguide/pt_BR/preferences/appearance.html @@ -0,0 +1,140 @@ + + + + + + + + + Aparência + + + + + + + + +
    +
    + +

    appearance-icon_64.pngAparência

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/Appearance
    Configurações:~/config/settings/system/app_server/appearance
    +~/config/settings/system/app_server/decorator_settings
    +~/config/settings/system/app_server/fonts
    +

    As preferências de aparência permitem a modificação de certas características visuais do Haiku.

    + +

    +index +Fontes

    +appearance-fonts.png +

    O Haiku define três fontes padrão para diferentes propósitos. Pode-se definir tipos de fontes planas, negrito e fixas e tamanhos que serão utilizados em todo o sistema. Além disso, existe também uma definição separada para aos fontes usadas nos menus.

    + +

    +index +Instalando novas fontes

    +

    Instale novas fontes copiando-as para dentro de suas respectivas pastas de usuário, ou seja /boot/common/data/fonts/ ou /boot/home/config/data/fonts/ (veja o tópico Disposição do sistema de arquivos).

    + +

    +index +Cores

    +appearance-colors.png +

    Na guia Cores, pode-se mudar as cores de diferentes partes da interface de usuário. A cor aceita arrastar e soltar de outros programas, permitindo arrastar cores, por exemplo, do WonderBrush, Icon-O-Matic ou da caixa de diálogo do Papel de Parede.

    + +

    +index +Decoração de janelas

    +appearance-decorators.png +

    Decoração determina a aparência de janelas e todos os elementos da interface de usuário. Atualmente o Haiku vem com apenas uma decoração padrão. Se localizar e instalar outras decorações, pode-se escolher um diferente a partir do menu pop-up.

    + +

    +index +Antisserrilhamento

    +appearance-antialiasing.png +

    A guia Antisserrilhamento oferece diferentes definições sobre como as coisas são renderizadas na tela.

    + +

    +index +Sugestão de glifo

    +

    Uma Sugestão de glifo ativada alinha todas as letras de tal modo que suas bordas verticais e horizontais fiquem exatamente entre dois pixels. O resultado é um contraste perfeito, especialmente ao lidar com preto sobre branco. O texto aparece mais nítido. Existe também uma definição para Apenas fontes monoespaçadas que é especialmente útil em dispositivos com baixa resolução como netbooks. Fontes pequenas podem ficar muito ruins quando a alusão está ligada, mas com esta definição ainda terá a vantagem da alusão para editores de texto e o Terminal.

    +

    Veja a diferença que a alusão produz com estas telas ampliadas:

    + + +
    appearance-glyph-off.png
    Sugestão: desligada
    appearance-glyph-on.png
    Sugestão: ligada
    +

    Deve-se salientar que todas as janelas de Ampliação nesta página são naturalmente processadas com as diferentes opções apresentadas. Então, tenha uma impressão real das definições pela comparação, por exemplo, com o título em negrito da guia amarela ou o texto "33 x 15 @ 8 pixels/pixel".

    + +

    +index +Tipo de antisserrilhamento

    +

    Outra técnica para melhorar a renderização é o Antisserrilhamento, que suporta todos os gráficos vetoriais assim como texto. Ele suaviza as linhas pela mudança de cor de certos pixels. Existem dois métodos para isso:

    +

    Escala de cinza muda a intensidade dos pixels nas bordas.
    +Subpixel LCD faz um trabalho ainda melhor, especialmente com monitores LCD (alta resolução). Ao invés da intensidade de um pixel, Ele muda sua cor, o que move uma borda por uma fração de um pixel, porque telas LCD produzem cada pixel com um componente vermelho, verde e azul.

    +

    Novamente, os dois diferentes métodos com telas ampliadas:

    + + +
    appearance-glyph-off.png
    Escala de cinza, Sugestão: desligada
    appearance-subpixel.png
    Subpixel LCD, Sugestão: desligada
    +

    Antisserrilhamento baseado em subpixel adiciona um suave brilho colorido aos objetos. Algo não tolerado por todos. No Haiku pode-se misturar os dois métodos de antisserrilhamento e encontrar a definição certa pelo uso de um botão deslizante.

    +
    O antisserrilhamento baseado em subpixel em combinação com a sugestão de glifo é objeto de uma patente de software e, por isso, não é disponível por padrão. A depender de em qual parte do mundo resida, poderá ter uma versão desbloqueada. Desculpe-nos por isso. Converse com seu representante.
    +

    Se ativar a sugestão mais a renderização por subpixel LCD pela mudança da fonte e recompilar, esta é a aparência comparada com a sugestão com Escala de cinza:

    + + +
    appearance-glyph-on.png
    Escala de cinza, Sugestão: ligada
    appearance-glyph-on-subpixel.png
    Subpixel LCD, Sugestão: ligada
    +


    +

    Na base da caixa de diálogo estão dois botões:

    + + + +
    Padrão redefine tudo para os valores padrão.
    Reverter traz de volta as definições que estavam ativas quando iniciou as preferências da Aparência.
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/preferences/backgrounds.html b/docs/userguide/pt_BR/preferences/backgrounds.html new file mode 100644 index 0000000000..21916abcd6 --- /dev/null +++ b/docs/userguide/pt_BR/preferences/backgrounds.html @@ -0,0 +1,96 @@ + + + + + + + + + Papel de Parede + + + + + + + + +
    +
    + +

    backgrounds-icon_64.pngPapel de Parede

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/Backgrounds
    Configurações:~/config/settings/system/app_server/workspaces
    +~/config/settings/Backgrounds settings - armazena a posição da janela de diálogo
    +

    Pode-se definir uma cor ou uma imagem como fundo para cada pasta e a Área de Trabalho para cada espaço de trabalho.

    +


    +backgrounds.png +

    O menu do topo especifica se suas mudanças são aplicadas apenas ao espaço de trabalho atual, a todos os espaços de trabalho, uma pasta específica ou como padrão para todas as novas pastas.

    +

    Logo abaixo pode-se atribuir uma imagem ou selecionar Nenhum se deseja simplesmente um fundo colorido. Imagens podem também ser arrastadas e soltas dentro da pré-visualização à esquerda.

    +

    Se estiver utilizando uma imagem, escolha o posicionamento:

    + + + + + +
    Manual permite especificar as coordenadas. Pode-se arrastar a figura em torno da pré-visualização à esquerda ou especificar X e Y manualmente.
    Centralizado centraliza a figura no meio da tela.
    Ajustar para caber amplia a figura sem considerar sua taxa de exibição até preencher a tela.
    Ladrilhado preenche a tela pela repetição da figura.
    +

    Ativar Contorno de rótulo de ícone põe um contorno fino ao redor de rótulos de ícone.

    +

    Se o texto real de um rótulo de ícone é preto ou branco depende da configuração do seletor de cores. Uma cor escura define o texto para branco, uma cor clara, para preto. Então, se atribuir uma imagem muito brilhante para o fundo, deverá também definir o seletor de cores para uma cor mais brilhante de maneira a ter rótulos de ícone legíveis em preto. (Ou utilizar a opção de contorno acima.)
    +A cor selecionada é também refletida em Miniaplicativo dos Espaços de Trabalho, o qual ignora imagens como fundos.

    + + + +
    Reverter traz de volta as definições que estavam ativas quando iniciou as preferências de Papel de Parede.
    Aplicar define suas mudanças.
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/preferences/datatranslations.html b/docs/userguide/pt_BR/preferences/datatranslations.html new file mode 100644 index 0000000000..20e3e0376a --- /dev/null +++ b/docs/userguide/pt_BR/preferences/datatranslations.html @@ -0,0 +1,106 @@ + + + + + + + + + DataTranslations + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    datatranslations-icon_64.pngDataTranslations

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/DataTranslations
    Configurações:~/config/settings/* - Every Translator creates its own settings file here after you've changes its defaults.
    +~/config/settings/system/DataTranslations settings - Stores the panel's window position.
    +

    Every application has the ability to open and save every file format for which there's a Translator installed. The settings for these Translators are configured in the DataTranslations preferences.

    +


    +datatranslations.png +

    Depending on its capabilities, each Translator offers different settings. At least you'll get an Info... button that opens a window with the credits and the installation path.
    +The following table gives an overview of the default Translators and their most useful options.

    + + + + + + + + + + + + + + + + +
    BMP images24bit, uncompressed, no transparency
    EXR imagesILM's high dynamic-range (HDR) format
    GIF images8bit, lossless compression, transparency
    +You can reduce the filesize by limiting the number of used colors and the palette.
    +You can write images with transparency, either by automatically using the alpha channel or by setting the RGB value that will be transparent by hand.
    JPEG2000 images24bit, compressed, no transparency
    +Here, you normally only care about the output quality.
    JPEG images24bit, compressed, no transparency
    +Besides the output quality you can also set a smoothing that will lessen compression artefacts but can blur the picture a little.
    PCX images24bit, uncompressed, no transparency, PC Paintbrush Exchange format
    PNG images32bit, lossless compression, transparency
    PPM images24bit, uncompressed, no transparency, Portable PixMap format
    RAW imagesup to 48bit, uncompressed, no transparency
    RTF text filesFormatted text
    SGI images24bit, optional lossless compression, transparency
    StyledEdit filesFormatted text
    TGA images32bit, optional lossless compression, transparency
    TIFF images24bit, optional lossless compression, layers, transparency
    WonderBrush images32bit, layers, transparency, vector/pixel data
    +


    +
    Screenshots, charts, black&white drawings and other images with few used colors, as well as small pictures are best saved as GIF (up to 256 colors) or PNG (millions of colors). JPEG, for example, introduces compression artefacts without gain in smaller filesize.
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/preferences/deskbar.html b/docs/userguide/pt_BR/preferences/deskbar.html new file mode 100644 index 0000000000..a76d372787 --- /dev/null +++ b/docs/userguide/pt_BR/preferences/deskbar.html @@ -0,0 +1,81 @@ + + + + + + + + + Deskbar + + + + + + + + +
    +
    + +

    deskbar-icon_64.pngDeskbar

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/Deskbar
    Configurações:~/config/settings/Deskbar_settings
    +~/config/settings/Deskbar_security_code
    +


    +

    A caixa de diálogo de preferências do Deskbar está disponível também a partir do Deskbar. Suas definições são discutidas no tópico Deskbar.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/preferences/e-mail.html b/docs/userguide/pt_BR/preferences/e-mail.html new file mode 100644 index 0000000000..f0d2ea0e05 --- /dev/null +++ b/docs/userguide/pt_BR/preferences/e-mail.html @@ -0,0 +1,237 @@ + + + + + + + + + Correio Eletrônico + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + + + + +
    Índice
    + Criando uma nova conta de correio
    + Definições de conta
    + Configurando a entrada de correio
    + Configurando a saída de correio
    + Notificações e filtros de correio
    + Configurando um Serviço de Correio +
    + +

    e-mail-icon_64.pngCorreio Eletrônico

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/E-mail
    Configurações:~/config/settings/Mail/*
    +

    Haiku provides a system that retrieves e-mail regularly via a Mail Service (also known as mail_daemon) and saves each mail as a single text file. It parses the mail and fills its attributes with all necessary header information, like from, to, subject and its unread status. Now it can be queried by you or any application. This system also makes switching e-mail clients easy as all the data and your configuration stays the same.
    +The configuration is done in the E-Mail preference panel.

    + +

    +index +Criando uma nova conta de correio

    +

    Let's go through the process of setting up an e-mail account.
    +You start by clicking the Add button to create a new, unnamed account. This opens a panel where you fill in your account info:

    +e-mail-new-account.png +

    First, you set how you get your mail, via POP3 or IMAP.

    +

    Now you enter your E-mail address, Login name and Password, give an Account name under which it will be known under Haiku and your Real name.

    +

    If your account is from a major e-mail provider, Haiku already knows all technical details like server IP addresses. If that is not the case, clicking Next will open another window to enter this information by hand:

    +e-mail-new-account-2.png +

    You first set the Server name, Login type and Connection type for the incoming mail, below that for the outgoing mail. You should find the necessary information on your email provider's website.
    +See below for more info about the various settings and additional options.

    + +

    +index +Definições de conta

    +

    By selecting the name of an account in the left list, you can change some general settings:

    +e-mail-accounts.png +

    The Account name is the name that's shown for example in the list of accounts in the E-mail preferences. Real name is the name someone sees when she gets mail from you. Return address is the email address that is used when someone replies to your mail. Normally that is the same address you've sent your email from.

    +

    If you'd like to use an email account to only send or only receive email, you can de/activate that usage by right-clicking the account's name in the leftside list to set the checkmarks accordingly.

    + +

    +index +Mais sobre configurar a entrada de correio

    +

    Click on Incoming under your account's name to set up how e-mails are received.

    +e-mail-in.png +

    First is the Mail server address for incoming mails. If your provider needs you to log into a specific port, you add that to the address, separated by a colon. For example, pop.your-provider.org:1400.

    +

    Then you enter your login information, Login name and Password, and if necessary change the Login type from the default Plain text to APOP for authentication.

    +

    If you use POP3 and retrieve mails of this account from different computers, you may want to activate the option to Leave mail on server and only Remove mail from server when deleted locally.

    +

    If you use IMAP instead, you have the option to Remove mail from server when deleted locally. You can specify IMAP folders to only synchronize with a specific folder and its subfolders.

    +

    Also, you can opt to only Partially download messages larger than a certain size. This will only get the header and you can decide if you want to download the rest of the message plus possible attachments after seeing the subject and who sent it. Useful if you have a slow connection.

    +

    You can change the Destination of your inbox (default: /boot/home/mail/in/), which is useful if you'd like to separate the mails from different accounts into their own folders. However, queries let you sort things out just as well.

    + + +

    +index +Mais sobre configurar a saída de correio

    +

    Click on Outgoing under your account's name to set up how e-mails are sent.

    +e-mail-out.png +

    First is the SMTP server address for outgoing mails. As with the incoming server before, you can use a specific port if needed, e.g. mail.your-provider.org:1200.

    +

    If you need to login, you change the Login Type to ESMTP and enter username and password above. The other type is used for providers that need you to check for mail with POP3 before SMTP for identification.

    +

    As with incoming mail, you can also change the Destination of your outbox (default: /boot/home/mail/out/).

    + +

    +index +Notificações e outros filtros de correio

    +

    Notifications for newly arrived email and methods to sort and filter emails are found in E-Mail filters under an account's name. You can add any number of filters that are applied one after the other and rearrange them by drag&dropping them to their new position.
    +Currently there are three Incoming mail filters you can add. After adding a filter, you have to select it to see its options.

    + +

    +index +Filtro de Spam (AGMS Bayesiano)

    +e-mail-filter-spam.png +

    The spam filter uses statistical methods to classify a mail as unwanted spam. It assigns a value between 0 and 1 to it and you can decide what are the limits for a genuine mail and what will be considered spam.
    +You can have that spam rating added to the start of the subject.
    +Also, the spam filter can learn from all incoming e-mail. Of course, you'll have to teach it by sorting out the false positives, mails that were mistakenly marked as spam. You'll find more on that when we discuss the application Mail.

    +

    Together with the following Rule filter, you're able to automatically sort out detected spam mails.

    + +

    +index +Filtro de regra

    +e-mail-filter-header.png +

    This filter compares the mail header to a search pattern and performs some action according to the rules you set up.
    + With the first text field you specify which header to check against. These are available:

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Nome the name of the sender
    De the e-mail address of the sender
    Para your e-mail address (different for each e-mail account)
    Responder para the e-mail address replies are sent to
    Quando the date and time the mail was received
    Assunto the subject line
    Com cópia para addresses of anyone receiving a carbon copy (Cc)
    Conta the name of the e-mail's account
    Status The current status of the e-mail. Normally, this can be "Read", "Replied", "Sent", "Forwarded", "New", or anything you have defined yourself. However, unless you change it yourself in a filter, it will always be "New" after the Mail Service fetched the mail.
    Prioridade is set by the sender's e-mail program (e.g. "urgent")
    Tarefa essentially the same as "Subject", but without things like Re: or Fwd:
    Grupo de classificação depending on what the spam filter classified it as, this will either be empty (if uncertain) or contain the word "Genuine" or "Spam"
    Estimativa de Spam/Genuíno this is a numerical estimate that the spam filter assigned to the e-mail. They are shown in scientific notation, where 1.065e-12 translates to 1.065 divided by 10 to the 12th power, which in this case translates to 0.000000000001065.
    +

    The second text field holds your search pattern. It accepts regular expressions which gives it great flexibility, while unfortunately complicating things a bit. Read up on it a bit, it's well worth it and simple search patterns aren't that complicated at all.

    +

    With the pop-up menu below it, you assign an action when the pattern matches. You can move or delete a mail, set the status to "Read" or anything else or set the e-mail account you'll reply with.

    + +

    +index +Notificação de novos correios

    +e-mail-filter-notification.png +

    There are several ways you can choose to be notified of newly arrived email. Under Method you find a number of options that can be combined as well:

    + + + + + + + + + + + + + + + +
    none No notification
    Beep Plays the sound file of the "New E-mail" event set in the Sounds preferences for every new email
    Alert Shows an alert window for every new email
    Keyboard LEDs Blinks some LEDs like the caps-lock indicator
    Central alert Shows one alert window for all new mails
    Central beep Plays the sound file of the "New E-mail" event set in the Sounds preferences once for new mail
    Log window Shows the log window
    + +

    +index +Filtros de Saída de Correio

    +

    At this moment, there's only one filter that deals with outgoing mail: fortune. +
    It will attach a randomly chosen funny or wise "fortune cookie" to the end of every mail before it's sent out. You can do a dry run by issuing the command fortune in a Terminal.

    + +

    +index +Configurando um Serviço de Correio

    +

    Now that your incoming and outgoing mail servers (and maybe some filters, too), are configured, you have to tell the Mail Service that does all the actual checking and fetching how to do its job.

    +e-mail-settings.png +

    Under Mail checking you configure the interval at which the account's mail server is probed for new mail.
    +If you're on a dial-up connection, you may want to do that Only when dial-up is connected and also Schedule outgoing mail when dial-up is disconnected to avoid dialing automatically in regularly only to check for mail.

    +

    The Mail Service has a status window which you can set to show up Never, While sending, While sending and receiving or Always.

    +

    Make sure to Start mail services on startup or there will be no mail_daemon running to do your bidding...

    +e-mail-mailbox.png +

    Edit mailbox menu... will open the folder /boot/home/config/Mail/Menu Links/. All folders or queries (!) or their links put into this folder will appear in the context menu of the mailbox icon of the Mail Services in the Deskbar tray.

    +

    From that menu, you can also Create new message..., Check for mail now or edit Preferences....

    +

    If you hold down SHIFT when invoking the context menu, you'll get additional commands:

    + + + + + + + +
    Checar apenas por correios Offers a submenu to check only one specific account
    Enviar correios pendentes Allows you to send pending mails without also checking for new mails
    Desligar serviços de correio Quits the whole email infrastructure (mail_daemon)
    +

    The mailbox icon itself shows if there are unread messages (status "New") when there are envelopes inside.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/preferences/filetypes.html b/docs/userguide/pt_BR/preferences/filetypes.html new file mode 100644 index 0000000000..4abd343a62 --- /dev/null +++ b/docs/userguide/pt_BR/preferences/filetypes.html @@ -0,0 +1,79 @@ + + + + + + + + + Tipos de Arquivos + + + + + + + + +
    +
    + +

    filetypes-icon_64.pngTipos de Arquivos

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/FileTypes
    Configurações:~/config/settings/FileTypes settings
    +~/config/settings/beos_mime/* - Armazena todos os tipos MIME como pastas.
    +

    Por favor, consulte o tópico Tipos de arquivos e a oficina Tipos de arquivos, Atributos, Indexação e Consultas que explicam mais sobre esta caixa de diálogo de preferências.

    + +
    +
    + + + + diff --git a/docs/userguide/pt_BR/preferences/fonts.html b/docs/userguide/pt_BR/preferences/fonts.html new file mode 100644 index 0000000000..e3c308343c --- /dev/null +++ b/docs/userguide/pt_BR/preferences/fonts.html @@ -0,0 +1,90 @@ + + + + + + + + + Fonts + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    Since "Fonts" moved into the Appearance panel, this is an outdated page. Do not translate!

    + +

    fonts-icon_64.pngFonts

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/Fonts
    Configurações:~/config/settings/system/app_server/fonts
    +~/config/settings/Font_settings - Stores the panel's window position.
    +


    +fonts.png +

    O Haiku define três fontes padrão para diferentes propósitos. Pode-se definir tipos de fontes planas, negrito e fixas e tamanhos que serão utilizados em todo o sistema. Além disso, existe também uma definição separada para aos fontes usadas nos menus.

    + + + +
    Padrão redefine tudo para os valores padrão.
    Reverter brings back the settings that were active when you started the Fonts preferences.
    + +

    +index +Installing new fonts

    +

    Instale novas fontes copiando-as para dentro de suas respectivas pastas de usuário, ou seja /boot/common/data/fonts/ ou /boot/home/config/data/fonts/ (veja o tópico Disposição do sistema de arquivos).

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/preferences/keyboard.html b/docs/userguide/pt_BR/preferences/keyboard.html new file mode 100644 index 0000000000..32736ae24b --- /dev/null +++ b/docs/userguide/pt_BR/preferences/keyboard.html @@ -0,0 +1,85 @@ + + + + + + + + + Teclado + + + + + + + + +
    +
    + +

    keyboard-icon_64.pngTeclado

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/Keyboard
    Configurações:~/config/settings/Keyboard_settings
    +


    +keyboard.png +

    Defina a taxa de repetição e o atraso até que uma tecla pressionada comece a repetir. Pode-se testar as definições no campo de texto na parte inferior.

    + + + +
    Padrão redefine tudo para os valores padrão.
    Reverter traz de volta as definições que estavam ativas quando iniciou as preferências de Teclado.
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/preferences/keymap.html b/docs/userguide/pt_BR/preferences/keymap.html new file mode 100644 index 0000000000..d71fbd1931 --- /dev/null +++ b/docs/userguide/pt_BR/preferences/keymap.html @@ -0,0 +1,386 @@ + + + + + + + + + Mapa de Teclado + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    keymap-icon_64.pngMapa de Teclado

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/Keymap
    Configurações:~/config/settings/Keymap/* - Localização dos mapas de teclado modificados pelo usuário.
    +~/config/settings/Key_map
    +


    +keymap.png +

    À direita, a janela do Mapa de Teclas mostra uma representação do seu teclado. Quando você pressiona uma tecla, o botão correspondente a esta tecla é escurecido e seu respectivo símbolo é inserido no campo de texto Sample and Clipboard na parte inferior. A partir daí, você também pode copiar e colar esse texto em um documento.
    +Assim, as preferências do Mapa de Teclas além de servirem para configurações locais de seu teclado, também são úteis na hora de procurar um símbolo especial usado em outros idiomas. Por exemplo, você pode trocar o mapa de teclas para tcheco ("Czech"), encontrar o "č", e copiá-lo para um e-mail ou um documento. (Embora você possa achar este caractere também em outros mapas de teclas...)

    +

    Ao pressionar teclas modificadoras como SHIFT, CONTROL ou OPTION, temos uma mudança no teclado exibido conforme a tecla modificadora.

    +

    Then there are the keys that are marked with a blue background. These keys are called Dead Keys that can change the key you press after that. If you click on such a blue key with your mouse, those changeable keys light up yellow. Click again and everything's back to normal. Examples are é, ñ, ó or ë.

    +

    Below the keyboard representation are two more options:

    + + + +
    Select dead keys for setting the above mentioned blue keys.
    Switch shortcut key... for using the shortcut key in Windows/Linux mode, i.e. CONTROL (normally CTRL) or Haiku mode, i.e. COMMAND (normally ALT).
    +

    The lists on the left offer the available pre-configured keymaps of the system, and below that, if available, user-defined maps. You can change a keymap via drag&drop in the keyboard representation: a left-click-drag copies a key, a right-click-drag exchanges the two keys.
    +When you're done you can save the result from the menu File | Save.... Your modified map will only appear in the user-defined list if it's stored in ~/config/settings/Keymap/. Otherwise you'll have to manually load it via File | Open....

    +

    To better match the Keymap panel to your physical keyboard, there are several different settings available from the Layout menu.

    +

    The font used in the keyboard representation is set from the Font menu. Note, that it may or may not contain all symbols for a specific keymap.

    +

    Finally, there's a Revert button to bring back the settings that were active when you started the Keymap preferences.

    + +

    +index +Manipulação avançada de mapa de teclado

    +

    There's another method to customize your keymap besides the Keymap preference panel. It involves editing a text file containing loads of hex values, which may appear daunting on first sight, but isn't really that impossible to grasp.

    +

    You can dump the current keymap with a command in Terminal:

    +
    keymap -d > MyKeymap
    +

    The generated text file can then be opened in a text editor. Make sure to use a fixed font in that editor or you'll never grok that file...
    +At the beginning of that file, you'll find a legend of a stylized keyboard with the hex value corresponding to each key. Below that are the actual assignments of every value. You can do all the customizing that's also available from the Keymap preference panel, and then some. If you happen to have some special keys on your keyboard, you may be able to activate them. That is, use them as ordinary keys or like an option or control key. You won't be able to, for example, have your multimedia keys de/increase the volume or start some application. For this you can use e.g. SpicyKeys.

    +

    When you're finished, you'll save the file and have your system load the modified keymap with this command:

    +
    keymap -s < MyKeymap
    +

    If you'd like to import this keymap into the Keymap panel, you have to compile it first to a binary format:

    +
    keymap -c < MyKeymap
    +

    This will produce a file keymap.out which you can load into Keymap via its Open... menu. By the way, the keymap command is able to load this binary format as well: keymap -l < keymap.out

    +

    This is the dumped file (the rightmost keys of the stylized keyboard are cut-off for a nicer display on this page):

    + +
    #!/bin/keymap -s
    +#
    +#	Raw key numbering for 101 keyboard...
    +#                                                                                    
    +#                                                                                    
    +# [esc]       [ f1] [ f2] [ f3] [ f4] [ f5] [ f6] [ f7] [ f8] [ f9] [f10] [f11] [f12]
    +#  0x01        0x02  0x03  0x04  0x05  0x06  0x07  0x08  0x09  0x0a  0x0b  0x0c  0x0d
    +#
    +# [ ` ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 6 ] [ 7 ] [ 8 ] [ 9 ] [ 0 ] [ - ] [ = ] [bck]
    +#  0x11  0x12  0x13  0x14  0x15  0x16  0x17  0x18  0x19  0x1a  0x1b  0x1c  0x1d  0x1e
    +#
    +# [tab] [ q ] [ w ] [ e ] [ r ] [ t ] [ y ] [ u ] [ i ] [ o ] [ p ] [ [ ] [ ] ] [ \ ]
    +#  0x26  0x27  0x28  0x29  0x2a  0x2b  0x2c  0x2d  0x2e  0x2f  0x30  0x31  0x32  0x33
    +#
    +# [cap] [ a ] [ s ] [ d ] [ f ] [ g ] [ h ] [ j ] [ k ] [ l ] [ ; ] [ ' ] [  enter  ]
    +#  0x3b  0x3c  0x3d  0x3e  0x3f  0x40  0x41  0x42  0x43  0x44  0x45  0x46     0x47   
    +#
    +# [shift]     [ z ] [ x ] [ c ] [ v ] [ b ] [ n ] [ m ] [ , ] [ . ] [ / ]     [shift]
    +#   0x4b       0x4c  0x4d  0x4e  0x4f  0x50  0x51  0x52  0x53  0x54  0x55       0x56 
    +#
    +# [ctr]             [cmd]             [  space  ]             [cmd]             [ctr]
    +#  0x5c              0x5d                 0x5e                 0x5f              0x60
    +#
    +#	NOTE: On a Microsoft Natural Keyboard:
    +#			left option  = 0x66
    +#			right option = 0x67
    +#			menu key     = 0x68
    +#	NOTE: On an Apple Extended Keyboard:
    +#			left option  = 0x66
    +#			right option = 0x67
    +#			keypad '='   = 0x6a
    +#			power key    = 0x6b
    +Version = 3
    +CapsLock = 0x3b
    +ScrollLock = 0x0f
    +NumLock = 0x22
    +LShift = 0x4b
    +RShift = 0x56
    +LCommand = 0x5d
    +RCommand = 0x60
    +LControl = 0x5c
    +RControl = 0x00
    +LOption = 0x66
    +ROption = 0x5f
    +Menu = 0x68
    +#
    +# Lock settings
    +# To set NumLock, do the following:
    +#   LockSettings = NumLock
    +#
    +# To set everything, do the following:
    +#   LockSettings = CapsLock NumLock ScrollLock
    +#
    +LockSettings = 
    +# Legend:
    +#   n = Normal
    +#   s = Shift
    +#   c = Control
    +#   C = CapsLock
    +#   o = Option
    +# Key      n        s        c        o        os       C        Cs       Co       Cos     
    +Key 0x00 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x01 = 0x1b     0x1b     0x1b     0x1b     0x1b     0x1b     0x1b     0x1b     0x1b     
    +Key 0x02 = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x03 = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x04 = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x05 = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x06 = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x07 = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x08 = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x09 = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x0a = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x0b = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x0c = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x0d = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x0e = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x0f = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x10 = 0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     0x10     
    +Key 0x11 = '^'      0xc2b0   ''       ' '      ''       '^'      0xc2b0   ' '      ''       
    +Key 0x12 = '1'      '!'      ''       ' '      ''       '!'      '1'      ' '      ''       
    +Key 0x13 = '2'      '"'      ''       0xc2b2   ''       '"'      '2'      0xc2b2   ''       
    +Key 0x14 = '3'      0xc2a7   ''       0xc2b3   ''       0xc2a7   '3'      0xc2b3   ''       
    +Key 0x15 = '4'      '$'      ''       ' '      ''       '$'      '4'      ' '      ''       
    +Key 0x16 = '5'      '%'      ''       ' '      ''       '%'      '5'      ' '      ''       
    +Key 0x17 = '6'      '&'      ''       ' '      ''       '&'      '6'      ' '      ''       
    +Key 0x18 = '7'      '/'      ''       '{'      ''       '/'      '7'      '{'      ''       
    +Key 0x19 = '8'      '('      ''       '['      ''       '('      '8'      '['      ''       
    +Key 0x1a = '9'      ')'      ''       ']'      ''       ')'      '9'      ']'      ''       
    +Key 0x1b = '0'      '='      ''       '}'      ''       '='      '0'      '}'      ''       
    +Key 0x1c = 0xc39f   '?'      ''       '\\'     ''       '?'      0xc39f   '\\'     ''       
    +Key 0x1d = 0xc2b4   '`'      ''       ' '      ''       0xc2b4   '`'      ' '      ''       
    +Key 0x1e = 0x08     0x08     0x08     0x08     0x08     0x08     0x08     0x08     0x08     
    +Key 0x1f = 0x05     0x05     0x05     0x05     0x05     0x05     0x05     0x05     0x05     
    +Key 0x20 = 0x01     0x01     0x01     0x01     0x01     0x01     0x01     0x01     0x01     
    +Key 0x21 = 0x0b     0x0b     0x0b     0x0b     0x0b     0x0b     0x0b     0x0b     0x0b     
    +Key 0x22 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x23 = '/'      '/'      '/'      '/'      '/'      '/'      '/'      '/'      '/'      
    +Key 0x24 = '*'      '*'      '*'      '*'      '*'      '*'      '*'      '*'      '*'      
    +Key 0x25 = '-'      '-'      '-'      '-'      '-'      '-'      '-'      '-'      '-'      
    +Key 0x26 = 0x09     0x09     0x09     0x09     0x09     0x09     0x09     0x09     0x09     
    +Key 0x27 = 'q'      'Q'      0x11     '@'      ''       'Q'      'q'      '@'      ''       
    +Key 0x28 = 'w'      'W'      0x17     ' '      ''       'W'      'w'      ' '      ''       
    +Key 0x29 = 'e'      'E'      0x05     0xe282ac ''       'E'      'e'      0xe282ac ''       
    +Key 0x2a = 'r'      'R'      0x12     ' '      ''       'R'      'r'      ' '      ''       
    +Key 0x2b = 't'      'T'      0x14     ' '      ''       'T'      't'      ' '      ''       
    +Key 0x2c = 'z'      'Z'      0x1a     ' '      ''       'Z'      'z'      ' '      ''       
    +Key 0x2d = 'u'      'U'      0x15     ' '      ''       'U'      'u'      ' '      ''       
    +Key 0x2e = 'i'      'I'      0x09     ' '      ''       'I'      'i'      ' '      ''       
    +Key 0x2f = 'o'      'O'      0x0f     ' '      ''       'O'      'o'      ' '      ''       
    +Key 0x30 = 'p'      'P'      0x10     ' '      ''       'P'      'p'      ' '      ''       
    +Key 0x31 = 0xc3bc   0xc39c   0x1b     ' '      ''       0xc39c   0xc3bc   ' '      ''       
    +Key 0x32 = ' '      '*'      0x1d     '~'      ''       '*'      ' '      '~'      ''       
    +Key 0x33 = '#'      '\''     0x1c     ' '      ''       '\''     '#'      ' '      ''       
    +Key 0x34 = 0x7f     0x7f     0x7f     0x7f     0x7f     0x7f     0x7f     0x7f     0x7f     
    +Key 0x35 = 0x04     0x04     0x04     0x04     0x04     0x04     0x04     0x04     0x04     
    +Key 0x36 = 0x0c     0x0c     0x0c     0x0c     0x0c     0x0c     0x0c     0x0c     0x0c     
    +Key 0x37 = 0x01     '7'      0x01     0x01     '7'      0x01     '7'      0x01     '7'      
    +Key 0x38 = 0x1e     '8'      0x1e     0x1e     '8'      0x1e     '8'      0x1e     '8'      
    +Key 0x39 = 0x0b     '9'      0x0b     0x0b     '9'      0x0b     '9'      0x0b     '9'      
    +Key 0x3a = ' '      ' '      ' '      ' '      ' '      ' '      ' '      ' '      ' '      
    +Key 0x3b = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x3c = 'a'      'A'      0x01     ' '      ''       'A'      'a'      ' '      ''       
    +Key 0x3d = 's'      'S'      0x13     ' '      ''       'S'      's'      ' '      ''       
    +Key 0x3e = 'd'      'D'      0x04     ' '      ''       'D'      'd'      ' '      ''       
    +Key 0x3f = 'f'      'F'      0x06     ' '      ''       'F'      'f'      ' '      ''       
    +Key 0x40 = 'g'      'G'      0x07     ' '      ''       'G'      'g'      ' '      ''       
    +Key 0x41 = 'h'      'H'      0x08     ' '      ''       'H'      'h'      ' '      ''       
    +Key 0x42 = 'j'      'J'      0x0a     ' '      ''       'J'      'j'      ' '      ''       
    +Key 0x43 = 'k'      'K'      0x0b     ' '      ''       'K'      'k'      ' '      ''       
    +Key 0x44 = 'l'      'L'      0x0c     ' '      ''       'L'      'l'      ' '      ''       
    +Key 0x45 = 0xc3b6   0xc396   ''       ' '      ''       0xc396   0xc3b6   ' '      ''       
    +Key 0x46 = 0xc3a4   0xc384   ''       ' '      ''       0xc384   0xc3a4   ' '      ''       
    +Key 0x47 = 0x0a     0x0a     0x0a     0x0a     0x0a     0x0a     0x0a     0x0a     0x0a     
    +Key 0x48 = 0x1c     '4'      0x1c     0x1c     '4'      0x1c     '4'      0x1c     '4'      
    +Key 0x49 = ''       '5'      ''       ''       '5'      ''       '5'      ''       '5'      
    +Key 0x4a = 0x1d     '6'      0x1d     0x1d     '6'      0x1d     '6'      0x1d     '6'      
    +Key 0x4b = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x4c = 'y'      'Y'      0x19     ' '      ''       'Y'      'y'      ' '      ''       
    +Key 0x4d = 'x'      'X'      0x18     ' '      ''       'X'      'x'      ' '      ''       
    +Key 0x4e = 'c'      'C'      0x03     ' '      ''       'C'      'c'      ' '      ''       
    +Key 0x4f = 'v'      'V'      0x16     ' '      ''       'V'      'v'      ' '      ''       
    +Key 0x50 = 'b'      'B'      0x02     ' '      ''       'B'      'b'      ' '      ''       
    +Key 0x51 = 'n'      'N'      0x0e     ' '      ''       'N'      'n'      ' '      ''       
    +Key 0x52 = 'm'      'M'      0x0d     0xc2b5   ''       'M'      'm'      0xc2b5   ''       
    +Key 0x53 = ','      ';'      ','      ' '      ''       ';'      ','      ' '      ''       
    +Key 0x54 = '.'      ':'      '.'      ' '      ''       ':'      '.'      ' '      ''       
    +Key 0x55 = '-'      '_'      ''       ' '      ''       '-'      '_'      ' '      ''       
    +Key 0x56 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x57 = 0x1e     0x1e     0x1e     0x1e     0x1e     0x1e     0x1e     0x1e     0x1e     
    +Key 0x58 = 0x04     '1'      0x04     0x04     '1'      0x04     '1'      0x04     '1'      
    +Key 0x59 = 0x1f     '2'      0x1f     0x1f     '2'      0x1f     '2'      0x1f     '2'      
    +Key 0x5a = 0x0c     '3'      0x0c     0x0c     '3'      0x0c     '3'      0x0c     '3'      
    +Key 0x5b = 0x0a     0x0a     0x0a     0x0a     0x0a     0x0a     0x0a     0x0a     0x0a     
    +Key 0x5c = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x5d = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x5e = ' '      ' '      0x00     ' '      ' '      ' '      ' '      ' '      ' '      
    +Key 0x5f = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x60 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x61 = 0x1c     0x1c     0x1c     0x1c     0x1c     0x1c     0x1c     0x1c     0x1c     
    +Key 0x62 = 0x1f     0x1f     0x1f     0x1f     0x1f     0x1f     0x1f     0x1f     0x1f     
    +Key 0x63 = 0x1d     0x1d     0x1d     0x1d     0x1d     0x1d     0x1d     0x1d     0x1d     
    +Key 0x64 = 0x05     '0'      0x05     0x05     '0'      0x05     '0'      0x05     '0'      
    +Key 0x65 = 0x7f     ','      0x7f     0x7f     ','      0x7f     ','      0x7f     ','      
    +Key 0x66 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x67 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x68 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x69 = '<'      '>'      ''       '|'      ''       '<'      '>'      '|'      ''       
    +Key 0x6a = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x6b = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x6c = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x6d = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x6e = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x6f = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x70 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x71 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x72 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x73 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x74 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x75 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x76 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x77 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x78 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x79 = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x7a = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x7b = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x7c = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x7d = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x7e = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Key 0x7f = ''       ''       ''       ''       ''       ''       ''       ''       ''       
    +Acute ' '       = 0xc2b4   
    +Acute 'A'       = 0xc381   
    +Acute 'E'       = 0xc389   
    +Acute 'I'       = 0xc38d   
    +Acute 'O'       = 0xc393   
    +Acute 'U'       = 0xc39a   
    +Acute 'Y'       = 0xc39d   
    +Acute 'a'       = 0xc3a1   
    +Acute 'e'       = 0xc3a9   
    +Acute 'i'       = 0xc3ad   
    +Acute 'o'       = 0xc3b3   
    +Acute 'u'       = 0xc3ba   
    +Acute 'y'       = 0xc3bd   
    +Acute ''        = ''       
    +Acute ''        = ''       
    +Acute ''        = ''       
    +AcuteTab = Normal Shift Option Option-Shift CapsLock CapsLock-Shift CapsLock-Option CapsLock-Option-Shift 
    +Grave ' '       = '`'      
    +Grave 'A'       = 0xc380   
    +Grave 'E'       = 0xc388   
    +Grave 'I'       = 0xc38c   
    +Grave 'O'       = 0xc392   
    +Grave 'U'       = 0xc399   
    +Grave 'a'       = 0xc3a0   
    +Grave 'e'       = 0xc3a8   
    +Grave 'i'       = 0xc3ac   
    +Grave 'o'       = 0xc3b2   
    +Grave 'u'       = 0xc3b9   
    +Grave ''        = ''       
    +Grave ''        = ''       
    +Grave ''        = ''       
    +Grave ''        = ''       
    +Grave ''        = ''       
    +GraveTab = Normal Shift Option Option-Shift CapsLock CapsLock-Shift CapsLock-Option CapsLock-Option-Shift 
    +Circumflex ' '       = '^'      
    +Circumflex 'A'       = 0xc382   
    +Circumflex 'E'       = 0xc38a   
    +Circumflex 'I'       = 0xc38e   
    +Circumflex 'O'       = 0xc394   
    +Circumflex 'U'       = 0xc39b   
    +Circumflex 'a'       = 0xc3a2   
    +Circumflex 'e'       = 0xc3aa   
    +Circumflex 'i'       = 0xc3ae   
    +Circumflex 'o'       = 0xc3b4   
    +Circumflex 'u'       = 0xc3bb   
    +Circumflex ''        = ''       
    +Circumflex ''        = ''       
    +Circumflex ''        = ''       
    +Circumflex ''        = ''       
    +Circumflex ''        = ''       
    +CircumflexTab = Normal Shift Option Option-Shift CapsLock CapsLock-Shift CapsLock-Option CapsLock-Option-Shift 
    +Diaeresis ' '       = 0xc2a8   
    +Diaeresis 'A'       = 0xc384   
    +Diaeresis 'E'       = 0xc38b   
    +Diaeresis 'I'       = 0xc38f   
    +Diaeresis 'O'       = 0xc396   
    +Diaeresis 'U'       = 0xc39c   
    +Diaeresis 'Y'       = 0xc5b8   
    +Diaeresis 'a'       = 0xc3a4   
    +Diaeresis 'e'       = 0xc3ab   
    +Diaeresis 'i'       = 0xc3af   
    +Diaeresis 'o'       = 0xc3b6   
    +Diaeresis 'u'       = 0xc3bc   
    +Diaeresis 'y'       = 0xc3bf   
    +Diaeresis ''        = ''       
    +Diaeresis ''        = ''       
    +Diaeresis ''        = ''       
    +DiaeresisTab = Normal Shift Option Option-Shift CapsLock CapsLock-Shift CapsLock-Option CapsLock-Option-Shift 
    +Tilde ' '       = '~'      
    +Tilde 'A'       = 0xc383   
    +Tilde 'O'       = 0xc395   
    +Tilde 'N'       = 0xc391   
    +Tilde 'a'       = 0xc3a3   
    +Tilde 'o'       = 0xc3b5   
    +Tilde 'n'       = 0xc3b1   
    +Tilde ''        = ''       
    +Tilde ''        = ''       
    +Tilde ''        = ''       
    +Tilde ''        = ''       
    +Tilde ''        = ''       
    +Tilde ''        = ''       
    +Tilde ''        = ''       
    +Tilde ''        = ''       
    +Tilde ''        = ''       
    +TildeTab = Normal Shift Option Option-Shift CapsLock CapsLock-Shift CapsLock-Option CapsLock-Option-Shift 
    + +
    +
    + + + + + + diff --git a/docs/userguide/pt_BR/preferences/locale.html b/docs/userguide/pt_BR/preferences/locale.html new file mode 100644 index 0000000000..ff8a570625 --- /dev/null +++ b/docs/userguide/pt_BR/preferences/locale.html @@ -0,0 +1,103 @@ + + + + + + + + + Localidade + + + + + + + + +
    +
    + +

    locale-icon_64.pngLocalidade

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/Locale
    Configurações:~/config/settings/Locale settings
    +


    +

    O sistema de localização do Haiku não apenas inclui textos substituídos por suas traduções, mas também tarefas mais complexas tais como formatação de números, datas e horas de um modo que combina com suas preferências de Localidade.

    +
    Se você gostaria de ajudar com traduções ou começar com um idioma atualmente faltante, por favor entre em contato pela Lista de discussão Haiku-i18n.
    +

    +indexIdioma

    +

    O Haiku tem sido traduzido para dezenas de idiomas, infelizmente algumas traduções ainda não estão completas. Por essa razão, pode-se escolher mais de um idioma como "Idiomas preferidos". Se algum texto é perdido na tradução, ele é substituído com as palavras do próximo idioma preferido. O Inglês é a reserva padrão (mesmo quando não está listado).

    +locale-language.png +

    Neste exemplo, o idioma preferido é ajustado para Espanhol. A primeira reserva é o Italiano e se o texto estiver faltando lá também, ele volta para o padrão em Inglês.
    +Como se pode ver, expandir uma entrada de idioma no lado esquerdo revela subentradas para variações específicas ou dialetos do idioma (se disponíveis).

    +

    +indexFormatação

    +

    Na guia Formatação pode-se definir a formatação de data, hora, número e formatos atuais independentemente das definições de seu idioma preferido.

    +locale-formatting.png +

    Suponhamos que seja um colega espanhol que viva na parte italofalante da Suíça. Então, prefira seu sistema em espanhol, mas os números e moeda formatados como no trabalho: Suíço/Italiano.
    +Se estiver mais confortável com os nomes para dias e meses em espanhol(pensar nas datas modificadas de arquivos, por exemplo), pode-se passar por cima desta formatação específica de tempo com a caixa de verificação no topo para Utilizar nomes de mês/dia do idioma preferido.

    +

    O exemplo acima talvez não seja o cenário mais comum, mas ele demonstra a flexibilidade do sistema.

    +

    +indexOpções

    +

    A última guia oferece uma opção que irá Traduzir nomes de aplicativos e pastas no Deskbar e Rastreador. Desabilite a caixa de verificação se preferir a interface gráfica localizada, enquanto mantém os nomes originais em inglês para caixas de diálogo de preferências, aplicativos e nomes padrão de pastas.

    +


    +

    As mudanças serão aplicadas imediatamente, embora aplicativos atualmente em execução podem precisar ser fechados e reiniciados antes de exibir as novas definições.

    + + + +
    Padrão redefine tudo para os valores padrão.
    Reverter traz de volta as definições que estavam ativas quando iniciou as preferências de Localidade.
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/preferences/media.html b/docs/userguide/pt_BR/preferences/media.html new file mode 100644 index 0000000000..a704a8385c --- /dev/null +++ b/docs/userguide/pt_BR/preferences/media.html @@ -0,0 +1,79 @@ + + + + + + + + + Mídia + + + + + + + + +
    +
    + +

    media-icon_64.pngMídia

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/Media
    Configurações:~/config/settings/Media/*
    +~/config/settings/System Audio Mixer
    +~/config/settings/MediaPrefs Settings - Armazena a posição da janela da caixa de diálogo.
    +

    Documentação ainda está faltando. Se deseja trabalhar nele, por favor anuncie na Lista de discussão de Documentação para evitar duplicação.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/preferences/mouse.html b/docs/userguide/pt_BR/preferences/mouse.html new file mode 100644 index 0000000000..37d1ccf1c7 --- /dev/null +++ b/docs/userguide/pt_BR/preferences/mouse.html @@ -0,0 +1,93 @@ + + + + + + + + + Mouse + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    mouse-icon_64.pngMouse

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/Mouse
    Configurações:~/config/settings/Mouse_settings
    +


    +mouse.png +

    First you set your type of mouse: 1, 2 or 3 button mouse. You can simulate the 2nd (=right) mouse button by holding down CTRL while left-clicking. For the 3rd (=middle) mouse button, it's CTRL ALT and a left-click.

    +

    You can rearrange the mouse buttons by clicking on them and choosing their new meaning from the pop-up menu.

    +

    With the sliders to the right, you adjust double-click speed, mouse speed and acceleration. The test area below the mouse graphics can be used to check if the double-click speed meets your taste: if double-clicking a word doesn't select it, it's set too fast (or you'll have to get used to clicking quicker....

    +

    There are three Focus modes that determine how windows react to clicks:

    + + + + +
    Click to focus and raise This is the default setting: you click a window and it gets focus and is raised to the top.
    Click to focus Clicking a window only gives it the focus, but won't raise it automatically. To do that, you'd have to either click on its title tab or border or click anywhere while holding the window management keys CTRL ALT.
    Focus follows mouseThe window under the mouse pointer automatically gets the focus. Actually raising it, is done as described in the Click to focus mode.
    +

    Activating Accept first click relieves you of having to first put the focus on an inactive window in order to trigger widgets like a button or menu. This bears the risk of unintentionally closing a window, for example, by accidentally hitting the close button when aiming for the window tab. On the other hand it speeds up your workflow considerably.

    +

    All settings are immediately applied.

    + + + +
    Padrão redefine tudo para os valores padrão.
    Reverter brings back the settings that were active when you started the Mouse preferences.
    + +
    +
    + + + + + + diff --git a/docs/userguide/pt_BR/preferences/network.html b/docs/userguide/pt_BR/preferences/network.html new file mode 100644 index 0000000000..cb7d81cd02 --- /dev/null +++ b/docs/userguide/pt_BR/preferences/network.html @@ -0,0 +1,85 @@ + + + + + + + + + Network + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    network-icon_64.pngNetwork

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/Network
    Configurações:/boot/common/settings/network/resolv.conf
    +


    +network.png +

    At the top, you choose which network adapter to configure.

    +

    Then you specify if you get your network automatically (via DHCP) or if you're using static addresses. If it's the latter, you'll have to fill out IP Address, Netmask, Gateway and DNS Servers yourself. Otherwise the panel will show the addresses currently set with DHCP.

    + + + +
    Reverter brings back the settings that were active when you started the Network preferences.
    Aplicar sets the entered configuration.
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/preferences/printers.html b/docs/userguide/pt_BR/preferences/printers.html new file mode 100644 index 0000000000..47f7ec374c --- /dev/null +++ b/docs/userguide/pt_BR/preferences/printers.html @@ -0,0 +1,79 @@ + + + + + + + + + Impressoras + + + + + + + + +
    +
    + +

    printers-icon_64.pngImpressoras

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/Printers
    Configurações:~/config/settings/printers/*
    +

    Documentação ainda está faltando. Se deseja trabalhar nele, por favor anuncie na Lista de discussão de Documentação para evitar duplicação.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/preferences/screen.html b/docs/userguide/pt_BR/preferences/screen.html new file mode 100644 index 0000000000..bc3f3051fa --- /dev/null +++ b/docs/userguide/pt_BR/preferences/screen.html @@ -0,0 +1,88 @@ + + + + + + + + + Screen + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    screen-icon_64.pngScreen

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/Screen
    Configurações:~/config/settings/system/app_server/workspaces
    +~/config/settings/kernel/drivers/vesa - Only when running in VESA mode.
    +~/config/settings/Screen_data - Stores the panel's window position.
    +

    Cada um de seus workspaces pode ter sua própria resolução, profundidade de cor e taxa de atualização.

    +screen.png +

    The top menu specifies if your changes are applied only to the current or to all workspaces. Depending on your graphics card, the other menus contain all supported resolution, color depth and refresh rate settings.

    +

    After clicking on Apply, the graphics mode is changed and an alert appears, asking you to keep or cancel the changes. If you don't answer that alert, the graphics mode reverts after 12 seconds to the previous setting. Maybe you couldn't see the alert because your monitor didn't support the setting.

    +

    To the left, you see a representation of your screen with the manufacturer and model it reports and it's resolution in dots per inch (dpi). Hovering the mouse pointer over it shows a tooltip with the name of graphics card if it's supported by a driver. Otherwise it says "VESA", the quick fallback solution that works with pretty much every hardware.

    +

    Revert brings back the setting that was active when you started the Screen preferences.

    +
    While Haiku's VESA mode performs very well, you may experience some limitations. You may not be able to drive your widescreen display in its native resolution, resulting in a somewhat blurred picture. There may also be limitations with regard to available color depths and refresh rates.
    +

    To the bottom left you can set the number of workspaces and arrange them in columns and rows and open the Backgrounds preferences.

    + +
    +
    + + + + + + diff --git a/docs/userguide/pt_BR/preferences/screensaver.html b/docs/userguide/pt_BR/preferences/screensaver.html new file mode 100644 index 0000000000..edc0062e75 --- /dev/null +++ b/docs/userguide/pt_BR/preferences/screensaver.html @@ -0,0 +1,100 @@ + + + + + + + + + ScreenSaver + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    +

    screensaver-icon_64.pngScreenSaver

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/Screensaver
    Configurações:~/config/settings/ScreenSaver_settings
    + +

    The panel of the ScreenSaver preferences is split into two tabs: +

    + +

    +index +Fade

    +screensaver-fade.png +
    +

    The top checkbox enables/disables the screen saver.
    +With the slider below it, you control after how long an idle time the screen saver kicks in. +

    +

    The next two sliders are only usable after you activated their checkboxes:
    +One slider determines after how many minutes the screen is powered off.
    +The other, after how many minutes you need a password to unlock your machine. +

    +

    By clicking into different corners of the two screens at the bottom, you tell the system when to immediately start the screen saver or when to prevent it from kicking in when you rest the mouse in the indicated corner. Click in the middle of the screens to disable that feature again. +

    + +

    +index +Screensavers

    +screensaver-modules.png +
    +

    The second tab shows a list of all installed screen savers and their individual settings. You can test your settings with the Test button below the list and add more screen savers with the Add... button beside it. Another way to install new screen savers is by a simple drag&drop into the list. Of course, you can also copy/delete its file in its respective user folder, i.e. /boot/common/add-ons/Screen Savers/ or /boot/home/config/add-ons/Screen Savers/ (see topic Filesystem layout). +

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/preferences/sounds.html b/docs/userguide/pt_BR/preferences/sounds.html new file mode 100644 index 0000000000..513f379435 --- /dev/null +++ b/docs/userguide/pt_BR/preferences/sounds.html @@ -0,0 +1,86 @@ + + + + + + + + + Sons + + + + + + + + +
    +
    + +

    sounds-icon_64.pngSons

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/Sounds
    Configurações:~/config/settings/Media/MMediaFilesManager
    +


    +sounds.png +

    É possível atribuir sons para certos eventos no sistema. Apenas selecione o evento da lista e escolha um som do menu pop-up abaixo.

    + + +
    Nenhum irá silenciar um evento.
    Outro... irá abrir uma caixa de diálogo de arquivo para localizar um novo som que não está ainda no menu.
    +

    É possível usar qualquer formato suportado pelo sistema. Se o Tocador de Mídia pode lidar com ele, então o pode ser por qualquer outro programa.
    +Pode-se também "pré-ouvir" um som de evento selecionando-o e utilizando os botões Tocar e Parar.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/preferences/time.html b/docs/userguide/pt_BR/preferences/time.html new file mode 100644 index 0000000000..106751ee2c --- /dev/null +++ b/docs/userguide/pt_BR/preferences/time.html @@ -0,0 +1,95 @@ + + + + + + + + + Hora + + + + + + + + +
    +
    + +

    time-icon_64.pngHora

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/Time
    Configurações:~/config/settings/RTC_time_settings
    +~/config/settings/timezone - Um vínculo para o fuso horário atual em /boot/system/etc/timezones/*/*
    +~/config/settings/Time_settings - Armazena a posição da janela de diálogo.
    +

    A caixa de diálogo das preferências de Hora é dividido em duas guias:

    + +

    +index +Data e Hora

    +time-time.png +

    No lado esquerdo, podemos definir o dia do mês simplesmente clicando nele no calendário. Mude o mês e o ano clicando nele e usando as setas para baixo / para cima à direita ou as teclas de cursor no teclado.

    +

    Similarmente é definida a hora. Existem dois modos para o relógio:

    + + + +
    Hora local para exibir a hora local.
    GMT para exibir a Hora de Greenwich.
    + +

    +index +Fuso horário

    +time-timezone.png +

    Simplesmente localize e escolha sua localidade a partir do menu pop-up e a lista de cidades e pressione Definir fuso horário para definir seu fuso.

    +

    Reverter retorna as definições que estavam ativas quando iniciadas as preferências de Hora.

    + +
    +
    + + + diff --git a/docs/userguide/pt_BR/preferences/touchpad.html b/docs/userguide/pt_BR/preferences/touchpad.html new file mode 100644 index 0000000000..1b8d5edb69 --- /dev/null +++ b/docs/userguide/pt_BR/preferences/touchpad.html @@ -0,0 +1,96 @@ + + + + + + + + + Touchpad + + + + + + + + +
    +
    + +

    touchpad-icon_64.pngTouchpad

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/Touchpad
    Configurações:~/config/settings/Touchpad_settings
    + +

    Esta janela de diálogo oferece váriaas definições relacionadas ao touchpad que são interessantes quando executando o sistema a partir de um notebook.

    + +touchpad.png + +

    Arrastando as linhas vermelhas verticais ou horizontais na representação do touchpad, definimos a área de rolagem (levemente avermelhada contra a área de toque geral, em cinza). Mover seu dedo naquela parte do touchpad irá mover as barras de rolagem de uma janela conforme o movimento.

    +

    À direita estão controles deslizantes para definir a aceleração de rolagem geral e a velocidade de rolagem vertical e horizontal.
    +A definição de aceleração decide o quão rápido uma lista rola ao se deslizar pela área de rolagem muito rápido. A velocidade de rolagem controla a velocidade geral ao usar a área de rolagem de maneira "normal".

    +

    Abaixo do gráfico do touchpad estão caixas de verificação para disponibilizar "Rolagem com dois dedos" para rolagem vertical e horizontal. Mova dois dedos em parelelo vertical ou horizontalmente para mover as barras de rolagem de uma janela. Ao menos para mim, funciona melhor se com um dedo da mão esquerda e um da mão direita.
    +Caso sinta-se confortável usando esta funcionalidade, pode dispensar a definição de áreas de rolagem e, ao invés disso, utilizar o touchpad inteiro para navegação normal.

    +

    Na base está outro controle deslizante para definir a sensibilidade do clique tocando o touchpad (tapping). Se seus toques continuam sendo ignorados, aumente a sensibilidade. Se o sistema registra cliques o tempo todo, enquanto tudo o que quer é mover o ponteiro do mouse, tente diminuí-la.

    + + + +
    Padrão redefine tudo para os valores padrão.
    Reverter retorna às definições que estavam ativas quando iniciadas as preferências do Touchpad.
    +

    Esta dica não está relacionada às preferências do Touchpad, mas se encaixa no tópico em geral:
    +Você sabia que pode fazer o arrastar e soltar apenas usando o touchpad, ou seja, sem usar os botões? Apenas faça um clique duplo sem levantar o dedo após o segundo clique. O ícone selecionado irá acompanhar o ponteiro do mouse e pode arrastá-lo pelo movimento do seu dedo. Levantar o dedo irá soltar o ícone.

    +

    Se seu dedo alcança a margem do touchpad enquanto arrasta um ícone, mas o ponteiro do mouse ainda não alcançou o fim da tela, como continuar arrastando o ícone? Assim que levantar o dedo, o ícone será solto.
    +Dependendo do seu hardware, existe uma funcionalidade elegante: apenas deixe seu dedo sem levantar na borda do touchpad. O ponteiro do mouse manter-se-á movendo no piloto automático.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/preferences/tracker.html b/docs/userguide/pt_BR/preferences/tracker.html new file mode 100644 index 0000000000..2acf02cd14 --- /dev/null +++ b/docs/userguide/pt_BR/preferences/tracker.html @@ -0,0 +1,81 @@ + + + + + + + + + Rastreador + + + + + + + + +
    +
    + +

    tracker-icon_64.pngRastreador

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/Tracker
    Configurações:~/config/settings/Tracker/TrackerSettings
    +


    +

    A janela de diálogo de preferências do Rastreador está também disponível a partir de toda janela do Rastreador com o menu Janela | Preferências....
    +Suas funções são discutidas no tópico Rastreador.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/preferences/virtualmemory.html b/docs/userguide/pt_BR/preferences/virtualmemory.html new file mode 100644 index 0000000000..a434350890 --- /dev/null +++ b/docs/userguide/pt_BR/preferences/virtualmemory.html @@ -0,0 +1,84 @@ + + + + + + + + + VirtualMemory + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    virtualmemory-icon_64.pngVirtualMemory

    + + + + +
    Deskbar:Preferências
    Localização:/boot/system/preferences/VirtualMemory
    Configurações:~/config/settings/kernel/drivers/virtual_memory
    +~/config/settings/VM_data - Stores the panel's window position.
    +

    Virtual memory let's the system swap out memory to harddisk, if the RAM can be used more sensibly for other things. So, even if you have lots of RAM, providing virtual memory is never a bad idea.

    +virtualmemory.png +

    You can set the size to even more than your physical memory size if needed. With today's huge harddisks, assigning the physical memory size shouldn't be a problem. Still, you can quickly adjust the size if your free space ever runs low. In that case you should also have a look at DiskUsage to find out what's eating up your diskspace.

    +

    Normally, the swap file's written to your boot partition. If you often run into disk thrashing due to the virtual memory system swapping memory in and out, you can try to use a separate harddisk for you swap file. Simply another partition on the same harddisk with your system/data won't help.
    +Upgrading your RAM is of course the most effective way to go...

    + + + +
    Padrão redefine tudo para os valores padrão.
    Reverter brings back the settings that were active when you started the VirtualMemory preferences.
    + +
    +
    + + + + diff --git a/docs/userguide/pt_BR/queries.html b/docs/userguide/pt_BR/queries.html new file mode 100644 index 0000000000..1878a8617a --- /dev/null +++ b/docs/userguide/pt_BR/queries.html @@ -0,0 +1,165 @@ + + + + + + + + + Queries + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + + + + + +
    Índice
    + The Find window
    + Basic queries - "by Name"
    + Advanced queries - "by Attribute"
    + Even more advanced queries - "by Formula"
    + The result window
    + Query Templates +
    + +

    Queries

    + +

    A query is a file search based on file attributes and can be performed within Tracker or in Terminal. Queries are saved in /boot/home/queries/ and by default last seven days before being purged. Note, these aren't static result lists of your search, but are the query formulas which trigger a new search whenever you open them.
    +Even better, you don't have to double-click to re-do a query. You can drill down a saved query just like any folder by right-clicking on it and navigating through the submenus.

    + +

    +index +The Find window

    +

    You start a query by invoking the Find... menu either from the Deskbar menu or any Tracker window or the Desktop (which is actually a fullscreen Tracker window). The shortcut is ALT F. You're presented with the Find window:

    +basic-query.png +
      +
    1. Select recent or saved queries or save the current search parameters as Query Template.

    2. +
    3. Narrow down your search from All files and folders to specific file types.

    4. +
    5. Define the search method:
        +
      • by Name - a basic search by file or folder name
      • +
      • by Attribute - an advanced search, you specify search terms for one or more attributes
      • +
      • by Formula - an even more advanced search, you can fine-tune a complex query term
    6. +
    7. Select which drives to search on.

    8. +
    9. Enter the search term.

    10. +
    11. The expander hides/unhides the additional options.

    12. +
    13. Uncheck the Temporary checkbox if you don't want this query self-destruct after 7 days.

    14. +
    15. Check if your query is supposed to Include trash.

    16. +
    17. Optionally, enter a name for this query if you want to save it.

    18. +
    19. You can drag&drop the icon anywhere to save a query. Doing that with the right mouse button, offers the option to save as template.

    20. +
    + +

    +index +Basic queries - "by Name"

    +

    If you simply want to find all files and folders on your mounted disks that match a certain pattern, simply leave the search method at by Name, enter the search term into the text box and press ENTER.

    + +

    +index +Advanced queries - "by Attribute"

    +

    You can create more advanced queries by searching within the attributes of specific file types. For that to work, these attributes have to be indexed.

    +query-window.png +

    You start by setting the filetype from All files and folders to, for example, Text | E-mail and change the search method to by Attribute.

    +

    This adds a pop-up menu to the left of the textbox and the buttons Add and Remove under that. From the menu you choose which attribute to query. With Add and Remove you can query additional attributes or remove them again. These attributes can be logically linked with AND/OR.

    +

    Let's do an email query as an example:

    +query-window-filled.png +

    This is your Find window when you're looking for all emails Clara Botters has sent to you in the last two months that had in the subject "vibraphone" or "skepticality".
    +As you see, searching through time-based attributes supports some useful phrases: besides for the "last 2 months", you could also use "today", "yesterday", "Monday" or "last Monday" (which would be the Monday last week), or "last 2 minutes/hours/days/weeks".
    +A good way to cut down the number of search results.

    + +

    +index +Even more advanced queries - "by Formula"

    +

    Typing in a formula query by hand is daunting and really quite unpractical. It still has its uses.

    +

    Take the above query by attribute of Clara's mails concerning vibraphones etc. If you have all the attributes and their search terms set, try switching to by Formula mode and be overwhelmed by this one line query string:

    +formula-query.png +

    Once more as text, edited for readability:

    +
    (((((MAIL:from=="*[cC][lL][aA][rR][aA] [bB][oO][tT][tT][eE][rR][sS]*")
    +       &&(MAIL:when>=%2 months%))
    +       &&(MAIL:subject=="*[vV][iI][bB][rR][aA][pP][hH][oO][nN][eE]*"))
    +       ||(MAIL:subject=="*[sS][kK][eE][pP][tT][iI][cC][aA][lL][iI][tT][yY]*"))
    +       &&(BEOS:TYPE=="text/x-email"))
    +

    What's the use?

    +
      +
    • You could copy and paste the string into an email, forum or IRC for others to use or debug.

    • +
    • You can use this method to construct a query in Attribute mode and then switch to Formula mode, to comfortably generate a search string to use for a query in Terminal or a script.

    • +
    • You can fine tune your query by inserting parenthesis where needed, make parts case-sensitive or negate logical combinations by changing. e.g. "==" to "!=" for a NOT AND. All you need is a basic understanding of regular expressions and maybe some scripting basics.

    • +
    + +

    +index +The result window

    +

    After you start a search, the Find window will be replaced by a result window. Here is an example that queried for "server":

    +result-window.png +

    Besides the gray background, result windows work exactly like any other Tracker window. Some things are worth noting:

    +
      +
    • You can open the location of a file or folder by double clicking on its path attribute.

    • +
    • With File | Edit query or ALT G you get back to your Find window to refine your query.

    • +
    • A query is live, i.e. if a file that matches your search criteria appears or disappears from your system, this change is reflected in your results in real-time.

    • +
    +

    You can assign a sensible attribute layout for query results of a specific filetype. Open a folder containing files of the filetype you'd like to create a template for and arrange the attributes how you'd like to have query results presented. Copy this layout with Attributes | Copy layout.

    +

    Open /boot/home/config/settings/Tracker/DefaultQueryTemplates, create a new folder named group/filetype, replacing the slash with an underscore, e.g. "audio_x-mp3". Open the new folder and paste in the previously copied layout with Attributes | Paste layout.

    + + +

    +index +Query Templates

    +

    If you double click a saved query, the file search is at once started and the result window opens immediately. However, you may not want to search with these exact search parameters, but use it as starting point to only slightly tweak the formula.
    +By using the Save query as template menu item (see (1) in screenshot at the top) or drag&dropping the icon (10) anywhere with the right mouse button, you can create just such a template. Double clicking it won't open a result window, but the Find panel, giving you the opportunity to quickly change search strings or add/remove attributes.

    +

    Wherever you choose to save query templates, they'll be listed in the Find panel's menu of recent queries.

    +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/teammonitor.html b/docs/userguide/pt_BR/teammonitor.html new file mode 100644 index 0000000000..f8a9423b37 --- /dev/null +++ b/docs/userguide/pt_BR/teammonitor.html @@ -0,0 +1,79 @@ + + + + + + + + + Monitor de Tarefas + + + + + + + + +
    +
    + +

    Monitor de Tarefas

    + +

    Com CTRL ALT DEL é acionado o Monitor de Tarefas que lista todos os programas atualmente em execução.

    +teammonitor.png +

    Programas que foram carregados pelo sistema são azuis, aqueles iniciados pelo usuário são pretos.
    +Aplicativos que estão sem responder, o que é sempre um sinal de que o programa travou, são marcados de vermelho. Pode-se terminar um programa selecionando-o e pressionando Terminar aplicativo (ou então DEL ou Q). Se não funcionar, tente Matar aplicativo (ou SHIFT DEL ou K).

    +

    Pode-se abrir um Terminal com OPT ALT T.

    +

    Se o Rastreador ou Deskbar travou ou congelou, um novo botão aparece (pode ser necessário matar a tarefa afetada primeiro): Reiniciar a área de trabalho irá reiniciar o Rastreador e/ou o Deskbar.

    + +
    +
    + + + + diff --git a/docs/userguide/pt_BR/tracker-add-ons.html b/docs/userguide/pt_BR/tracker-add-ons.html new file mode 100644 index 0000000000..191268c388 --- /dev/null +++ b/docs/userguide/pt_BR/tracker-add-ons.html @@ -0,0 +1,97 @@ + + + + + + + + + Tracker Add-Ons + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    Tracker Add-Ons

    + +

    Applications can install add-ons so they can be invoked easily on a selection of files from Tracker. Only the add-ons that can handle a specific filetype are presented under Add-Ons from the context menu or the File menu of a Tracker window. Some add-ons don't necessarily need a file to work on and are thus always present.

    +

    Tracker Add-Ons, or links to applications that can act as add-ons, can be installed in three different locations (see topic Filesystem layout):

    + + + + +
    /boot/system/add-ons/Tracker/    for system provided add-ons.
    /boot/common/add-ons/Tracker/    for add-ons available to every user.
    /boot/home/config/add-ons/Tracker/    for add-ons only available to yourself.
    +

    The file name of an add-on can be suffixed with a dash and capital letter, and is then available via keyboard shortcut. For example, Open Target Folder-O opens with ALT OPT O.
    +Of course, you have to take care of possible shortcut collisions when deciding on a shortcut. You can't have the same for different add-ons.

    + +

    Haiku's Tracker Add-Ons

    +

    These Tracker Add-Ons come with every Haiku installation:

    + + + + + + + + + + + + + +
    Background-BOpens the Background preferences to change the color or image of the Desktop or any folder. Invoked on an image file the Background panel is launched with that image already loaded as a potential background.
    DiskUsage-IStarts the DiskUsage application with the according folder as basis.
    FileType-FInvoked on a file, opens its specific FileType panel, otherwise the general FileTypes preferences are launched.
    Open Target Folder-OCan only be used on a linked file and opens the folder that file lives in.
    TextSearch-GStarts the TextSearch application to look for a string in the selected folder (and its subfolders).
    ZipOMatic-ZA selection of files will be added to a zip archive, invoked without a selection opens a panel to create an archive via drag&drop.
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/tracker.html b/docs/userguide/pt_BR/tracker.html new file mode 100644 index 0000000000..aa8d0a213e --- /dev/null +++ b/docs/userguide/pt_BR/tracker.html @@ -0,0 +1,211 @@ + + + + + + + + + Rastreador + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + + + + + +
    Índice
    + Mounting volumes
    + Navigating
    + Appearance
    + Tracker preferences
    + Working with files
    + Transaction status +
    + +

    Rastreador

    + +

    The Tracker is the graphical interface to all your files. It lets you create new files and folders or find, launch or rename as well as copy or delete existing ones.

    +

    Being an application like any other (the Desktop with its icons is really just a fullscreen window in the background), Tracker appears with its windows in the Deskbar and can be quit and restarted. The easiest way to quit and restart a crashed or frozen Tracker (or a wayward Deskbar) is to call the Team Monitor.

    + +

    +index +Mounting Volumes

    +

    In order to access a harddisk, CD, USB stick etc., you first have to mount the volume, that is, let the system know it's there. This is done with a right-click on the Desktop or an already mounted volume (like the boot disk) and choosing the volume from the Mount submenu. You find the same Mount menu in the Deskbar.

    +drill-down.png +

    There are also Settings so you don't have to mount everything manually after every bootup.
    +The above settings will automatically mount any storage device you connect/insert and also mount all disks on bootup that were mounted previously.

    +
    Before you disconnect e.g. a harddrive or USB stick, make sure you have successfully unmounted the volume. This guarantees that all data transfer has finished. Otherwise you may lose data or corrupt the disk!
    + +

    +index +Navigating

    +

    By default, when you double-click a folder, Tracker opens a new window while leaving the parent window open. This can quickly lead to an overcrowded desktop.
    +You can prevent that by holding down the OPT key, which automatically closes the parent window.
    +This is also true for keyboard navigation. For more on that, see topic Shortcuts and key combinations.

    +

    Moving through your folders is one of Trackers main purposes, just like the file managers on other platforms. Haiku's Tracker has some unique features that will help you doing that efficiently.

    + +

    +indexDrilling down the submenus

    +

    Instead of double-clicking your way down folder after folder, there's a better way to drill down:

    +drill-down.png + +

    Right-click onto a folder, and at the top of the usual context menu you'll find a submenu of the current folder that let's you navigate down a level. Just move down the hierarchy until you find the file or folder you're looking for and click on it to open it. The above shows the contents of the folder /boot/home/config/.
    +If you do the above while dragging a file with you, it will be moved to where you eventually drop it.

    +

    A similar method can be used from any Tracker window:

    +window-drill-down.png +

    Click on the area in the lower left, where the number of items is listed, and you'll get submenus for every level above your current location. From there you can drill down through the folders as usual.

    +

    Note, that the Desktop is always the topmost level as that is where Tracker shows mounted volumes. So, if you want to go to another disk, you first have to navigate to the top (Desktop) and cross over to your other disk from there.


    +

    You'll get the same submenu-navigating when you drag a file over a folder. After a short while of hovering, a submenu pops up and you can drill down to your destination. If you initiated the drag with the right mousebutton, you can choose between copying, moving or linking the file when you release the mouse.

    + +

    +index +Jumping to files with type-ahead

    +

    You may be familiar with the concept from file managers of other operating systems: typing the first few letters of a filename will jump to the first file matching these starting characters. Haiku took the idea a step further. If there isn't a file starting with those letters it will jump to the first file including the string anywhere in its name. And if there's nothing with the string in its filename, the attributes are searched next.

    +window-type-ahead.png +

    In the above example, there are many files starting with "Haiku logo", rendering simpler approaches to typing ahead quite useless. In Haiku however, typing "web" jumps right to its first occurence in "Haiku logo - website". The characters you enter appear in the bottom left corner where you normally find the item count of all files in the folder. A second after entering a character, the display jumps back to normal and you're ready for a new type ahead search.

    +

    +index +Type-ahead filtering

    +

    Instead of jumping to a file while typing, there's also the option to filter out all files not matching your type-ahead string. This can improve clarity dramatically, especially when dealing with crowded folders. By using SHIFT SPACE as delimiter, you can even filter on multiple strings.
    +Contrary to type-ahead jumping, the filtering will stick until you press ESC or close the window (or leave the folder if you're using Single Window Navigation).
    +This type-ahead filtering is set in the Tracker preferences.

    + +

    +index +Appearance

    +window-menu.png +

    Tracker windows offer three different viewing modes from the Window menu:

    +
      +
    • Icon view (ALT 1) - Big icons, you can change the size from the submenu or in/decrease their size with ALT +/-.

    • +
    • Mini icon view (ALT 2) - Small icons.

    • +
    • List view (ALT 3) - A detailed list of your files enabling you to show/hide available attributes. (See topic Attributes.)

    • +
    +

    The Window menu offers a number of other functions:

    +
      +
    • Resize to fit (ALT Y) - Resizes the window to its ideal size.

    • +
    • Arrange by... - Only available in Icon or Mini icon view, a submenu allows to set the sorting order to various properties:

      +
        +
      • Name, Real name, Size, Modified, Created, Kind, Location, Permissions

      • +
      • Reverse order - Inverts the sorting order

      • +
      • Clean up (ALT K) - Aligns all icons to an invisible grid. Hold down SHIFT and the menu becomes Clean up all which additionally sorts all icons according to the above selected criterium.

      • +
    • +
    • Select... (SHIFT ALT A) - Select files according to a regular expression.

    • +
    • Close (ALT W) - Closes the window. Hold down SHIFT and the menu becomes Close all which closes every Tracker window.

    • +
    • Close all in workspace (ALT Q) - Closes every Tracker window in the current workspace. A useful shortcut if you forgot to hold the OPT key while clicking through folders and all those still open Tracker windows clutter your workspace.

    • +
    +

    Sometimes you just want to rearrange a few icons without doing a complete Clean up (ALT K). In that case, you select these icons and start to drag them to their new location. Before you drop them there, keep ALT pressed. This will align the icons to the invisible grid.

    +

    The rest of the functions are pretty self-explanatory, leaving the Tracker preferences.

    + +

    +index +Tracker preferences

    +

    Window | Preferences... opens a panel that offers a number of settings that, where not obvious, should become clear once tried out. Since all settings are applied live, you'll immediately see the changes. +
    So, in short, the not so obvious settings:

    +
      +
    • Desktop - Decide if all mounted disks appear directly on the Desktop or in a window after clicking a single Disk icon sitting on the Desktop.

    • +
    • Windows - You can set Single window navigation, i.e. a double-clicked folder doesn't open in its own window, but inside the already open window instead, replacing the view of it's parent folder. This is not the same as clicking while holding the OPT key, as described above, because you'll lose the per window saved position and size. +

      +tracker-preferences-navigator.png +

      Before you switch Tracker to Single Window Navigation mode, because that may feel more familiar to you, we recommend giving the menu based browsing a try first, as that may actually work much faster for you after getting used to. On the other hand, single window browsing offers a Navigator where you can enter or copy & paste a path name and use back, forward and up buttons.

      +

      Activating Type-ahead filtering will filter the contents of a Tracker window while you type to only display the files matching your string in their name or any currently displayed attribute. See above.

    • +
    • Trash - Set the behavior when deleting a file.

    • +
    • Volume icons - Set the color of an optional indicator of free space that's shown besides a disk's icon.

    • +
    +

    This panel, by the way, is also available as Tracker from Deskbar's Preferences.

    + +

    +index +Working with files

    +

    When invoked on a selected file, most of the File menu commands are also offered in the context menu by right-clicking that file.

    +

    As usual the commands are pretty clear.

    +
      +
    • Find... - Find a file or folder. See topic Query for more info.

    • +
    • New - Create a new folder or any other file based on a template. +

      +new-menu.png +

      Choosing Edit templates... opens the folder /boot/home/config/settings/Tracker/Tracker New Templates. Creating a file in that folder will offer its filetype with the file's name and other attributes as template in the New menu. Here, there's a file "Text" with the filetype text/plain. See topic Filetypes for more info.

    • +
    • Open with... - A submenu offers all applications that can handle this filetype. +

      +open-with.png + +

      The preferred application that would open the file when double-clicked, is checkmarked. This submenu lists first those applications that can handle the exact filetype, in this case it's a text file, the type text/plain. Next come all applications that can handle that supertype in general, here text/*. Last in the list are those that can deal with any file. If you don't click on an app in the submenu, but on the Open with... entry instead, a panel opens:

      +

      +open-with-preferred +

      Here you'll again find the programs that were listed in the submenu. By selecting one and clicking the Open and make preferred button, you changed the preferred application for every file of that filetype, here text/plain.

    • +
    • Get info +

      +get-info +

      The panel presents info on the selected file and lets you set the default application and, after you expanded that part of the panel, permissions and owner. Clicking on the path will open it in a Tracker window.

    • +
    • Edit name, Duplicate and Move to trash - lets you rename or duplicate a file or put the selected file(s) to the trash.

    • +
    • Move to, Copy to and Create link - lets you move, copy or link the selected file(s) using the submenu navigating method. Holding SHIFT while invoking the menu offers the option to create a relative link.

    • +
    • Cut, Copy and Paste - lets you cut, copy and paste files using the clipboard. By holding SHIFT while invoking the menu you can Copy/Cut more files, maybe from another folder that you can paste somewhere else later. Also, while holding SHIFT you can paste the copied files in the clipboard as links.

    • +
    • Identify - will sniff out and set the type of files if they didn't have one before, e.g. if you transferred a file with wget which doesn't set a filetype itself. Holding SHIFT while invoking the menu changes the item to Force identify which identifies the filetype and corrects it if it was false before.

    • +
    • Add-Ons - offers you every generic Tracker add-on and those that can handle the selected file(s). See topic Tracker Add-ons for more information.

    • +
    + +

    +index +Transaction status

    +

    When you copy, move or delete files, Tracker shows its progress with a status window. If you initiate more than one transaction, each job gets its own status display.

    +transaction-status.png +

    To the right are two buttons to pause or stop a transaction entirely. Sometimes it can be useful to temporarily pause a large transaction. For example, you may need to quickly launch a large application. Copying large amounts of data chokes your harddisk's IO bandwidth and thus delays your workflow.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/twitcher.html b/docs/userguide/pt_BR/twitcher.html new file mode 100644 index 0000000000..a7c0bd1561 --- /dev/null +++ b/docs/userguide/pt_BR/twitcher.html @@ -0,0 +1,83 @@ + + + + + + + + + Twitcher + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    Twitcher

    + +

    The Twitcher is a task switcher to jump between running applications and their windows.

    +twitcher.png +

    Just tap CTRL TAB to switch between the current and the last application/window. Tapping CTRL TAB very quickly will switch between all applications. Or press and hold CTRL TAB to go through all running applications by repeatedly hitting TAB or /. If you need to get to a specific window of a program, move to its icon as described and then go through its open windows with the / keys.

    +

    You cycle through all an applications visible windows on the current workspace with CTRL ~ (which, depending on the keymap you're using, is the key below ESC).

    +

    It's also possible to invoke the Twitcher with CTRL TAB and then use the mouse to choose the application/window you'll jump to when releasing the CTRL key.

    +

    The Twitcher also offers a few more advanced keyboard shortcuts:

    + + + + +
    ESCAborts the twitching and returns to the formerly active window.
    QQuits the selected application.
    HHides all windows of the selected application.
    + +
    +
    + + + + diff --git a/docs/userguide/pt_BR/workshop-email.html b/docs/userguide/pt_BR/workshop-email.html new file mode 100644 index 0000000000..df969aff52 --- /dev/null +++ b/docs/userguide/pt_BR/workshop-email.html @@ -0,0 +1,156 @@ + + + + + + + + + Workshop: Managing Email + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + + + + + +
    Índice
    + Haiku's mail system
    + Using custom statuses
    + Using queries
    + More tips +
    + +

    Workshop: Managing Email

    + +

    This workshop takes a look on how to manage email under Haiku. It assumes that the email services are correctly configured with the E-Mail preferences and you're familiar with the basic features of the Mail application.

    + +

    +index +Haiku's mail system

    +

    If you come to Haiku from other operating systems, you're probably used to big applications like MS Outlook or Mozilla's Thunderbird. You have to configure them by entering all the info on mail server addresses etc. and they use their own contacts database. They take care of sending and fetching email and store them in some big special file.
    +Changing you email client can be a hassle with quite some ex/importing and converting going on. Using more than one client in parallel to check out what else is available is also not without the occasional kerfuffle.

    +

    Haiku's mail system is different. It breaks down into smaller separate modules.

    +

    There's the mail_daemon that takes care of the communication with your mail servers. The E-Mail preferences is the one central point to configure your email accounts and how often they're checked, for example.

    +

    Every message that is fetched or sent is saved as one single email file, with its header information (like sender, subject, date) and status (like New, Replied, Sent) in BFS attributes. This enables searching/filtering them with Haiku's fast queries.

    +browsing.png +

    With every email being in a separate file, viewing them becomes just as easy as browsing through a folder (or query result) of images with ShowImage. Leaving the Tracker window open, you'll see the moving selection of the currently viewed file while you use the previous/next button to move through them.
    +As they are independent files, using a viewer other than Haiku's Mail causes no problems whatsoever.

    +

    Similarly, creating a new message results in just another file that is handed to the mail_daemon that takes care of sending it off. Contact management is deferred to the People application.

    +

    In a nutshell, where other mail clients do everything, from communicating with the mail servers to providing a view with all your mails and tools to search and filter them, Haiku uses a chain of smaller tools and general file management:

    +
      +
    • The mail_daemon to fetch/send mail and save them as normal files.

    • +
    • Tracker windows and queries to find and show email files.

    • +
    • The Mail application to view email files and create new messages relying on system-wide contact management by the People app.

    • +
    +

    Especially using Tracker and queries to manage emails is a powerful idea. The experience you gain can be transferred to any other problem that is dealing with files. Be it images, music, video, contacts or any other documents, using Tracker is at the core of all file managing.
    +Also, improvements in any of these system areas benefit not just emailing, but all applications that make use of them.

    + +

    +index +Using custom statuses

    +

    When you browse through your newly arrived email, you may want to come back to some of them later to think about it in more depth. While you could use Mail's menu Close and | Leave as New to keep them in your "New messages" query, things tend to pile up that way...

    +

    One solution is of course to just start a reply and save it as draft. But if you don't expect to write a reply and just want to re-read the mail later, that isn't ideal.

    +status.png +

    Better use Close and | Set to... to create a new status and use that to categorize your mail. For example, you could call the status "Later", and then query for that when you find more time.
    +Or you use different statuses for specific projects. For example, I created a status "HUG" (for "Haiku user guide") under which I collect every mail that may influence the contents of the user guide, like commit messages about code changes that alter or introduce some feature or anything else I feel could improve the user guide.
    +In any case, try to keep the status name short. That way it always fits in a normally wide "Status" column in Tracker.

    +

    You don't have to open an email with the Mail application to set its status. With the Tracker add-ons Mark as Read and Mark as... you can select some email files and set their status in one go.

    + +

    +index +Using queries

    +

    Sure, you specify a folder to store all your email, you can open it et voilà, there's all you mail. But over time the folder becomes crowded and showing all will take longer and longer as thousands of files and their attributes have to be parsed and sorted. Also, most of the time you don't really care about two year old emails of Nigerian princes and their inheritory trouble ...

    +
    A lot of time when populating a folder is spent on putting files read from disk into the correct sorting order and displaying that in the window. If you do have to open a folder with a huge number of files, you can shorten the wait by making the Tracker window "invisible", i.e. either minimize it or change to another workspace. Watch ProcessController to see how it affects CPU usage.
    +

    Queries, to the rescue!

    +

    By using queries, you can narrow down the view of your mails. Actually, the mailbox icon in the Deskbar uses queries.

    +daemon-in-deskbar.png +

    The Open Draft submenu does a query for the status "Draft", which is set by Mail when you save a message.

    +

    Open Inbox Folder and Open Mail Folder are just links to regular folders (and not very useful in my opinion).

    +

    The # new messages submenu is populated by a query for email with the status "New" (that same query is used to change the mailbox icon to show some letters in it, by the way).

    + +

    You can add your own queries (or folders, applications, scripts etc.) to that context menu too, by putting them or links to them into ~/config/settings/Mail/Menu Links.

    +
    The query ~/config/settings/Mail/mailbox is a special case: It is executed when left-clicking the mailbox icon in the Deskbar. If you want to change that behavior, you can replace it with any other file (or link to a file), just name it "mailbox". It doesn't have to be a query, a link to a folder of queries or a script or application works just as well.
    + +

    +index +Query examples

    +

    Here are a few examples of useful queries:

    + + + + + + +
    query-1.png
    +This finds all mails with the custom status "Later".
    query-2.png
    +This finds all mails of the past 2 days.
    query-3.png
    +This finds all mails by Ingo Weinhold of the past 2 weeks.
    query-4.png
    +This finds all posts from the Haiku commit list of the past 12 hours.
    + +

    +index +More tips

    +
      +
    • If you don't save a query as "Query" but as "Query template", invoking it won't show the result window, but the Find... window instead. That way you can easily exchange the search string for the subject or sender, for example, or change a "2 days" time limit to "3 days".

    • +
    • Activating "type-ahead filtering" in Tracker's preferences allows you to very quickly filter a query result even further. Often it's enough to query for all mails of the last 3 days and go with type-ahead filtering from there. The big advantage is, that you don't have to exactly specify which attribute to search for, as all displayed are considered when filtering.

    • +
    • RelatedMail is a nifty little application that will query for all mails with the same subject/sender/time-frame etc. of a dropped email. Kind of what the Queries menu in the Mail app is supposed to do.

    • +
    + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/workshop-filetypes+attributes.html b/docs/userguide/pt_BR/workshop-filetypes+attributes.html new file mode 100644 index 0000000000..9841923565 --- /dev/null +++ b/docs/userguide/pt_BR/workshop-filetypes+attributes.html @@ -0,0 +1,230 @@ + + + + + + + + + Workshop: Filetypes, Attributes, Index and Queries + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + + + + + +
    Índice
    + Preparations
    + Creating a custom filetype
    + Icon
    + File recognition
    + Description
    + Preferred Application
    + Extra Attributes
    + Indexing
    + Filling in the data
    + Querying the database +
    + +

    Workshop: Filetypes, Attributes, Index and Queries

    + +

    This is a workshop to show the use of Attributes, Queries, the Index and custom Filetypes. As an example, we build a database to keep track of our DVD library.

    + +

    +index +Preparations

    +

    Let's first decide what filetype and attributes would serve our needs. Originally, I wanted to use a Bookmark file with a link to the movie's IMdB page, but Haiku doesn't have a "bookmarkable" browser like BeOS' NetPositive at the moment, so I came up with this: The file itself will be a JPEG image for the movie cover.
    +To that we add a couple of attributes. Here we have to decide if we want to query it later (then we have to add it to the index) and if so, what type of attribute it should be. Numbers (int, float) can be evaluated differently than text (</=/> vs. is/contains/starts with).

    +

    Here are the attributes I'd like to see for my DVDs:

    +
      +
    • Movie title
    • +
    • Genre
    • +
    • URL to e.g. IMdB
    • +
    • Director/Cast
    • +
    • Plot
    • +
    • My rating from 1 to 10
    • +
    • Coordinates in my shelf, e.g. A2, B3, so I find the DVD also in Real Life :)
    • +
    • If so, who's borrowed the disk...
    • +
    + +

    +index +Creating a custom filetype

    +

    Start the Filetypes preferences, and click on the Add... button below the hierarchical list on the left. A small dialog opens and you specify in which MIME Group your new filetype will reside. You can also create a completely new group. Let's put it into "applications" and set the "Internal Name" to DVDdb.

    +filetypes-new-file-type.png +

    Now, a panel for your new DVDdb filetype opens:

    +filetypes-dvddb.png + +

    +index +Icon

    +

    Double-click the icon well to open Icon-O-Matic to design an icon for your filetype. You can also drag&drop an icon from the icon well of another type, maybe as starting point for a modified version.

    + +

    +index +File Recognition

    +

    You can add suffixes like .txt, .jpg, .mp3 to recognize files by their extention. Useful when working with files from systems without MIME typing. We don't need that for our example.

    + +

    +index +Description

    +
      +
    • Type name - Appears e.g. in the Attribute menu of Tracker windows and the "Kind" attribute of a file.
    • +
    • Description - A bit more detailed description.
    • +
    + +

    +index +Preferred Application

    +

    This pop-up menu shows a list of all applications that can handle this particular filetype. From here you can choose which program should open this specific file when it's double-clicked.

    + + + +
    Select... opens a file dialog where you choose the application to open with this filetype. Here, we set ShowImage to display the DVD's cover.
    Same as... opens a file dialog where you choose any file that already has the preferred application set that you're looking for.
    + +

    +index +Extra Attributes

    +

    Here we enter all the custom attributes we decided on in our preparations. Clicking the Add... button opens a panel:

    +filetype-extra-attribute.png +
      +
    • Attribute name - Appears e.g. as the column heading in Tracker windows.

    • +
    • Internal name - Is used for indexing and querying the attribute.

    • +
    • Type - Defines the value the attribute can hold and therefore how it can be queried. +
        +
      • String for normal text
      • +
      • Boolean for binary data: 0 or 1
      • +
      • Integer for integer numbers with different ranges: +
          +
        • 8 bit: ± 255
        • +
        • 16 bit: ± 65,535
        • +
        • 32 bit: ± 4,294,967,295
        • +
        • 64 bit: ± 18,446,744,073,709,551,615
        • +
        +
      • +
      • Float for floatingpoint numbers, single precision
      • +
      • Double for floatingpoint numbers, double precision
      • +
      • Time for time and date format
      • +
      +
    • +
    +
      +
    • Visible - This checkbox determines if the attribute is visible in a Tracker window at all. Since the Tracker will be the interface to our DVD database, we check it and define its appearance with:
        +
      • Display as - Leave on "Default". In the future more option will become available, e.g. a bar or stars for a rating etc.
      • +
      • Editable - Determines if the attribute shall be editable in Tracker.
      • +
      • Width - The default width of that attributes column in a Tracker window.
      • +
      • Alignment - The attribute can be displayed left, center, or right aligned.
      • +
    +

    Now, insert all the info for our attributes:

    + + + + + + + + + + +
    Internal NameAttribute typeindexed?Description
    DVDdb:title text yes Movie title
    DVDdb:genre text yes Genre
    DVDdb:url text no URL
    DVDdb:cast text yes Director/Cast
    DVDdb:plot text no Plot
    DVDdb:rating int-32 yes Rating 1 to 10
    DVDdb:coord text no Shelf
    DVDdb:lent text yes Lent to
    + +

    +index +Indexing

    +

    Before we start entering data in our little DVD database, we should add certain attributes to the Index. Only indexed attributes can use Haiku's fast Queries.
    +So, what will we be searching in the future? We probably won't ask "What's in the B4 coordinate in my shelf?" or "Does the IMdB URL or the plot of the movie contain the word 'pope-shenooda'?".

    +

    This leaves these attributes:

    + + + + + + +
    Internal NameAttribute type
    DVDdb:titletext
    DVDdb:genretext
    DVDdb:casttext
    DVDdb:ratingint-32
    + +

    To index them, we open a Terminal and simply add one attribute after the other:

    +
    mkindex -t string DVDdb:title
    +mkindex -t string DVDdb:genre
    +mkindex -t string DVDdb:cast
    +mkindex -t int DVDdb:rating
    +

    The -t option defines the type of attribute, which is "string" for all but the rating, which is an integer number.

    + +

    +index +Filling in the data

    +

    Now, everything's set and we can begin putting some data into our base.
    +Since our basic file is a cover image, we go to some online resource like IMdB, look for our first movie and save the cover or movie poster in a new folder where we want to keep our DVDdb files.

    +

    Opening that folder we see a typical Tracker window with one JPEG in it. Right-clicking it, we change its filetype to application/DVDdb with the Filetype Addon. There's more info on this in the Filetypes document.

    +

    Now, we activate all our DVDdb attributes from the Attributes menu of the Tracker window and rearrange the columns to our taste:

    +filetypes-dvddb-empty.png +

    By clicking on a yet empty attribute (or pressing ALT E) we enter editing mode and fill each attribute. With TAB and SHIFT TAB you can navigate between attributes.

    +

    In our example, we usually start with a downloaded JPG cover and change its type to applications/DVDdb. There's another elegant way to produce a file to work with. Just copy an empty file of our filetype to /boot/home/config/settings/Tracker/Tracker New Templates and rename it to DVDdb.

    +

    Right-clicking into a Tracker window, you'll find a new entry under New... besides the default "New folder".

    + +

    +index +Querying the database

    +

    Several hours of grunt work later, we have a nice little database that you can query to find all your Christina Ricci movies that have a 7+ rating... :)

    +

    You can assign a sensible attribute layout for query results of a specific filetype.
    +Open the folder containing your DVDdb files and arrange the attributes how you'd like to have query results presented. Copy this layout with Attributes | Copy layout.

    +

    Open /boot/home/config/settings/Tracker/DefaultQueryTemplates, create a new folder and rename it to group/filetype, replacing slashes with underscores; in our case "applications_DVDdb".

    +

    Open the new folder and paste in the layout with Attributes | Paste layout. Voilà:

    +query-dvddb.png + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/workshop-wlan.html b/docs/userguide/pt_BR/workshop-wlan.html new file mode 100644 index 0000000000..3a02903a12 --- /dev/null +++ b/docs/userguide/pt_BR/workshop-wlan.html @@ -0,0 +1,149 @@ + + + + + + + + + Workshop: Rede sem fio + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + + + + + +
    Índice
    + Getting supported hardware to work
    + Joining a wireless network
    + Joining from the command line
    + Tips +
    + +

    Workshop: Rede sem fio

    + +

    Getting the networking to run is essential in today's need for permanent internet connection. As keeping up to date with all the different and ever changing hardware and drivers is quite impossible for a small project, Haiku relies on a FreeBSD compatibility layer for its networking drivers.
    +This ensures a massive amount of supported hardware, though probably not 100% of what's out there. See this list online for a list of supported models or check FreeBSD 9's release hardware notes.

    +
    Currently only PCI, PCI-X, PCI-Express, Mini PCI, and Mini PCI-Express devices are expected to work.
    +PCMCIA, CardBus, ExpressCard, USB and ISA devices still need more work to become functional.
    + +

    +index +Getting supported hardware to work

    +

    Even if the first hurdle of generally supported hardware is taken, some wireless network cards require binary firmware modules to properly operate. Haiku cannot include some of these proprietary firmware files due to licensing issues. Haiku does however include a simple script which will retrieve and install all of the needed proprietary bits for you. Generally, if you are planning to use wireless networking, it is a good idea to run this script to ensure your system has all of these firmwares available when they are needed.

    +

    Open a Terminal and type:

    +
    install-wifi-firmwares.sh
    +

    Now review the licenses and accept them to install all of the available firmware files.

    + +

    If you don't have internet access to download those lacking firmwares under Haiku, there's an offline method, see under tips below.

    + +

    +index +Joining a wireless network

    +

    By default, Haiku will join the first unencrypted wireless network it finds after booting up. To connect to a specific network, you use the Desktop applet NetworkStatus.

    +

    Right-click on its icon in the Deskbar and choose the network's public name (which is the "SSID" it broadcasts) from the context menu.

    +join-network.png +

    A window opens where you enter the type of authentication (probably WPA/WPA2, WEP is not a secure encryption anymore!) and the password for that wireless network. Click OK to start the login process.
    Depending on your hardware and network configuration this may take a while. You'll be kept informed of the progress by notifications:

    +join-network.gif +

    Once it reads "Ready" and the NetworkStatus icon in the Deskbar shows a green round light, the connection is established. If the notifications end in "No link" and a yellow triangle, something went wrong, probably an incorrect password.

    + +

    +index +Joining from the command line

    +

    If you prefer to use the command line or would like to use scripting or the ~/config/boot/UserBootscript to automate things to join a specific network on bootup, there's the command ifconfig.

    +

    Start a Terminal and enter the first line to scan for available wireless networks:

    +
    ifconfig /dev/net/iprowifi3945/0 scan
    +name                             address              signal  auth
    +haiku-top                        01:d0:19:a6:88:42        30  WPA
    +ArcorInternet123                 00:20:12:a4:29:e1        15  WPA
    +

    The path to your wireless network adapter has to be adjusted, of course.
    +The output shows the public name (SSID), MAC address, signal strength and authentication method of all found networks.

    +

    To join a network, use this line and insert the respective public name (SSID) and password:

    +
    ifconfig /dev/net/iprowifi3945/0 join {SSID} {password}
    +

    Make sure the initial configuration of the wireless network adapter after booting up has finished, before issuing ifconfig commands or they might be ignored. Depending on your hardware and network configuration that may take a while. Watch those notifications...

    + +

    +index +Tips

    + + +
    +
    + + + + + diff --git a/docs/userguide/pt_BR/workspaces.html b/docs/userguide/pt_BR/workspaces.html new file mode 100644 index 0000000000..b3b80a5a6c --- /dev/null +++ b/docs/userguide/pt_BR/workspaces.html @@ -0,0 +1,86 @@ + + + + + + + + + Workspaces + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + +

    Workspaces

    + +

    Workspaces são áreas de trabalho virtuais completas, cada qual com sua própria resolução, profundidade de cor e papel de parede. Até 32 desses workspaces podem ser definidos a partir das preferências em Screen.

    + +workspace_overviewpng.png + +

    +index +Switching workspaces

    +

    You switch between workspaces by either clicking into the Workspaces applet (which is seen in the above image) or by using the keyboard shortcut ALT Fx, where "x" is the workspace number. It's a good idea to arrange your workspaces in rows of four to mimick the layout of the Fx keys on the keyboard.
    +Also, clicking on an application or one of its windows in the Deskbar will send you to the workspace it's in.

    +

    Another very convenient way is to use CTRL ALT /// to navigate spatially the rows/columns of the available workspaces. If you additionally hold down SHIFT, the active window will move with you to the new workspace.

    +

    You can switch back and forth between two workspaces with ALT ` (the actual key depends on the keymap you're using - it is the key below ESC). Again, holding SHIFT will take the active window with you.

    + +
    +
    + + + + + diff --git a/docs/userguide/pt_PT/applications.html b/docs/userguide/pt_PT/applications.html index ea2503edd3..1dc3e52d4b 100644 --- a/docs/userguide/pt_PT/applications.html +++ b/docs/userguide/pt_PT/applications.html @@ -39,6 +39,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/activitymonitor.html b/docs/userguide/pt_PT/applications/activitymonitor.html index bde80a6f32..20ab769fb2 100644 --- a/docs/userguide/pt_PT/applications/activitymonitor.html +++ b/docs/userguide/pt_PT/applications/activitymonitor.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/bepdf.html b/docs/userguide/pt_PT/applications/bepdf.html index d4725798a9..7fa6839643 100644 --- a/docs/userguide/pt_PT/applications/bepdf.html +++ b/docs/userguide/pt_PT/applications/bepdf.html @@ -40,6 +40,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/bootmanager.html b/docs/userguide/pt_PT/applications/bootmanager.html index 3bf0a0823e..031b16ea01 100644 --- a/docs/userguide/pt_PT/applications/bootmanager.html +++ b/docs/userguide/pt_PT/applications/bootmanager.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/cdplayer.html b/docs/userguide/pt_PT/applications/cdplayer.html index 62ba42b2bc..b407e2c152 100644 --- a/docs/userguide/pt_PT/applications/cdplayer.html +++ b/docs/userguide/pt_PT/applications/cdplayer.html @@ -40,6 +40,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/charactermap.html b/docs/userguide/pt_PT/applications/charactermap.html index 5614838d78..34eefe8d6e 100644 --- a/docs/userguide/pt_PT/applications/charactermap.html +++ b/docs/userguide/pt_PT/applications/charactermap.html @@ -40,6 +40,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/cli-apps.html b/docs/userguide/pt_PT/applications/cli-apps.html index e7da23ced1..32cbe71543 100644 --- a/docs/userguide/pt_PT/applications/cli-apps.html +++ b/docs/userguide/pt_PT/applications/cli-apps.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/codycam.html b/docs/userguide/pt_PT/applications/codycam.html index 2434d756f5..3ba59f04bf 100644 --- a/docs/userguide/pt_PT/applications/codycam.html +++ b/docs/userguide/pt_PT/applications/codycam.html @@ -40,6 +40,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/deskcalc.html b/docs/userguide/pt_PT/applications/deskcalc.html index 2d12bc1cb0..f20917b452 100644 --- a/docs/userguide/pt_PT/applications/deskcalc.html +++ b/docs/userguide/pt_PT/applications/deskcalc.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -59,7 +61,7 @@


    DeskCalc is a simple calculator that nevertheless has some nice features that aren't apparent on first sight.

    -deskcalc.png +deskcalc.png
    • DeskCalc understands much more than its simple keypad suggests.
      Besides the operators +, -, *, /, %, ^ and the constants pi and e the following math functions are supported:
      diff --git a/docs/userguide/pt_PT/applications/diskprobe.html b/docs/userguide/pt_PT/applications/diskprobe.html index 225ab0ce26..db67f520b4 100644 --- a/docs/userguide/pt_PT/applications/diskprobe.html +++ b/docs/userguide/pt_PT/applications/diskprobe.html @@ -38,6 +38,8 @@

    •  中文 [中文]
    • Suomi
    • Slovenčina
    • +
    • Magyar
    • +
    • Português (Brazil)
    • English
    diff --git a/docs/userguide/pt_PT/applications/diskusage.html b/docs/userguide/pt_PT/applications/diskusage.html index 8fa2b8aa93..ec1538f280 100644 --- a/docs/userguide/pt_PT/applications/diskusage.html +++ b/docs/userguide/pt_PT/applications/diskusage.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/drivesetup.html b/docs/userguide/pt_PT/applications/drivesetup.html index 0f734b5940..854f118afe 100644 --- a/docs/userguide/pt_PT/applications/drivesetup.html +++ b/docs/userguide/pt_PT/applications/drivesetup.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/expander.html b/docs/userguide/pt_PT/applications/expander.html index 430d0aed5f..7c11a10ea2 100644 --- a/docs/userguide/pt_PT/applications/expander.html +++ b/docs/userguide/pt_PT/applications/expander.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -62,14 +64,14 @@ Just double-click an archive to see this simple interface:

    expander.png

    - +
    SourceALT Swill open a file dialog to find an archive to unpack.
    SourceALT Owill open a file dialog to find an archive to unpack.
    DestinationALT Dwill open a file dialog to set the destination.
    ExpandALT Ewill start the unpacking. It can be aborted with ALT K.

    You can toggle the display of the file listing by un/checking Show contents or pressing ALT L.

    Expander can only unpack whole archives.
    You can't select individual files to expand or add/remove files from the archive.
    -

    Edit | Preferences... or ALT P opens a preference panel that offers some useful settings to adjust Expander's behavior.
    +

    Settings | Settings... or ALT S opens a preference panel that offers some useful settings to adjust Expander's behavior.
    The options are all self-explanatory:

    expander-preferences.png

    diff --git a/docs/userguide/pt_PT/applications/icon-o-matic.html b/docs/userguide/pt_PT/applications/icon-o-matic.html index 386976dc2b..39a8ea8ae3 100644 --- a/docs/userguide/pt_PT/applications/icon-o-matic.html +++ b/docs/userguide/pt_PT/applications/icon-o-matic.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/installer.html b/docs/userguide/pt_PT/applications/installer.html index cfc76c9339..e6d602f25d 100644 --- a/docs/userguide/pt_PT/applications/installer.html +++ b/docs/userguide/pt_PT/applications/installer.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/list-cli-apps.html b/docs/userguide/pt_PT/applications/list-cli-apps.html index bc08295ddf..a6d5f0cb56 100644 --- a/docs/userguide/pt_PT/applications/list-cli-apps.html +++ b/docs/userguide/pt_PT/applications/list-cli-apps.html @@ -39,6 +39,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -277,7 +279,7 @@ Here's a list of all commandline applications that are shipped with Haiku. Each stty Shows/sets terminal characteristics. su Changes the effective user id and group. sum Prints checksum and block counts for each file. -sync Forces changed blocks to disk, updates the super block. +sync Forces changed blocks to disk, updates the superblock. sysinfo Shows system info.

    indexT

    tac Concatenates and prints files, last line first. diff --git a/docs/userguide/pt_PT/applications/magnify.html b/docs/userguide/pt_PT/applications/magnify.html index cd1a523fb8..08c848b9f5 100644 --- a/docs/userguide/pt_PT/applications/magnify.html +++ b/docs/userguide/pt_PT/applications/magnify.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/mail.html b/docs/userguide/pt_PT/applications/mail.html index d359b70b27..79e22d6c9d 100644 --- a/docs/userguide/pt_PT/applications/mail.html +++ b/docs/userguide/pt_PT/applications/mail.html @@ -40,6 +40,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/mediaplayer.html b/docs/userguide/pt_PT/applications/mediaplayer.html index aae276b613..c45e4b82a7 100644 --- a/docs/userguide/pt_PT/applications/mediaplayer.html +++ b/docs/userguide/pt_PT/applications/mediaplayer.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/midiplayer.html b/docs/userguide/pt_PT/applications/midiplayer.html index 9520763d8c..bed8878398 100644 --- a/docs/userguide/pt_PT/applications/midiplayer.html +++ b/docs/userguide/pt_PT/applications/midiplayer.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/packageinstaller.html b/docs/userguide/pt_PT/applications/packageinstaller.html index 9a064e3a78..ee131c88ce 100644 --- a/docs/userguide/pt_PT/applications/packageinstaller.html +++ b/docs/userguide/pt_PT/applications/packageinstaller.html @@ -40,6 +40,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -66,7 +68,7 @@ packageinstaller.png

    The main window gives access to two configurations:

      -
    • type of installation (depending on the developer there might be more than one (standard) installation option).
    • +
    • installation type (depending on the developer there might be more than one (standard) installation option)
    • Installation location (only entire partitions/hard disks can be chosen, not custom paths)

    After clicking Install the extraction and installation process will begin.

    diff --git a/docs/userguide/pt_PT/applications/pe.html b/docs/userguide/pt_PT/applications/pe.html index d07493443c..4bc978d1af 100644 --- a/docs/userguide/pt_PT/applications/pe.html +++ b/docs/userguide/pt_PT/applications/pe.html @@ -40,6 +40,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/people.html b/docs/userguide/pt_PT/applications/people.html index f744f5e169..8130b62e93 100644 --- a/docs/userguide/pt_PT/applications/people.html +++ b/docs/userguide/pt_PT/applications/people.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/poorman.html b/docs/userguide/pt_PT/applications/poorman.html index 1900fa0091..cd601ce859 100644 --- a/docs/userguide/pt_PT/applications/poorman.html +++ b/docs/userguide/pt_PT/applications/poorman.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/screenshot.html b/docs/userguide/pt_PT/applications/screenshot.html index d50066043d..433a305461 100644 --- a/docs/userguide/pt_PT/applications/screenshot.html +++ b/docs/userguide/pt_PT/applications/screenshot.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/showimage.html b/docs/userguide/pt_PT/applications/showimage.html index 88163c620f..187c6183d1 100644 --- a/docs/userguide/pt_PT/applications/showimage.html +++ b/docs/userguide/pt_PT/applications/showimage.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -65,7 +67,7 @@ ShowImage provides minimal editing features to crop, rotate and flip images and

    The View menu offers to start a Slide show of all images in a folder (or query result window) and set a Slide delay from 2 to 20 seconds.

    Other commands apply to the currently displayed image (without changing the size of the window):
    Original size shows the image with a 100% zoom factor.
    -Fit to window shrinks the image back into the window fame, e.g. after having zoomed into it or after resizing the window.
    +Fit to window shrinks the image back into the window frame, e.g. after having zoomed into it or after resizing the window.
    Zoom in and Zoom out move into and out of the image in 10% steps. Zooming is also done with the mouse wheel; to pan an image bigger than the window, simply left-click and drag your mouse around.

    Two settings don't just apply to the currently displayed image and are remembered when browsing from one image to the next:
    High quality zooming applies a very fast filter when zooming to reduce jagged lines and produce a smoother result.
    diff --git a/docs/userguide/pt_PT/applications/soundrecorder.html b/docs/userguide/pt_PT/applications/soundrecorder.html index 0528ad4824..0f9410ee07 100644 --- a/docs/userguide/pt_PT/applications/soundrecorder.html +++ b/docs/userguide/pt_PT/applications/soundrecorder.html @@ -40,6 +40,8 @@

  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/stylededit.html b/docs/userguide/pt_PT/applications/stylededit.html index ddd9fd7b46..e70910e576 100644 --- a/docs/userguide/pt_PT/applications/stylededit.html +++ b/docs/userguide/pt_PT/applications/stylededit.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/terminal.html b/docs/userguide/pt_PT/applications/terminal.html index c17f1f3610..4f4724f8ee 100644 --- a/docs/userguide/pt_PT/applications/terminal.html +++ b/docs/userguide/pt_PT/applications/terminal.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/textsearch.html b/docs/userguide/pt_PT/applications/textsearch.html index 2ade939d0e..04d75bac68 100644 --- a/docs/userguide/pt_PT/applications/textsearch.html +++ b/docs/userguide/pt_PT/applications/textsearch.html @@ -40,6 +40,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/tv.html b/docs/userguide/pt_PT/applications/tv.html index 6398f2a504..ffe9e9d596 100644 --- a/docs/userguide/pt_PT/applications/tv.html +++ b/docs/userguide/pt_PT/applications/tv.html @@ -40,6 +40,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/vision.html b/docs/userguide/pt_PT/applications/vision.html index 6825e29993..46a27cfe0a 100644 --- a/docs/userguide/pt_PT/applications/vision.html +++ b/docs/userguide/pt_PT/applications/vision.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/webpositive.html b/docs/userguide/pt_PT/applications/webpositive.html index a0f838f749..63469b51c7 100644 --- a/docs/userguide/pt_PT/applications/webpositive.html +++ b/docs/userguide/pt_PT/applications/webpositive.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/applications/wonderbrush.html b/docs/userguide/pt_PT/applications/wonderbrush.html index 280c17f02b..db09efffdc 100644 --- a/docs/userguide/pt_PT/applications/wonderbrush.html +++ b/docs/userguide/pt_PT/applications/wonderbrush.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/attributes.html b/docs/userguide/pt_PT/attributes.html index 13b559c6a2..86907d5d6b 100644 --- a/docs/userguide/pt_PT/attributes.html +++ b/docs/userguide/pt_PT/attributes.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/bash-scripting.html b/docs/userguide/pt_PT/bash-scripting.html index 45cec03175..e29a93d19d 100644 --- a/docs/userguide/pt_PT/bash-scripting.html +++ b/docs/userguide/pt_PT/bash-scripting.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/bootloader.html b/docs/userguide/pt_PT/bootloader.html index 5b73590f1b..d0a539fe9d 100644 --- a/docs/userguide/pt_PT/bootloader.html +++ b/docs/userguide/pt_PT/bootloader.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/pt_PT/contents.html b/docs/userguide/pt_PT/contents.html index 9e70186687..4f7125c36e 100644 --- a/docs/userguide/pt_PT/contents.html +++ b/docs/userguide/pt_PT/contents.html @@ -4,7 +4,7 @@ diff --git a/docs/userguide/pt_PT/preferences/fonts.html b/docs/userguide/pt_PT/preferences/fonts.html index 1fdac7646a..431d924a61 100644 --- a/docs/userguide/pt_PT/preferences/fonts.html +++ b/docs/userguide/pt_PT/preferences/fonts.html @@ -38,12 +38,14 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  FileTypes  -::  Preferences  -::  Keyboard  » + « FileTypes +:: Preferences +:: Keyboard » @@ -51,6 +53,8 @@
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    +

    Since "Fonts" moved into the Appearance panel, this is an outdated page. Do not translate!

    +

    fonts-icon_64.pngFonts

    @@ -62,8 +66,8 @@ fonts.png

    Haiku defines three standard fonts for different purposes. You set plain, bold and fixed font types and sizes that will be used throughout the system. Besides these, there's also a separate setting for the font used in menus.

    Deskbar:Preferences
    - - + +
    Defaults resets everything to default values.
    Revert brings back the settings that were active when you started the Fonts preferences.
    Defaults resets everything to default values.
    Revert brings back the settings that were active when you started the Fonts preferences.

    @@ -76,9 +80,9 @@ diff --git a/docs/userguide/pt_PT/preferences/keyboard.html b/docs/userguide/pt_PT/preferences/keyboard.html index e81c4408d1..23594735ad 100644 --- a/docs/userguide/pt_PT/preferences/keyboard.html +++ b/docs/userguide/pt_PT/preferences/keyboard.html @@ -38,10 +38,12 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  Fonts  + «  FileTypes  ::  Preferences  ::  Keymap  »

    @@ -71,7 +73,7 @@ + + + + Workshop: Wireless networking + + + + + + + + +
    +
    +
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    + + + + + +
    Index
    + Getting supported hardware to work
    + Joining a wireless network
    + Joining from the command line
    + Tips +
    + +

    Workshop: Wireless networking

    + +

    Getting the networking to run is essential in today's need for permanent internet connection. As keeping up to date with all the different and ever changing hardware and drivers is quite impossible for a small project, Haiku relies on a FreeBSD compatibility layer for its networking drivers.
    +This ensures a massive amount of supported hardware, though probably not 100% of what's out there. See this list online for a list of supported models or check FreeBSD 9's release hardware notes.

    +
    Currently only PCI, PCI-X, PCI-Express, Mini PCI, and Mini PCI-Express devices are expected to work.
    +PCMCIA, CardBus, ExpressCard, USB and ISA devices still need more work to become functional.
    + +

    +index +Getting supported hardware to work

    +

    Even if the first hurdle of generally supported hardware is taken, some wireless network cards require binary firmware modules to properly operate. Haiku cannot include some of these proprietary firmware files due to licensing issues. Haiku does however include a simple script which will retrieve and install all of the needed proprietary bits for you. Generally, if you are planning to use wireless networking, it is a good idea to run this script to ensure your system has all of these firmwares available when they are needed.

    +

    Open a Terminal and type:

    +
    install-wifi-firmwares.sh
    +

    Now review the licenses and accept them to install all of the available firmware files.

    + +

    If you don't have internet access to download those lacking firmwares under Haiku, there's an offline method, see under tips below.

    + +

    +index +Joining a wireless network

    +

    By default, Haiku will join the first unencrypted wireless network it finds after booting up. To connect to a specific network, you use the Desktop applet NetworkStatus.

    +

    Right-click on its icon in the Deskbar and choose the network's public name (which is the "SSID" it broadcasts) from the context menu.

    +join-network.png +

    A window opens where you enter the type of authentication (probably WPA/WPA2, WEP is not a secure encryption anymore!) and the password for that wireless network. Click OK to start the login process.
    Depending on your hardware and network configuration this may take a while. You'll be kept informed of the progress by notifications:

    +join-network.gif +

    Once it reads "Ready" and the NetworkStatus icon in the Deskbar shows a green round light, the connection is established. If the notifications end in "No link" and a yellow triangle, something went wrong, probably an incorrect password.

    + +

    +index +Joining from the command line

    +

    If you prefer to use the command line or would like to use scripting or the ~/config/boot/UserBootscript to automate things to join a specific network on bootup, there's the command ifconfig.

    +

    Start a Terminal and enter the first line to scan for available wireless networks:

    +
    ifconfig /dev/net/iprowifi3945/0 scan
    +name                             address              signal  auth
    +haiku-top                        01:d0:19:a6:88:42        30  WPA
    +ArcorInternet123                 00:20:12:a4:29:e1        15  WPA
    +

    The path to your wireless network adapter has to be adjusted, of course.
    +The output shows the public name (SSID), MAC address, signal strength and authentication method of all found networks.

    +

    To join a network, use this line and insert the respective public name (SSID) and password:

    +
    ifconfig /dev/net/iprowifi3945/0 join {SSID} {password}
    +

    Make sure the initial configuration of the wireless network adapter after booting up has finished, before issuing ifconfig commands or they might be ignored. Depending on your hardware and network configuration that may take a while. Watch those notifications...

    + +

    +index +Tips

    + + +
    +
    + + + + + diff --git a/docs/userguide/pt_PT/workspaces.html b/docs/userguide/pt_PT/workspaces.html index e193eb6b7d..14cea324f3 100644 --- a/docs/userguide/pt_PT/workspaces.html +++ b/docs/userguide/pt_PT/workspaces.html @@ -38,6 +38,8 @@
  •  中文 [中文]
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/ru/applications.html b/docs/userguide/ru/applications.html index 1fd48971a2..0710cce59e 100644 --- a/docs/userguide/ru/applications.html +++ b/docs/userguide/ru/applications.html @@ -44,6 +44,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -55,7 +57,6 @@
    -
    Перевод этой страницы еще не завершен. Пока это не произойдет, незавершенные части будут на английском.

    Приложения

    @@ -93,8 +94,8 @@ - - + + @@ -118,13 +119,13 @@ - + - + diff --git a/docs/userguide/ru/applications/activitymonitor.html b/docs/userguide/ru/applications/activitymonitor.html index a84bd541ae..c218ecc6b9 100644 --- a/docs/userguide/ru/applications/activitymonitor.html +++ b/docs/userguide/ru/applications/activitymonitor.html @@ -41,11 +41,13 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • Приложения  -::  BootManager  » +::  Загрузчик (BootManager)  » @@ -56,7 +58,7 @@
    iconМонитор активности Приложение для отслеживания системных ресурсов, например использование ЦП и оперативной памяти.
    iconBootManager A tool to install a boot menu in the Master Boot Record (MBR) of a drive.
    iconМенеджер загрузки Приложение для установки загрузочного меню в главную загрузочную запись (MBR) диска.
    iconCD плеер Проигрыватель CD-дисков.
    iconКарта символов
    iconУвеличитель Приложение для увеличения области вокруг указателя мыши (аналог экранной лупы в Windows).
    iconПочта An email client.
    Email-клиент.
    iconМедиаплеер Медиа-проигрыватель для аудио и видео файлов.
    iconMIDI плеер Проигрыватель MIDI-файлов.
    iconУстановщик пакетов Installer for BeOS packages in PKG format.
    Установщик BeOS пакетов в формате PKG
    iconКонтакты Менеджер контактов.
    iconВебсервер
    - +
    Расположение в Deskbar:Приложения (Applications)
    Расположение в Tracker:/boot/system/apps/ActivityMonitor
    Настройки хранятся по адресу: ~/config/settings/ActivityMonitor settings
    Настройки хранятся по адресу:~/config/settings/ActivityMonitor settings


    При помощи приложения Монитор активности вы можете отслеживать интересующие вас системные ресурсы. @@ -75,7 +77,7 @@

    diff --git a/docs/userguide/ru/applications/bepdf.html b/docs/userguide/ru/applications/bepdf.html index 8f37d336b3..88eb1a6b0a 100644 --- a/docs/userguide/ru/applications/bepdf.html +++ b/docs/userguide/ru/applications/bepdf.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -60,7 +62,7 @@ Расположение в Deskbar:Приложения (Applications) Расположение в Tracker:/boot/apps/BePDF/BePDF Документация хранится по адресу:/boot/apps/BePDF/docs/* -Настройки хранятся по адресу: /boot/common/settings/BePDF +Настройки хранятся по адресу:/boot/common/settings/BePDF


    BePDF позволяет просматривать PDF-документы. Помимо просмотра поддерживает аннотирование и пользовательские закладки для незашифрованных PDF-документов. Полностью переведено на 20 языков, на данный момент дополнительные языки могут быть добавлены путем добавления текстового файла с переводом.

    diff --git a/docs/userguide/ru/applications/bootmanager.html b/docs/userguide/ru/applications/bootmanager.html index b47c795216..f0c40395d9 100644 --- a/docs/userguide/ru/applications/bootmanager.html +++ b/docs/userguide/ru/applications/bootmanager.html @@ -9,12 +9,14 @@ * * Authors: * Humdinger + * Translators: + * Rodastahm Islamov * --> - BootManager + Загрузчик (BootManager) @@ -38,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -49,45 +53,44 @@
    -
    Перевод этой страницы еще не завершен. Пока это не произойдет, незавершенные части будут на английском.
    -

    bootmanager-icon_64.pngBootManager

    +

    bootmanager-icon_64.pngЗагрузчик (BootManager)

    - - - + + +
    Deskbar:No entry, normally started from Installer's Tools menu
    Location:/boot/system/apps/BootManager
    Settings:none
    MBR backups are saved by default in ~/config/settings/bootman/
    Расположение в Deskbar:Отсутствует в меню Deskbar, обычно запускается из меню Иструменты во время установки системы.
    Расположение в Tracker:/boot/system/apps/BootManager
    Настройки хранятся по адресу:резервные копии MBR по умолчнию хранятся: ~/config/settings/bootman/


    -

    If you don't add the Haiku partition to an existing boot manager like GRUB, BootManager can install a small boot menu in the Master Boot Record (MBR) that looks something like this:

    +

    Если вы не добавили раздел с Haiku в ваш менеджер загрузок (например, GRUB), то при помощи Загрузчика (BootManager) вы сможете установить простенькое меню загрузки в MBR, которое будет выглядеть следующим образом:

    bootmenu.png -
    Boot Manager isn't yet tested very well and still has a few restrictions that it will complain about if they aren't met: the menu can only be installed on your first harddisk and there has to be a 2KiB space after the Master Boot Record (MBR).
    -

    BootManager guides you through the installation process of the boot menu.

    +
    Загрузчик (Boot Manager) ещё не достаточно протестирован, поэтому имеются некоторые ограничения: загрузочное меню может быть установлена только на ваш первый жёсткий диск, а также должно находится 2 Кбайта свободного места после MBR.
    +

    Загрузчик (BootManager) проведёт вас по всем процессу установки загрузочного меню.

    index -Choosing the destination drive

    +Выбор диска bootmanager-1.png -

    The BootManager starts off with a list of all available drives from which you choose the destination. If there's already a boot menu on that drive, the Uninstall button becomes active, leading you through the simple procedure to restore a formerly backed-up MBR, thereby removing the boot menu again.
    -Otherwise, choose Install to continue.

    +

    Сразу после запуска Загрузчик (BootManager) предложит вам список всех доступных дисков, на которые можно установить загрузочное меню. Если загрузочное меню уже существует на диске, то кнопка Удалить станет активной, нажав которую вы запустить процедуру восстановления ранее созданной резервной копии MBR, вернув которую вы восстановите старую MBR и удалите существующее загрузочное меню.
    +В противном случае, выберите Установить.

    index -Backing up the Master Boot Record (MBR)

    -

    In case anything goes wrong or you want to remove the boot menu again, the Master Boot Record (MBR) is now saved. This is obviously a very important step, make sure you don't accidentally overwrite some other MBR-backup maybe from some earlier experimentation, for example!

    +Создание резервной копии MBR +

    В случае, если что-то пойдёт не так, или если вы хотите удалить загрузочное меню и вернуть старую MBR, то на этом шаге можно сделать резервную копию MBR текущей. Это, безусловно, очень важный шаг, поэтому убедитесь, что вы случайно не перезапишете старые резервные копии MBR, которые могли остаться от старых экспериментов.

    bootmanager-2.png bootmanager-3.png -

    Just select a destination for the backup file "MBR" or leave the default path. After clicking Next you'll get a confirmation if the backup was successful.

    +

    Выберите место сохранения резервной копии "MBR" либо оставьте стандартный путь сохранения. После того, как вы нажмёте на кнопку Продолжить, получите извещение о том, что резервная копия сохранена успешно.

    index -Configuring the boot menu

    +Настройка загрузочного меню bootmanager-4.png bootmanager-5.png -

    Next you're presented with a list of all partitions on the destination drive. By setting checkmarks you decide what entries will appear in the boot menu, the text boxes allow you to rename an entry.

    -

    After that, you pick from the pop-up menu which partition will be booted from by default and set a timeout with the slider below. Here, "Immediately" will skip the boot menu entirely, "Never" will just stop at the boot menu. You can override the timeout setting by holding ALT while booting.

    +

    Далее вы увидите список всех разделов на выбранном вами диске. Установив флажок напротив того или иного раздела, тем самым вы добавите его в загрузочное меню. Текстовые поля рядом с флажками позволяют задать название для пунктов загрузочного меню.

    +

    Далее всплывающее окно позволит установить время задержки с помощью ползунка. Установив ползунок в значение "Немедленно" загрузка будет происходит моментально т.е. вы не сможете выбрать какой-либо пункт меню. Значение же "Никогда", напротив, остановит загрузку на стадии загрузочного меню до тех пор, пока вы не выберите один из пунктов. Изменить настройки задержки загрузки можно удерживая клавишу ALT во время загрузки.

    index -Writing the boot menu

    +Запись загрузочного меню bootmanager-6.png bootmanager-7.png -

    Before the boot menu is written to the MBR, you'll get a summary of your configuration and then one last chance to abort the operation. Don't worry though, as long as you keep the MBR backup safe, you can easily revert the changes. Should things get thoroughly messed up, you can always boot from a Haiku install CD or USB stick and write back the MBR backup with BootManager.

    +

    Перед тем, как записать загрузочное меню в MBR, вам будет представлена последняя возможность проверить, всё ли правильно вы указали, и если что-то не так исправить или вовсе прервать операцию. Если после записи ничего не работает и ничего не загружается, то вы можете загрузить Haiku с USB-носителя или с CD и восстановить MBR из резервной копии при помощи Загрузчика (BootManager).

    diff --git a/docs/userguide/ru/applications/cdplayer.html b/docs/userguide/ru/applications/cdplayer.html index 0354ca7911..b19195ddd3 100644 --- a/docs/userguide/ru/applications/cdplayer.html +++ b/docs/userguide/ru/applications/cdplayer.html @@ -41,10 +41,12 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  BootManager  + «  Загрузчик (BootManager)  ::  Приложения  ::  Таблица символов (CharacterMap)  »
    @@ -57,7 +59,7 @@ - +
    Расположение в Deskbar:Приложения (Applications)
    Расположение в Tracker:/boot/system/apps/CDPlayer
    Настройки хранятся по адресу: ~/cd/* - Хранятся детали всех идентифицированных CD-дисков.
    Настройки хранятся по адресу:~/cd/* - Хранятся детали всех идентифицированных CD-дисков.


    @@ -41,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -58,10 +61,10 @@ - +
    Расположение в Deskbar:Приложения (Applications)
    Расположение в Tracker:/boot/system/apps/MediaPlayer
    Настройки хранятся по адресу: ~/config/settings/MediaPlayer
    Настройки хранятся по адресу:~/config/settings/MediaPlayer


    -

    Медиаплеер - приложение для воспроизведения видео и аудио файлов. Спасибо команде ffmpeg, благодаря им проигрыватель поддерживает большинство форматов . Графический интерфейс медиаплеера довольно прост:

    +

    Медиаплеер - приложение для воспроизведения видео и аудио файлов. Спасибо команде ffmpeg: благодаря им проигрыватель поддерживает большинство форматов . Графический интерфейс медиаплеера довольно прост:

    mediaplayer.png

    Шкала прогресса позволяет быстро перейти к определённому моменту. Если удерживать некоторе время курсор мыши над этой шкалой, то появится подсказка отображающая сколько времени прошло с начала воспроизведения и сколько осталось до конца. Справа от шкалы находится время оставшееся до конца воспроизведения, однако сделать так чтоб вместо него отображалось время прошедшее с начала проигрывания, или длину клипа. Для этого просто щёлкните по этому месту.
    @@ -91,9 +94,9 @@

    Рассмотрим параметры для настройки МедиаПлеера:

    mediaplayer-settings.png

    The first batch, Play mode, is pretty self-explaining. Start playback automatically, close windows when finished or play clips in a loop.

    -

    Next are different View options.
    -You can opt to Use hardware overlay if available, which cuts down CPU usage but only works for one video window and needs a supporting video card driver.
    -You can Scale movies smoothly (when not in overlay mode) which uses very fast filtering to smooth over otherwise blocky pixels when zooming video or watching in full-screen mode.
    +

    Далее идут различные Настройки вида.
    +Вы можете выбрать пункт Использовать аппаратный видеооверлей, если возможно, позволяющий понизить нагрузку на процессор, но работающий только для одного окна и требующий драйвер видеокарты, поддерживающий данную возможность.
    +Вы можете выбрать плавное масштабирование видео (в режиме без оверлея) использующее очень быструю фильтрацию для сглаживания, в противном случае при изменении размера видео, или просмотра в полноэкранном режиме появляются блочные пиксели.
    Scale controls in full-screen mode if you prefer slightly bigger controls, maybe because you watch the screen from a bit farther away when in full-screen mode.
    Then there are settings for Subtitle size and Subtitle placement. They can be shown at the Bottom of video, which will always have them overlayed over the picture. Or Bottom of window, which allows you to resize the window vertically and have the subtitles appear in the black bar at the bottom instead.

    The last setting determines the volume of clips whose windows are not currently active. You can have them all blaring at Full volume, at less confusing Low volume or quietly Muted.

    diff --git a/docs/userguide/ru/applications/midiplayer.html b/docs/userguide/ru/applications/midiplayer.html index 2bacd76877..14affd07b4 100644 --- a/docs/userguide/ru/applications/midiplayer.html +++ b/docs/userguide/ru/applications/midiplayer.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -58,7 +60,7 @@ - +
    Расположение в Deskbar:Приложения (Applications)
    Расположение в Tracker:/boot/system/apps/MidiPlayer
    Настройки хранятся по адресу: ~/config/settings/MidiPlayerSettings
    Настройки хранятся по адресу:~/config/settings/MidiPlayerSettings


    Как следует из названия приложения, MIDI плеер предназначен для воспроизведения Midi-файлов. Midi-файлы достаточно специфичны т.к. не являются оцифрованной и закодированной музыкой. Midi-файлы лишь содержат описание следующего плана: Проигрывать такую-то ноту с такой-то громкостью, используя такой-то инструмент.
    diff --git a/docs/userguide/ru/applications/packageinstaller.html b/docs/userguide/ru/applications/packageinstaller.html index cbe3bb2f4b..e88920613a 100644 --- a/docs/userguide/ru/applications/packageinstaller.html +++ b/docs/userguide/ru/applications/packageinstaller.html @@ -40,6 +40,8 @@

  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -56,7 +58,7 @@ - +
    Расположение в Deskbar:Отсутствует в меню Deskbar, обычно запускается по двойному щелчку мыши по файлу.
    Расположение в Tracker:/boot/system/apps/PackageInstaller
    Настройки хранятся по адресу: отсутствуют
    Настройки хранятся по адресу:отсутствуют


    Это черновой вариант. Пожалуйста, обратитесь к данной странице позже.
    diff --git a/docs/userguide/ru/applications/pe.html b/docs/userguide/ru/applications/pe.html index d51f87b4f1..02cdcbe6cb 100644 --- a/docs/userguide/ru/applications/pe.html +++ b/docs/userguide/ru/applications/pe.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -58,7 +60,7 @@ Расположение в Deskbar:Приложения (Applications) Расположение в Tracker:/boot/apps/Pe/Pe Документация хранится по адресу:/boot/apps/Pe/Documentation.html -Настройки хранятся по адресу: ~/config/settings/pe/* +Настройки хранятся по адресу:~/config/settings/pe/*


    Pe - это редактор кода с подсветкой синтаксиса для программистов. Изначально создан Maarten Hekkelmann, впоследствии исходные коды были открыты и теперь поддерживается разработчиками Haiku. Более подробная информация доступна на сайте проекта.

    diff --git a/docs/userguide/ru/applications/people.html b/docs/userguide/ru/applications/people.html index a1837370ba..55e254f9c6 100644 --- a/docs/userguide/ru/applications/people.html +++ b/docs/userguide/ru/applications/people.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -56,7 +58,7 @@ - +
    Расположение в Deskbar:Приложения (Applications)
    Расположение в Tracker:/boot/system/apps/People
    Настройки хранятся по адресу: ~/config/settings/People_data
    Настройки хранятся по адресу:~/config/settings/People_data


    People - простая программа для хранения контактов, использующая атрибуты файловой системы Haiku для сохранения адресов и другой контактной информации. Каждый контакт сохранён как один персональный файл со всеми данными о нём в виде отдельных атрибутов. Все они проиндексированы и потому доступны для поиска по соответствующему запросу.

    diff --git a/docs/userguide/ru/applications/poorman.html b/docs/userguide/ru/applications/poorman.html index 63265ebfa0..a5e56d5e4d 100644 --- a/docs/userguide/ru/applications/poorman.html +++ b/docs/userguide/ru/applications/poorman.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -57,7 +59,7 @@ - +
    Расположение в Deskbar:Приложения (Applications)
    Расположение в Tracker:/boot/system/apps/PoorMan
    Настройки хранятся по адресу: ~/config/settings/PoorMan Settings
    Настройки хранятся по адресу:~/config/settings/PoorMan Settings


    PoorMan - это простейший WEB-сервер с максимально простыми настройками. Он не имеет расширенных серверных функций, в отличие от специализированного серверного программного обеспечения, предлагая минимально необходимый функционал.

    diff --git a/docs/userguide/ru/applications/screenshot.html b/docs/userguide/ru/applications/screenshot.html index 5d331abc11..9301ec49dd 100644 --- a/docs/userguide/ru/applications/screenshot.html +++ b/docs/userguide/ru/applications/screenshot.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -58,7 +60,7 @@ - +
    Расположение в Deskbar:Приложения (Applications)
    Расположение в Tracker:/boot/system/apps/Screenshot
    Настройки хранятся по адресу: ~/config/settings/screenshot
    Настройки хранятся по адресу:~/config/settings/screenshot


    Помимо получения обычных снимков экрана при помощи клавиши Print Screen, которая помещает изображение текущего экрана в формате PNG в папку: /boot/home, это приложение содержит и ряд других полезных настроек.

    diff --git a/docs/userguide/ru/applications/showimage.html b/docs/userguide/ru/applications/showimage.html index 56642cc987..48634b380d 100644 --- a/docs/userguide/ru/applications/showimage.html +++ b/docs/userguide/ru/applications/showimage.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -57,7 +59,7 @@ - +
    Расположение в Deskbar:Отсутствует в меню Deskbar, обычно запускается по двойному щелчку мыши по файлу.
    Расположение в Tracker:/boot/system/apps/ShowImage
    Настройки хранятся по адресу: ~/config/settings/ShowImage_settings
    Настройки хранятся по адресу:~/config/settings/ShowImage_settings


    Приложение Просмотр изображений (ShowImage) позволяет просматривать изображения всех форматов, для которых существуют трансляторы обеспечивающие поддержку. Новые форматы начнут автоматически распознаваться с того момента, как только транслятор будет добавлен в систему. Так произошло, например, с векторным форматом для иконок Haiku, с изображениями в формате WonderBrush и изображениями в формате WebP.
    diff --git a/docs/userguide/ru/applications/soundrecorder.html b/docs/userguide/ru/applications/soundrecorder.html index 39239dd769..84600c9e4b 100644 --- a/docs/userguide/ru/applications/soundrecorder.html +++ b/docs/userguide/ru/applications/soundrecorder.html @@ -40,6 +40,8 @@

  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -56,7 +58,7 @@ - +
    Расположение в Deskbar:Приложения (Applications)
    Расположение в Tracker:/boot/system/apps/SoundRecorder
    Настройки хранятся по адресу: ~/config/settings/???
    Настройки хранятся по адресу:~/config/settings/???


    Документация отсутствует. Если вы работаете над ней, пожалуйста, сообщите в списке рассылки во избежание двойной работы.

    diff --git a/docs/userguide/ru/applications/stylededit.html b/docs/userguide/ru/applications/stylededit.html index 03de00926b..1755c51417 100644 --- a/docs/userguide/ru/applications/stylededit.html +++ b/docs/userguide/ru/applications/stylededit.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -57,7 +59,7 @@ - +
    Расположение в Deskbar:Приложения (Applications)
    Расположение в Tracker:/boot/system/apps/StyledEdit
    Настройки хранятся по адресу: отсутствуют
    Настройки хранятся по адресу:отсутствуют


    StyledEdit - простой текстовый редактор, он сохраняет файлы в виде обычного текста, но через добавление к ним дополнительных атрибутов имеет некоторые возможности по форматированию, которые будут видны только при открытии файла в StyledEdit.

    diff --git a/docs/userguide/ru/applications/terminal.html b/docs/userguide/ru/applications/terminal.html index 7e29983190..cf8f0a061e 100644 --- a/docs/userguide/ru/applications/terminal.html +++ b/docs/userguide/ru/applications/terminal.html @@ -43,6 +43,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -59,7 +61,7 @@ -
    Расположение в Deskbar:Приложения (Applications)
    Расположение в Tracker:/boot/system/apps/Terminal
    Настройки хранятся по адресу: ~/config/settings/Terminal
    +
    Настройки хранятся по адресу:~/config/settings/Terminal
    ~/.profile - дополняет/переопределяет параметры указанные в /boot/system/etc/profile
    ~/.inputrc - дополняет/переопределяет параметры указанные в /boot/system/etc/inputrc
    diff --git a/docs/userguide/ru/applications/textsearch.html b/docs/userguide/ru/applications/textsearch.html index a1dcad5758..55b8559d64 100644 --- a/docs/userguide/ru/applications/textsearch.html +++ b/docs/userguide/ru/applications/textsearch.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -58,7 +60,7 @@ - +
    Расположение в Deskbar:Отсутствует в меню Deskbar, обычно запускается при помощи дополнения для Tracker
    Расположение в Tracker:/boot/system/apps/TextSearch
    Настройки хранятся по адресу: ~/config/settings/TextSearch
    Настройки хранятся по адресу:~/config/settings/TextSearch


    Текстовый Поиск позволяет найти строки в текстовых файлах. Обычно его вызывают из контекстного меню дополнения в Tracker, выбрав файл или папку.

    diff --git a/docs/userguide/ru/applications/tv.html b/docs/userguide/ru/applications/tv.html index 5219e5f0a3..a118f46f4a 100644 --- a/docs/userguide/ru/applications/tv.html +++ b/docs/userguide/ru/applications/tv.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -57,7 +59,7 @@ - +
    Расположение в Deskbar:Приложения (Applications)
    Расположение в Tracker:/boot/system/apps/TV
    Настройки хранятся по адресу: ~/config/settings/???
    Настройки хранятся по адресу:~/config/settings/???


    Документация отсутствует. Если вы работаете над ней, пожалуйста, сообщите в списке рассылки во избежание двойной работы.

    diff --git a/docs/userguide/ru/applications/vision.html b/docs/userguide/ru/applications/vision.html index a46747b2d6..df335f24d1 100644 --- a/docs/userguide/ru/applications/vision.html +++ b/docs/userguide/ru/applications/vision.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -57,7 +59,7 @@ - +
    Расположение в Deskbar:Приложения (Applications)
    Расположение в Tracker:/boot/apps/Vision{version}/Vision
    Настройки хранятся по адресу: ~/config/settings/Vision/*
    Настройки хранятся по адресу:~/config/settings/Vision/*


    Vision - это IRC-клиент, изначально разработанный для BeOS. Документация доступна на официальном сайте Vision.

    diff --git a/docs/userguide/ru/applications/webpositive.html b/docs/userguide/ru/applications/webpositive.html index 4c6ff430de..08ed16e7c3 100644 --- a/docs/userguide/ru/applications/webpositive.html +++ b/docs/userguide/ru/applications/webpositive.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -56,7 +58,7 @@ - +
    Расположение в Deskbar:Приложения (Applications)
    Расположение в Tracker:/boot/system/apps/WebPositive
    Настройки хранятся по адресу: ~/config/settings/WebPositive/ - Настройки, куки, кэш и история посещений
    Настройки хранятся по адресу:~/config/settings/WebPositive/ - Настройки, куки, кэш и история посещений
    ~/config/settings/WebPositive/Bookmarks - Все закладки


    diff --git a/docs/userguide/ru/applications/wonderbrush.html b/docs/userguide/ru/applications/wonderbrush.html index ffbdb993d3..222a171860 100644 --- a/docs/userguide/ru/applications/wonderbrush.html +++ b/docs/userguide/ru/applications/wonderbrush.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -57,7 +59,7 @@ Расположение в Deskbar:Приложения (Applications) Расположение в Tracker:/boot/apps/WonderBrush/WonderBrush Документация хранится по адресу:/boot/apps/WonderBrush/Documentation {language} -Настройки хранятся по адресу: ~/config/settings/WonderBrush +Настройки хранятся по адресу:~/config/settings/WonderBrush


    WonderBrush - это редактор растровой и векторной графики. Найти более подробную информацию и семинары можно на сайте YellowBites website, а также в документации, которая идет с приложением.

    diff --git a/docs/userguide/ru/attributes.html b/docs/userguide/ru/attributes.html index c56162a647..3b1d0d4df6 100644 --- a/docs/userguide/ru/attributes.html +++ b/docs/userguide/ru/attributes.html @@ -42,12 +42,14 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • « Типы файлов :: Содержание -:: Индексация » +:: Содержание »
    @@ -166,7 +168,7 @@ Clara Botters : string : Whelton diff --git a/docs/userguide/ru/bash-scripting.html b/docs/userguide/ru/bash-scripting.html index 3eb8c730e6..f9fc396ae4 100644 --- a/docs/userguide/ru/bash-scripting.html +++ b/docs/userguide/ru/bash-scripting.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/ru/bootloader.html b/docs/userguide/ru/bootloader.html index 9505d9ffdf..3bc49adb24 100644 --- a/docs/userguide/ru/bootloader.html +++ b/docs/userguide/ru/bootloader.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/ru/contents.html b/docs/userguide/ru/contents.html index c31a0a2386..30afb9322b 100644 --- a/docs/userguide/ru/contents.html +++ b/docs/userguide/ru/contents.html @@ -4,7 +4,7 @@ @@ -41,6 +43,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -55,11 +59,11 @@
    Перевод этой страницы еще не завершен. Пока это не произойдет, незавершенные части будут на английском.
    - +
    Index
    Содержание
    - Easy moving and resizing
    - Stack & Tile
    - Open and save panels
    + Быстрый способ перемещения и изменения размера окон
    + Стекирование и прикремление
    + Диалоги открытия и сохранения
    Replicants
    @@ -77,15 +81,15 @@
  • Вы можете отправить окно на задний план при помоши правого щелчка мыши по заголовку или по краю окна.
  • Кнопка закрытия окна.

  • Позволяет развернуть окно на весь экран (или при помощи комбинации клавиш CTRL ALT Z).

  • -
  • Кнопка изменения размера окна. Потяните в любую сторону и окно поменяет свой размер.

  • +
  • Край окна. Движение мыши с нажатой левой кнопкой передвигает окно, с нажатой правой изменяет его размеры.

  • +
  • Угол окна. Потяните в любую сторону и окно поменяет свой размер.

  • index Быстрый способ перемещения и изменения размера окон

    -

    -Перемещение и изменение размера окон очень важный аспект при работе паралельно с несколькими программами. Вместо того чтобы дёргать за желтый ярлычок (читайте заголовок окна) или за тоненькие грани окна, либо за нижний правый угол, но есть более простой способ переместить окно.

    -

    Haiku предоставляет удобное чёткое решение данной проблемы - сочетание клавиш CTRL ALT и мыши. Для более подробного изучения управления окнами при помощи горячих клавиш обратитесь к теме Горячие клавиши

    +

    Перемещение и изменение размера окон очень важный аспект при параллельной работе с несколькими программами. Вместо того чтобы целиться на желтый заголовок окна или еще более тонкий край окна существует более удобный способ для перемещения окна. В дополнение к небольшому размеру угла окна он имеет и другое ограничение: с помощью него можно изменять размер окон только в направлении правого нижнего угла.
    Ищменение размера окна с помощью правого клика работает, но опять же, вам придется хорошенько прицелиться.

    +

    Haiku предоставляет удобное чёткое решение данной проблемы - сочетание клавиш CTRL ALT и мыши. Для более подробного изучения управления окнами при помощи горячих клавиш обратитесь к теме Горячие клавиши.

    resizing.png

    Во время удержания клавиш CTRL ALT вы увидите, как подсвечиваются границы окна, в зависимости от того к какому из краёв указатель мыши находится ближе. Нажмите и удерживайте правую кнопку мыши и потяните, окно изменит размеры по направлению подсвеченных границ окна.

    Во время удержания клавиш CTRL ALT нажмите и удерживайте левую кнопку мыши и потяните окно за любую область, таким образом вы сможете быстро переместить окно. Быстрый щелчок правой кнопкой мыши отправляет окно на задний план.

    diff --git a/docs/userguide/ru/images/apps-images/deskcalc.png b/docs/userguide/ru/images/apps-images/deskcalc.png new file mode 100644 index 0000000000..b4b14b991d Binary files /dev/null and b/docs/userguide/ru/images/apps-images/deskcalc.png differ diff --git a/docs/userguide/ru/images/deskbar-images/calendar.png b/docs/userguide/ru/images/deskbar-images/calendar.png index b805afaee5..4dc7413e29 100644 Binary files a/docs/userguide/ru/images/deskbar-images/calendar.png and b/docs/userguide/ru/images/deskbar-images/calendar.png differ diff --git a/docs/userguide/ru/images/deskbar-images/configure.png b/docs/userguide/ru/images/deskbar-images/configure.png index 228d1f1175..042d423f8e 100644 Binary files a/docs/userguide/ru/images/deskbar-images/configure.png and b/docs/userguide/ru/images/deskbar-images/configure.png differ diff --git a/docs/userguide/ru/images/deskbar-images/deskbar.png b/docs/userguide/ru/images/deskbar-images/deskbar.png index dd229aa60c..704e8880b3 100644 Binary files a/docs/userguide/ru/images/deskbar-images/deskbar.png and b/docs/userguide/ru/images/deskbar-images/deskbar.png differ diff --git a/docs/userguide/ru/images/deskbar-images/list-of-apps.png b/docs/userguide/ru/images/deskbar-images/list-of-apps.png index b70d31c26b..74f95d6073 100644 Binary files a/docs/userguide/ru/images/deskbar-images/list-of-apps.png and b/docs/userguide/ru/images/deskbar-images/list-of-apps.png differ diff --git a/docs/userguide/ru/images/filesystem-layout-images/achtung-system.png b/docs/userguide/ru/images/filesystem-layout-images/achtung-system.png index 093995a31f..fbcebee00c 100644 Binary files a/docs/userguide/ru/images/filesystem-layout-images/achtung-system.png and b/docs/userguide/ru/images/filesystem-layout-images/achtung-system.png differ diff --git a/docs/userguide/ru/images/filesystem-layout-images/achtung-user.png b/docs/userguide/ru/images/filesystem-layout-images/achtung-user.png index 886124b4fd..fa6d1cfa24 100644 Binary files a/docs/userguide/ru/images/filesystem-layout-images/achtung-user.png and b/docs/userguide/ru/images/filesystem-layout-images/achtung-user.png differ diff --git a/docs/userguide/ru/images/gui-images/gui.png b/docs/userguide/ru/images/gui-images/gui.png index d85838b2f6..6bcb6e5b38 100644 Binary files a/docs/userguide/ru/images/gui-images/gui.png and b/docs/userguide/ru/images/gui-images/gui.png differ diff --git a/docs/userguide/ru/images/prefs-images/appearance-antialiasing.png b/docs/userguide/ru/images/prefs-images/appearance-antialiasing.png index c205362069..b356c68bce 100644 Binary files a/docs/userguide/ru/images/prefs-images/appearance-antialiasing.png and b/docs/userguide/ru/images/prefs-images/appearance-antialiasing.png differ diff --git a/docs/userguide/ru/images/prefs-images/appearance-colors.png b/docs/userguide/ru/images/prefs-images/appearance-colors.png index 9aaebc8af8..de3048f0a3 100644 Binary files a/docs/userguide/ru/images/prefs-images/appearance-colors.png and b/docs/userguide/ru/images/prefs-images/appearance-colors.png differ diff --git a/docs/userguide/ru/images/prefs-images/appearance-decorators.png b/docs/userguide/ru/images/prefs-images/appearance-decorators.png new file mode 100644 index 0000000000..99f8921a4c Binary files /dev/null and b/docs/userguide/ru/images/prefs-images/appearance-decorators.png differ diff --git a/docs/userguide/ru/images/prefs-images/appearance-fonts.png b/docs/userguide/ru/images/prefs-images/appearance-fonts.png new file mode 100644 index 0000000000..bcf826db8b Binary files /dev/null and b/docs/userguide/ru/images/prefs-images/appearance-fonts.png differ diff --git a/docs/userguide/ru/images/prefs-images/e-mail-accounts.png b/docs/userguide/ru/images/prefs-images/e-mail-accounts.png new file mode 100644 index 0000000000..17694e831e Binary files /dev/null and b/docs/userguide/ru/images/prefs-images/e-mail-accounts.png differ diff --git a/docs/userguide/ru/images/workshop-wlan-images/join-network.png b/docs/userguide/ru/images/workshop-wlan-images/join-network.png new file mode 100644 index 0000000000..2fedecda91 Binary files /dev/null and b/docs/userguide/ru/images/workshop-wlan-images/join-network.png differ diff --git a/docs/userguide/ru/images/workshop-wlan-images/join-status.gif b/docs/userguide/ru/images/workshop-wlan-images/join-status.gif new file mode 100644 index 0000000000..dea116d418 Binary files /dev/null and b/docs/userguide/ru/images/workshop-wlan-images/join-status.gif differ diff --git a/docs/userguide/ru/index.html b/docs/userguide/ru/index.html index 3ae067f4bf..6af5d4f35b 100644 --- a/docs/userguide/ru/index.html +++ b/docs/userguide/ru/index.html @@ -18,7 +18,7 @@ - Индексация + Содержание @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -54,7 +56,7 @@
    -

    Индексация

    +

    Содержание

    Атрибуты и Запросы являются ключевыми особенностями Haiku. Хотя атрибуты и полезны для отображения дополнительной информации о файлах, но для поиска по ним требуется их проиндексировать. Индексы заносятся в таблицу поиска, что делает запросы мгновенными.
    Индекс является частью файловой системы и хранится отдельно для каждого раздела.

    diff --git a/docs/userguide/ru/keyboard-shortcuts.html b/docs/userguide/ru/keyboard-shortcuts.html index 6c1907416b..02a134c527 100644 --- a/docs/userguide/ru/keyboard-shortcuts.html +++ b/docs/userguide/ru/keyboard-shortcuts.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -52,7 +54,6 @@
    -
    Перевод этой страницы еще не завершен. Пока это не произойдет, незавершенные части будут на английском.

    Горячие клавиши

    @@ -67,7 +68,7 @@ - + diff --git a/docs/userguide/ru/preferences.html b/docs/userguide/ru/preferences.html index f156c1e5ec..14c68b5476 100644 --- a/docs/userguide/ru/preferences.html +++ b/docs/userguide/ru/preferences.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -69,8 +71,6 @@ - - diff --git a/docs/userguide/ru/preferences/appearance.html b/docs/userguide/ru/preferences/appearance.html index dd140da881..514e0e6709 100644 --- a/docs/userguide/ru/preferences/appearance.html +++ b/docs/userguide/ru/preferences/appearance.html @@ -4,7 +4,7 @@ @@ -43,6 +44,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -58,16 +61,35 @@
    ALT FxПереключиться на рабочий стол X (Fx, где x номер рабочего стола). Для перемещения активного окна следует также удерживать клавишу SHIFT.
    CTRL ALT ///Перемещение по рабочим столам. Для перемещения активного окна следует также удерживать клавишу SHIFT.
    OPTHolding OPT while dragging a window near another window's tab or border will stack or tile them (see chapter GUI).
    OPTПеремещайте одно окно за ярлычок к ярлычку другого и удерживайте в это время клавишу OPT и окна соединятся.(более подробно в теме Графический интерфейс).
    CTRL ALT + левый щелчок мышиДля перемещения окна щёлкните левой кнопкой мыши и потащите его. (более подробно в теме Графический интерфейс).
    CTRL ALT + правый щелчок мышиДля изменения размера окна щёлкните правой кнопкой мыши и потащите его. (более подробно в теме Графический интерфейс).
    CTRL ALT ZРазвернуть активное окно на весь экран.
    Настройка E-mail аккаунтов.
    iconТипы файлов Добавление, удаление и настройка типов файлов.
    iconШрифты Настройка системных шрифтов.
    iconКлавиатура Настройка частоты повторения и задержки ввода после нажатия клавиши.
    iconРаскладка
    - +
    Расположение в Deskbar:Настройки (Preferences)
    Расположение в Tracker:/boot/system/preferences/Appearance
    Настройки хранятся по адресу: ~/config/settings/system/app_server/appearance
    Настройки хранятся по адресу:~/config/settings/system/app_server/appearance
    +~/config/settings/system/app_server/decorator_settings
    +~/config/settings/system/app_server/fonts

    С помощью панели настройки Внешний вид вы сможете изменить некоторые свойства внешнего вида Haiku.

    +

    +index +Шрифты

    +appearance-fonts.png +

    Haiku определяет 3 стандартных шрифта для различных целей. Вы можете установить простые, жирные и моноширинные типы шрифтов, а также размеры, которые будут использованы во всей системе. Кроме этого есть еще отдельная настройка для шрифта, использующегося в меню.

    + +

    +index +Установка новых шрифтов

    +

    Вы можете установить новые шрифты, скопировав их в соответствующую папку, например, /boot/common/data/fonts/ или /boot/home/config/data/fonts/.(см. также раздел Структура файловой системы).

    +

    index Цвета

    appearance-colors.png

    На вкладке Цвета вы можете изменять цвет различных элементов интерфейса. Метод drag&drop позволит вам указать нужный цвет из других программ, таких как WonderBrush, Icon-O-Matic или панели Фон.

    +

    +index +Декораторы окон

    +appearance-decorators.png +

    Декораторы определяют внешний вид окон и всех элелементов пользовательского интерфейса. Сейчас Haiku имеет по умолчанию только один декоратор. Если Вы найдете и установите другие декораторы, Вы сможете выбрать их в данном меню.

    +

    index Сглаживание

    diff --git a/docs/userguide/ru/preferences/backgrounds.html b/docs/userguide/ru/preferences/backgrounds.html index 0645f3078b..79fa89795d 100644 --- a/docs/userguide/ru/preferences/backgrounds.html +++ b/docs/userguide/ru/preferences/backgrounds.html @@ -43,6 +43,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -59,7 +61,7 @@ -
    Расположение в Deskbar:Настройки (Preferences)
    Расположение в Tracker:/boot/system/preferences/Backgrounds
    Настройки хранятся по адресу: ~/config/settings/system/app_server/workspaces
    +
    Настройки хранятся по адресу:~/config/settings/system/app_server/workspaces
    ~/config/settings/Backgrounds settings - хранятся координаты окна панели.

    Вы можете назначить любой цвет или изображение в качестве фона для каждого рабочего стола или папки.

    diff --git a/docs/userguide/ru/preferences/datatranslations.html b/docs/userguide/ru/preferences/datatranslations.html index a141d8c39f..9b92707959 100644 --- a/docs/userguide/ru/preferences/datatranslations.html +++ b/docs/userguide/ru/preferences/datatranslations.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -58,7 +60,7 @@ -
    Расположение в Deskbar:Настройки (Preferences)
    Расположение в Tracker:/boot/system/preferences/DataTranslations
    Настройки хранятся по адресу: ~/config/settings/* - Здесь каждый транслятор создает файл своих настроек, когда вы меняете настройки по умолчанию.
    +
    Настройки хранятся по адресу:~/config/settings/* - Здесь каждый транслятор создает файл своих настроек, когда вы меняете настройки по умолчанию.
    ~/config/settings/system/DataTranslations settings - Запоминает настройки положения окна.

    Любое приложение получает возможность открывать и сохранять файлы такого формата, для которого установлен транслятор. Настройки трансляторов задаются в этом приложении.

    diff --git a/docs/userguide/ru/preferences/deskbar.html b/docs/userguide/ru/preferences/deskbar.html index 3967518f2f..5fa6fea3ac 100644 --- a/docs/userguide/ru/preferences/deskbar.html +++ b/docs/userguide/ru/preferences/deskbar.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -57,7 +59,7 @@ -
    Расположение в Deskbar:Настройки (Preferences)
    Расположение в Tracker:/boot/system/preferences/Deskbar
    Настройки хранятся по адресу: ~/config/settings/Deskbar_settings
    +
    Настройки хранятся по адресу:~/config/settings/Deskbar_settings
    ~/config/settings/Deskbar_security_code


    diff --git a/docs/userguide/ru/preferences/e-mail.html b/docs/userguide/ru/preferences/e-mail.html index 2c2a95191f..f360c24985 100644 --- a/docs/userguide/ru/preferences/e-mail.html +++ b/docs/userguide/ru/preferences/e-mail.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -55,22 +57,21 @@
    Перевод этой страницы еще не завершен. Пока это не произойдет, незавершенные части будут на английском.
    - + + Создание нового почтового аккаунта
    + Настройки аккаунта
    + Настройки входящей почты
    + Настройки исходящей почты
    + Настройки почтовых фильтров
    + Настройка почтового сервиса
    Индексация
    Содержание
    - Creating a new e-mail account
    - Account settings
    - Setting up incoming e-mail
    - Setting up outgoing e-mail
    - Notifications and e-mail filters
    - Setting up the Mail Service -

    e-mail-icon_64.pngЭлектронная почта (E-mail)

    - +
    Расположение в Deskbar:Настройки (Preferences)
    Расположение в Tracker:/boot/system/preferences/E-mail
    Настройки хранятся по адресу: ~/config/settings/Mail/*
    Настройки хранятся по адресу:~/config/settings/Mail/*

    В Haiku включена система, которая регулярно доставляет электронную почту через почтовый сервис (также известный как mail_daemon) и сохраняет каждое письмо как один текстовый файл. Она анализирует письмо и заполняет его атрибуты всей необходимой информацией: от кого оно, к кому, тема письма и статус, что оно не прочитано, после чего эти данные становятся доступны вам и любому приложению. Также эта система позволяет легко менять почтовые клиенты, так как все данные и настройки остаются неизменными. Все параметры настраиваются в панели настроек электронной почты (E-Mail).

    @@ -79,11 +80,12 @@ index Создание нового аккаунта электронной почты

    Пройдем через весь процесс настройки аккаунта электронной почты.
    -Сперва нажмите на кнопку Добавить (Add), чтобы создать новый аккаунт, при этом откроется панель, в которой необходимо заполнить ваши регистрационные данные:

    +Сперва нажмите на кнопку Добавить, чтобы создать новый аккаунт, при этом откроется панель, в которой необходимо заполнить ваши регистрационные данные:

    e-mail-new-account.png -

    First, you set how you get your mail, via POP3 or IMAP.

    -

    Теперь введите ваш Адрес электронной почты (E-mail address), Логин (Login name) и Пароль (Password), задайте Имя аккаунта (Account name), которое будет использоваться в Haiku, и ваше Реальное имя (Real name).

    -

    If your account is from a major e-mail provider, Haiku already knows all technical details like server IP addresses. If that is not the case, clicking Next will open another window to enter this information by hand:

    +

    Вначале, вы выбираете как вы будете получать свою почту: через протокол POP3 или IMAP.

    +

    Теперь введите ваш E-mail адрес, Имя пользователя и Пароль, задайте Имя аккаунта, которое будет использоваться в Haiku, и ваше Настоящее имя.

    +

    Если у вас аккаунт от крупного провайдера электронной почты, то в Haiku уже встроены технические сведения, такие как IP-адреса серверов. Эта информация заполнится автоматически. Если этого не произошло, +нажатие кнопки Далее откроет другое окно, где можно будет ввести нужную информацию вручную:

    e-mail-new-account-2.png

    You first set the Server name, Login type and Connection type for the incoming mail, below that for the outgoing mail. You should find the necessary information on your email provider's website.
    See below for more info about the various settings and additional options.

    @@ -92,7 +94,7 @@ See below for more info about the various settings and additional options.

    index Account settings

    By selecting the name of an account in the left list, you can change some general settings:

    -e-mail-settings.png +e-mail-accounts.png

    The Account name is the name that's shown for example in the list of accounts in the E-mail preferences. Real name is the name someone sees when she gets mail from you. Return address is the email address that is used when someone replies to your mail. Normally that is the same address you've sent your email from.

    If you'd like to use an email account to only send or only receive email, you can de/activate that usage by right-clicking the account's name in the leftside list to set the checkmarks accordingly.

    diff --git a/docs/userguide/ru/preferences/filetypes.html b/docs/userguide/ru/preferences/filetypes.html index 4e83935290..e6b96f9096 100644 --- a/docs/userguide/ru/preferences/filetypes.html +++ b/docs/userguide/ru/preferences/filetypes.html @@ -41,12 +41,14 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  •  «  Электронная почта (E-mail)  ::  Настройки  -::  Шрифты  » +::  Клавиатура (Keyboard)  »
    @@ -57,7 +59,7 @@ -
    Расположение в Deskbar:Настройки (Preferences)
    Расположение в Tracker:/boot/system/preferences/FileTypes
    Настройки хранятся по адресу: ~/config/settings/FileTypes settings
    +
    Настройки хранятся по адресу:~/config/settings/FileTypes settings
    ~/config/settings/beos_mime/* - хранятся все MIME-типы.

    Следует обратиться к темам - Типы файлов и Семинар на тему: типы файлов, атрибуты, индексация и запросы, которые содержат описание этой панели настроек.

    @@ -70,7 +72,7 @@
    --> diff --git a/docs/userguide/ru/preferences/fonts.html b/docs/userguide/ru/preferences/fonts.html index 1047c5bb11..143f613bd9 100644 --- a/docs/userguide/ru/preferences/fonts.html +++ b/docs/userguide/ru/preferences/fonts.html @@ -41,46 +41,51 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  Типы файлов (FileTypes)  -::  Настройки  -::  Клавиатура (Keyboard)  » + « Типы файлов (FileTypes) +:: Настройки +:: Клавиатура (Keyboard) »
    +
    Перевод этой страницы еще не завершен. Пока это не произойдет, незавершенные части будут на английском.
    + +

    Since "Fonts" moved into the Appearance panel, this is an outdated page. Do not translate!

    fonts-icon_64.pngШрифты

    - +
    Расположение в Deskbar:Настройки (Preferences)
    Расположение в Tracker:/boot/system/preferences/Fonts
    Настройки хранятся по адресу: ~/config/settings/system/app_server/fonts
    -~/config/settings/Font_settings - хранятся координаты окна панели.
    Настройки хранятся по адресу:~/config/settings/system/app_server/fonts
    +~/config/settings/Font_settings - сожержит координаты окна панели.


    fonts.png -

    Haiku определяет три стандартных шрифта для различных целей. Вы можете установить обычный, жирный и курсивный типы шрифтом и размеры, которые будут использоваться во всей системе. Помимо этих трех, есть также настройки для шрифта, используемого в меню.

    +

    Haiku определяет 3 стандартных шрифта для различных целей. Вы можете установить простые, жирные и моноширинные типы шрифтов, а также размеры, которые будут использованы во всей системе. Кроме этого есть еще отдельная настройка для шрифта, использующегося в меню.

    - - + +
    По умолчанию сбросить текущие настройки и установить их на значения по умолчанию.
    Вернуть вернуть настройки, которые были установлены до запуска панели настройки.
    По умолчанию сбросить текущие настройки и установить их на значения по умолчанию.
    Вернуть вернуть настройки, которые были установлены до запуска панели настройки.

    index Установка новых шрифтов

    -

    Установить новые шрифты можно, скопировав их в соответствующую папку, например, в /boot/common/data/fonts/ или /boot/home/config/data/fonts/ (Для того чтобы определить, в какую, смотрите тему иерархия файловой системы).

    +

    Вы можете установить новые шрифты, скопировав их в соответствующую папку, например, /boot/common/data/fonts/ или /boot/home/config/data/fonts/.(см. также раздел Структура файловой системы).

    diff --git a/docs/userguide/ru/preferences/keyboard.html b/docs/userguide/ru/preferences/keyboard.html index b4a23181f9..f5555a1002 100644 --- a/docs/userguide/ru/preferences/keyboard.html +++ b/docs/userguide/ru/preferences/keyboard.html @@ -41,10 +41,12 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  Шрифты  + «  Типы файлов (FileTypes)  ::  Настройки  ::  Раскладка (Keymap)  » @@ -57,7 +59,7 @@ - +
    Расположение в Deskbar:Настройки (Preferences)
    Расположение в Tracker:/boot/system/preferences/Keyboard
    Настройки хранятся по адресу: ~/config/settings/Keyboard_settings
    Настройки хранятся по адресу:~/config/settings/Keyboard_settings


    keyboard.png @@ -73,7 +75,7 @@ @@ -41,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -58,18 +61,18 @@ -
    Расположение в Deskbar:Настройки (Preferences)
    Расположение в Tracker:/boot/system/preferences/Screen
    Настройки хранятся по адресу: ~/config/settings/system/app_server/workspaces
    +
    Настройки хранятся по адресу:~/config/settings/system/app_server/workspaces
    ~/config/settings/kernel/drivers/vesa - только для активного ВЕЗА режима.
    ~/config/settings/Screen_data - сохраняется положение окон.
    -

    Each of your workspaces can have its own resolution, color depth and refresh rate.

    +

    Каждое из ваших рабочих мест может иметь свое собственное разрешение и глубину цвета.

    screen.png

    The top menu specifies if your changes are applied only to the current or to all workspaces. Depending on your graphics card, the other menus contain all supported resolution, color depth and refresh rate settings.

    После нажатия кнопки Применить графический режим сменится и появится окно для подтверждения сделанных изменений. Если вы их не подтвердите, то графический режим через 12 секунд вернётся к предыдущим настройкам, так как имеется вероятность, что вы не увидите это окно, если применённые настройки не поддерживаются вашим монитором.

    -

    Слева вы можете задать количество рабочих столов в порядке их расположения (Столбцы и Ряды) и открыть настройки Фона.

    +

    To the left, you see a representation of your screen with the manufacturer and model it reports and it's resolution in dots per inch (dpi). Hovering the mouse pointer over it shows a tooltip with the name of graphics card if it's supported by a driver. Otherwise it says "VESA", the quick fallback solution that works with pretty much every hardware.

    Кнопка Вернуть возвращает установки, которые были активны при открытии окна настроек экрана.

    While Haiku's VESA mode performs very well, you may experience some limitations. You may not be able to drive your widescreen display in its native resolution, resulting in a somewhat blurred picture. There may also be limitations with regard to available color depths and refresh rates.
    -

    To the bottom left you can set the number of workspaces and arrange them in columns and rows and open the Backgrounds preferences.

    +

    В левом нижнем углу вы можете задать количество рабочих столов в порядке их расположения (Столбцы и Ряды) и открыть настройки Фона.

    diff --git a/docs/userguide/ru/preferences/screensaver.html b/docs/userguide/ru/preferences/screensaver.html index bf278e0a72..200fd51187 100644 --- a/docs/userguide/ru/preferences/screensaver.html +++ b/docs/userguide/ru/preferences/screensaver.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -57,7 +59,7 @@ - +
    Расположение в Deskbar:Настройки (Preferences)
    Расположение в Tracker:/boot/system/preferences/Screensaver
    Настройки хранятся по адресу: ~/config/settings/ScreenSaver_settings
    Настройки хранятся по адресу:~/config/settings/ScreenSaver_settings

    Окно настроек хранителя экрана разбито на две вкладки:

    diff --git a/docs/userguide/ru/preferences/sounds.html b/docs/userguide/ru/preferences/sounds.html index 1f62016958..dd4f1c010f 100644 --- a/docs/userguide/ru/preferences/sounds.html +++ b/docs/userguide/ru/preferences/sounds.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -57,7 +59,7 @@ - +
    Расположение в Deskbar:Настройки (Preferences)
    Расположение в Tracker:/boot/system/preferences/Sounds
    Настройки хранятся по адресу: ~/config/settings/Media/MMediaFilesManager
    Настройки хранятся по адресу:~/config/settings/Media/MMediaFilesManager


    sounds.png diff --git a/docs/userguide/ru/preferences/time.html b/docs/userguide/ru/preferences/time.html index 1ae953fae5..7007415c5e 100644 --- a/docs/userguide/ru/preferences/time.html +++ b/docs/userguide/ru/preferences/time.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -57,7 +59,7 @@ -
    Расположение в Deskbar:Настройки (Preferences)
    Расположение в Tracker:/boot/system/preferences/Time
    Настройки хранятся по адресу: ~/config/settings/RTC_time_settings
    +
    Настройки хранятся по адресу:~/config/settings/RTC_time_settings
    ~/config/settings/timezone - ссылка на текущий часовой пояс в /boot/system/etc/timezones/*/*
    ~/config/settings/Time_settings - хранит координаты окна.
    diff --git a/docs/userguide/ru/preferences/touchpad.html b/docs/userguide/ru/preferences/touchpad.html index ce8c8f31f4..39f5d9dfc7 100644 --- a/docs/userguide/ru/preferences/touchpad.html +++ b/docs/userguide/ru/preferences/touchpad.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -59,7 +61,7 @@ - +
    Расположение в Deskbar:Настройки (Preferences)
    Расположение в Tracker:/boot/system/preferences/Touchpad
    Настройки хранятся по адресу: ~/config/settings/Touchpad_settings
    Настройки хранятся по адресу:~/config/settings/Touchpad_settings

    Предлагает настройки сенсорной панели, которые будут полезны при использовании Haiku на ноутбуке.

    diff --git a/docs/userguide/ru/preferences/tracker.html b/docs/userguide/ru/preferences/tracker.html index 98e09ac8bc..a246b889c0 100644 --- a/docs/userguide/ru/preferences/tracker.html +++ b/docs/userguide/ru/preferences/tracker.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -56,7 +58,7 @@ - +
    Расположение в Deskbar:Настройки (Preferences)
    Расположение в Tracker:/boot/system/preferences/Tracker
    Настройки хранятся по адресу: ~/config/settings/Tracker/TrackerSettings
    Настройки хранятся по адресу:~/config/settings/Tracker/TrackerSettings


    Панель настроек Tracker доступна в меню Окно | Настройки (Window | Preferences...) любого окна Tracker.
    diff --git a/docs/userguide/ru/preferences/virtualmemory.html b/docs/userguide/ru/preferences/virtualmemory.html index ba70644dd5..a8a3dfa356 100644 --- a/docs/userguide/ru/preferences/virtualmemory.html +++ b/docs/userguide/ru/preferences/virtualmemory.html @@ -42,6 +42,8 @@

  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -57,7 +59,7 @@ -
    Расположение в Deskbar:Настройки (Preferences)
    Расположение в Tracker:/boot/system/preferences/VirtualMemory
    Настройки хранятся по адресу: ~/config/settings/kernel/drivers/virtual_memory
    +
    Настройки хранятся по адресу:~/config/settings/kernel/drivers/virtual_memory
    ~/config/settings/VM_data - Хранит координаты окна.

    Виртуальная память позволяет системе осуществлять подкачку данных с диска, в случае если ОЗУ может быть использована более рационально для других задач. Даже если у вас установлен большой объем ОЗУ, использование виртуальной памяти не будет плохой идеей.

    diff --git a/docs/userguide/ru/queries.html b/docs/userguide/ru/queries.html index d0ce36fb4a..bc2f7b0f1f 100644 --- a/docs/userguide/ru/queries.html +++ b/docs/userguide/ru/queries.html @@ -42,10 +42,12 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - « Индексация + « Содержание :: Содержание :: Семинар » @@ -56,7 +58,7 @@ - +
    Индексация
    Содержание
    Окно поиска
    Базовые запросы - "по имени"
    @@ -157,7 +159,7 @@
    /boot/common/add-ons/Tracker/   для дополнений, доступных всем пользователям.
    /boot/home/config/add-ons/Tracker/   для дополнений, доступных только текущему пользователю.
    -

    The file name of an add-on can be suffixed with a dash and capital letter, and is then available via keyboard shortcut. For example, Open Target Folder-O opens with ALT OPT O.
    -Of course, you have to take care of possible shortcut collisions when deciding on a shortcut. You can't have the same for different add-ons.

    +

    К имени файла дополнения может быть добавлено тире с заглавной буквой, и тогда оно станет доступно через горячие клавиши. Например, Open Target Folder-O (Открыть целевую папку) откроется при нажатии ALT OPT O.
    +Конечно, вы должны позаботиться о возможных конфликтах, выбирая горячую клавишу. У разных дополнений они должны быть разными.

    Дополнения Tracker из Haiku

    Следующие дополнения Tracker имеются в каждой установленной Haiku:

    diff --git a/docs/userguide/ru/tracker.html b/docs/userguide/ru/tracker.html index e79914d16e..0102c1ae3d 100644 --- a/docs/userguide/ru/tracker.html +++ b/docs/userguide/ru/tracker.html @@ -14,6 +14,7 @@ * Diver * Alex11223 * Emalf Tallefer + * PoZorro * --> @@ -43,6 +44,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -58,7 +61,7 @@ - +
    Индексация
    Содержание
    Подключение дисков
    Навигация
    @@ -129,7 +132,7 @@

    Меню Окно также предоставляет ряд других функций:

      -
    • Resize window (ALT Y) - Resizes the window to its ideal size.

    • +
    • Подогнать размер окна (ALT Y) - Подогнать окно по размеру.

    • Arrange by... - Only available in Icon or Mini icon view, a submenu allows to set the sorting order to various properties:

      • Name, Real name, Size, Modified, Created, Kind, Location, Permissions

      • diff --git a/docs/userguide/ru/twitcher.html b/docs/userguide/ru/twitcher.html index 6d88935522..ec605783a4 100644 --- a/docs/userguide/ru/twitcher.html +++ b/docs/userguide/ru/twitcher.html @@ -41,6 +41,8 @@
      • Português
      • Suomi
      • Slovenčina
      • +
      • Magyar
      • +
      • Português (Brazil)
      • English
      diff --git a/docs/userguide/ru/workshop-email.html b/docs/userguide/ru/workshop-email.html index 6013e72145..e337ff1ae6 100644 --- a/docs/userguide/ru/workshop-email.html +++ b/docs/userguide/ru/workshop-email.html @@ -38,6 +38,8 @@
    • Português
    • Suomi
    • Slovenčina
    • +
    • Magyar
    • +
    • Português (Brazil)
    • English
    @@ -54,7 +56,7 @@ - +
    Index
    Содержание
    Haiku's mail system
    Using custom statuses
    diff --git a/docs/userguide/ru/workshop-filetypes+attributes.html b/docs/userguide/ru/workshop-filetypes+attributes.html index 03d21ba980..81a95b3427 100644 --- a/docs/userguide/ru/workshop-filetypes+attributes.html +++ b/docs/userguide/ru/workshop-filetypes+attributes.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -55,7 +57,7 @@ - +
    Индексация
    Содержание
    Подготовка
    Создание пользовательского типа файла
    diff --git a/docs/userguide/ru/workshop-wlan.html b/docs/userguide/ru/workshop-wlan.html new file mode 100644 index 0000000000..afde1a1fea --- /dev/null +++ b/docs/userguide/ru/workshop-wlan.html @@ -0,0 +1,147 @@ + + + + + + + + + Workshop: Wireless networking + + + + + + + + +
    +
    +
    Перевод этой страницы еще не завершен. Пока это не произойдет, незавершенные части будут на английском.
    + + + + + +
    Содержание
    + Getting supported hardware to work
    + Joining a wireless network
    + Joining from the command line
    + Tips +
    + +

    Workshop: Wireless networking

    + +

    Getting the networking to run is essential in today's need for permanent internet connection. As keeping up to date with all the different and ever changing hardware and drivers is quite impossible for a small project, Haiku relies on a FreeBSD compatibility layer for its networking drivers.
    +This ensures a massive amount of supported hardware, though probably not 100% of what's out there. See this list online for a list of supported models or check FreeBSD 9's release hardware notes.

    +
    Currently only PCI, PCI-X, PCI-Express, Mini PCI, and Mini PCI-Express devices are expected to work.
    +PCMCIA, CardBus, ExpressCard, USB and ISA devices still need more work to become functional.
    + +

    +index +Getting supported hardware to work

    +

    Even if the first hurdle of generally supported hardware is taken, some wireless network cards require binary firmware modules to properly operate. Haiku cannot include some of these proprietary firmware files due to licensing issues. Haiku does however include a simple script which will retrieve and install all of the needed proprietary bits for you. Generally, if you are planning to use wireless networking, it is a good idea to run this script to ensure your system has all of these firmwares available when they are needed.

    +

    Open a Terminal and type:

    +
    install-wifi-firmwares.sh
    +

    Now review the licenses and accept them to install all of the available firmware files.

    + +

    If you don't have internet access to download those lacking firmwares under Haiku, there's an offline method, see under tips below.

    + +

    +index +Joining a wireless network

    +

    By default, Haiku will join the first unencrypted wireless network it finds after booting up. To connect to a specific network, you use the Desktop applet NetworkStatus.

    +

    Right-click on its icon in the Deskbar and choose the network's public name (which is the "SSID" it broadcasts) from the context menu.

    +join-network.png +

    A window opens where you enter the type of authentication (probably WPA/WPA2, WEP is not a secure encryption anymore!) and the password for that wireless network. Click OK to start the login process.
    Depending on your hardware and network configuration this may take a while. You'll be kept informed of the progress by notifications:

    +join-network.gif +

    Once it reads "Ready" and the NetworkStatus icon in the Deskbar shows a green round light, the connection is established. If the notifications end in "No link" and a yellow triangle, something went wrong, probably an incorrect password.

    + +

    +index +Joining from the command line

    +

    If you prefer to use the command line or would like to use scripting or the ~/config/boot/UserBootscript to automate things to join a specific network on bootup, there's the command ifconfig.

    +

    Start a Terminal and enter the first line to scan for available wireless networks:

    +
    ifconfig /dev/net/iprowifi3945/0 scan
    +name                             address              signal  auth
    +haiku-top                        01:d0:19:a6:88:42        30  WPA
    +ArcorInternet123                 00:20:12:a4:29:e1        15  WPA
    +

    The path to your wireless network adapter has to be adjusted, of course.
    +The output shows the public name (SSID), MAC address, signal strength and authentication method of all found networks.

    +

    To join a network, use this line and insert the respective public name (SSID) and password:

    +
    ifconfig /dev/net/iprowifi3945/0 join {SSID} {password}
    +

    Make sure the initial configuration of the wireless network adapter after booting up has finished, before issuing ifconfig commands or they might be ignored. Depending on your hardware and network configuration that may take a while. Watch those notifications...

    + +

    +index +Tips

    + + +
    +
    + + + + + diff --git a/docs/userguide/ru/workspaces.html b/docs/userguide/ru/workspaces.html index b67bd19cea..1df133f81d 100644 --- a/docs/userguide/ru/workspaces.html +++ b/docs/userguide/ru/workspaces.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications.html b/docs/userguide/sk/applications.html index d29ab33af5..36c2362f78 100644 --- a/docs/userguide/sk/applications.html +++ b/docs/userguide/sk/applications.html @@ -42,6 +42,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/activitymonitor.html b/docs/userguide/sk/applications/activitymonitor.html index 43bb52deb9..7b5ef19a1a 100644 --- a/docs/userguide/sk/applications/activitymonitor.html +++ b/docs/userguide/sk/applications/activitymonitor.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/bepdf.html b/docs/userguide/sk/applications/bepdf.html index 65d10f7965..fec46aea67 100644 --- a/docs/userguide/sk/applications/bepdf.html +++ b/docs/userguide/sk/applications/bepdf.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/bootmanager.html b/docs/userguide/sk/applications/bootmanager.html index 9464a9113d..ee6617fd37 100644 --- a/docs/userguide/sk/applications/bootmanager.html +++ b/docs/userguide/sk/applications/bootmanager.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/cdplayer.html b/docs/userguide/sk/applications/cdplayer.html index d0b75cabb0..596880ce55 100644 --- a/docs/userguide/sk/applications/cdplayer.html +++ b/docs/userguide/sk/applications/cdplayer.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/charactermap.html b/docs/userguide/sk/applications/charactermap.html index 96025a5ff6..c1da10e2eb 100644 --- a/docs/userguide/sk/applications/charactermap.html +++ b/docs/userguide/sk/applications/charactermap.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/cli-apps.html b/docs/userguide/sk/applications/cli-apps.html index 5d0bd49d18..d676e9ef70 100644 --- a/docs/userguide/sk/applications/cli-apps.html +++ b/docs/userguide/sk/applications/cli-apps.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/codycam.html b/docs/userguide/sk/applications/codycam.html index 60b3b95030..dc6cbe0734 100644 --- a/docs/userguide/sk/applications/codycam.html +++ b/docs/userguide/sk/applications/codycam.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/deskcalc.html b/docs/userguide/sk/applications/deskcalc.html index 0d31d6b98b..b09e5e2ca0 100644 --- a/docs/userguide/sk/applications/deskcalc.html +++ b/docs/userguide/sk/applications/deskcalc.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -61,7 +63,7 @@


    Kalkulačka je jednoduchá kalkulačka, ktorá má ale niekoľko príjemných funkcií, ktoré nie sú zrejmé pri prvom pohľade.

    -deskcalc.png +deskcalc.png
    • Kalkulačka rozumie oveľa viac veciam, než naznačuje jej jednoduchá klávesnica.
      Okrem operátorov +, -, *, /, %, ^ a konštánt pi and e sú podporované nasledujúce matematické funkcie:
      diff --git a/docs/userguide/sk/applications/diskprobe.html b/docs/userguide/sk/applications/diskprobe.html index 113b2908d0..5503b897da 100644 --- a/docs/userguide/sk/applications/diskprobe.html +++ b/docs/userguide/sk/applications/diskprobe.html @@ -41,6 +41,8 @@

    •  中文 [中文]
    • Português
    • Suomi
    • +
    • Magyar
    • +
    • Português (Brazil)
    • English
    diff --git a/docs/userguide/sk/applications/diskusage.html b/docs/userguide/sk/applications/diskusage.html index e424d3f401..d33ff63745 100644 --- a/docs/userguide/sk/applications/diskusage.html +++ b/docs/userguide/sk/applications/diskusage.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/drivesetup.html b/docs/userguide/sk/applications/drivesetup.html index a85df10e96..a3822d9295 100644 --- a/docs/userguide/sk/applications/drivesetup.html +++ b/docs/userguide/sk/applications/drivesetup.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/expander.html b/docs/userguide/sk/applications/expander.html index 667c3b665c..e000dc48f2 100644 --- a/docs/userguide/sk/applications/expander.html +++ b/docs/userguide/sk/applications/expander.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -64,14 +66,14 @@ Len dvakrát kliknite na archív, aby sa vám zobrazilo toto jednoduché rozhranie:

    expander.png

    - +
    ZdrojALT Sotvorí súborový dialóg na nájdenie archívu na rozbalenie.
    ZdrojALT Ootvorí súborový dialóg na nájdenie archívu na rozbalenie.
    CieľALT Dotvorí súborový dialóg na výber cieľa.
    RozbaliťALT Ezačne rozbaľovať. To môžete prerušiť pomocou ALT K.

    Môžete prepnúť medzi zobrazovaním zoznamu súborom ne/začiarknutím Zobraziť obsah alebo stlačením ALT L.

    Rozbaľovač dokáže rozbaliť len celé archívy.
    Nemôžete vybrať jednotlivé súbory na rozbalenie, alebo pridať/odstrániť súbory z archívu.
    -

    Nastavenia | Nastavenia... alebo ALT P otvorí panel nastavení, ktoré poskytujú niektoré užitočné voľby na nastavenie správania sa Rozbaľovača.
    +

    Nastavenia | Nastavenia... alebo ALT S otvorí panel nastavení, ktorý poskytuje niektoré užitočné voľby na nastavenie správania sa Rozbaľovača.
    Voľby vysvetľuje ich názov:

    expander-preferences.png

    diff --git a/docs/userguide/sk/applications/icon-o-matic.html b/docs/userguide/sk/applications/icon-o-matic.html index e00ee72b6b..653f6965a1 100644 --- a/docs/userguide/sk/applications/icon-o-matic.html +++ b/docs/userguide/sk/applications/icon-o-matic.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -52,10 +54,9 @@
    -
    Preklad tejto stránky zatiaľ nie je dokončený. Dovtedy sa nedokončené časti zobrazia v anglickom origináli.
    - + +
    Index
    Obsah
    BeOS bitmapové vs. Haiku vektorové ikony
    Ikony sú atribúty
    Tvorenie ikon v Icon-O-Matic
    @@ -284,10 +285,10 @@ Samozrejme, tieto indikátory môžete presúvať a meniť tak farebný prechod

    Vlastnosti transformátora

    Okrem Názvu a Šírky ponúka okno Vlastností transformátora (v závislosti od typu mierne odlišné) možnosti:

    - + - - + +
    ZakončeniaStroke only. Defines the end caps of a line: Butt, Square or Round.
    ZakončeniaIba pre Ťah. Definuje zakončenia čiary: Rovné, Štvorcové alebo Okrúhle.
    Detegovať orient.Iba pre Obrys. Určuje, či sa obrys nachádza vo vnútornej alebo vonkajšej strane cesty.
    SpojeDefines how lines are joint at a point: Miter, Round or Bevel.
    Limit ostrého spojaOnly when the above Joins is set to "Miter" this setting influences the looks of the miter joint.
    SpojeUrčuje akým spôsobom sa čiary spájajú v bode: Ostrý, Oblý alebo Zrazený.
    Limit ostrého spojaIba keď sú hore uvedené Spoje nastavené na „Ostrý“, toto nastavenie má vplyv na vzhľad ostrého spoja.
    diff --git a/docs/userguide/sk/applications/installer.html b/docs/userguide/sk/applications/installer.html index 81b60e73a3..667bd2df14 100644 --- a/docs/userguide/sk/applications/installer.html +++ b/docs/userguide/sk/applications/installer.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/list-cli-apps.html b/docs/userguide/sk/applications/list-cli-apps.html index 0f759fe4e6..e4cc2c0f7c 100644 --- a/docs/userguide/sk/applications/list-cli-apps.html +++ b/docs/userguide/sk/applications/list-cli-apps.html @@ -42,6 +42,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -53,7 +55,6 @@
    -
    Preklad tejto stránky zatiaľ nie je dokončený. Dovtedy sa nedokončené časti zobrazia v anglickom origináli.

    cli-app-icon_64.pngZoznam všetkých aplikácií príkazového riadka

    @@ -87,7 +88,7 @@ - + diff --git a/docs/userguide/sk/applications/magnify.html b/docs/userguide/sk/applications/magnify.html index 656284a0be..7b7d0850f6 100644 --- a/docs/userguide/sk/applications/magnify.html +++ b/docs/userguide/sk/applications/magnify.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/mail.html b/docs/userguide/sk/applications/mail.html index 322acb3513..345ba9ab30 100644 --- a/docs/userguide/sk/applications/mail.html +++ b/docs/userguide/sk/applications/mail.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -54,7 +56,7 @@
    catattr Vypíše obsah atribútu súboru. (špecifické pre Haiku)
    cc Kompilátor jazyka C
    checkfs Skontroluje a opraví súborový systém. (špecifické pre Haiku)
    checkitout Checks out sources simply with their repository's URL.
    checkitout Extrahuje zdroje na základe URL ich úložiska.
    chgrp Zmení skupinu, ktorá vlastní súbory.
    chmod Zmení oprávnenia na prístup k súborom.
    chop Rozdelí súbor na viacero menších súborov.
    - + diff --git a/docs/userguide/sk/applications/mediaplayer.html b/docs/userguide/sk/applications/mediaplayer.html index df3b9d0187..85ac089307 100644 --- a/docs/userguide/sk/applications/mediaplayer.html +++ b/docs/userguide/sk/applications/mediaplayer.html @@ -42,6 +42,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/midiplayer.html b/docs/userguide/sk/applications/midiplayer.html index a89a09886e..8dff355f98 100644 --- a/docs/userguide/sk/applications/midiplayer.html +++ b/docs/userguide/sk/applications/midiplayer.html @@ -42,6 +42,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/packageinstaller.html b/docs/userguide/sk/applications/packageinstaller.html index cd9651bcdc..628d48e004 100644 --- a/docs/userguide/sk/applications/packageinstaller.html +++ b/docs/userguide/sk/applications/packageinstaller.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/pe.html b/docs/userguide/sk/applications/pe.html index 03602fe861..c3047aac2c 100644 --- a/docs/userguide/sk/applications/pe.html +++ b/docs/userguide/sk/applications/pe.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/people.html b/docs/userguide/sk/applications/people.html index af63aec2f0..3e21763502 100644 --- a/docs/userguide/sk/applications/people.html +++ b/docs/userguide/sk/applications/people.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/poorman.html b/docs/userguide/sk/applications/poorman.html index e110489d7e..6db4f5e2b2 100644 --- a/docs/userguide/sk/applications/poorman.html +++ b/docs/userguide/sk/applications/poorman.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/screenshot.html b/docs/userguide/sk/applications/screenshot.html index 686c3de38f..99b832e4d4 100644 --- a/docs/userguide/sk/applications/screenshot.html +++ b/docs/userguide/sk/applications/screenshot.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -52,7 +54,6 @@
    -
    Preklad tejto stránky zatiaľ nie je dokončený. Dovtedy sa nedokončené časti zobrazia v anglickom origináli.

    screenshot-icon_64.pngSnímka obrazovky

    Index
    Obsah
    Čítanie správ
    Tvorenie nových správ
    Predvoľby
    diff --git a/docs/userguide/sk/applications/showimage.html b/docs/userguide/sk/applications/showimage.html index a320170797..6cdf939049 100644 --- a/docs/userguide/sk/applications/showimage.html +++ b/docs/userguide/sk/applications/showimage.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/soundrecorder.html b/docs/userguide/sk/applications/soundrecorder.html index fee3938665..fbbc28dcf8 100644 --- a/docs/userguide/sk/applications/soundrecorder.html +++ b/docs/userguide/sk/applications/soundrecorder.html @@ -40,6 +40,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/stylededit.html b/docs/userguide/sk/applications/stylededit.html index f42d474e11..d1a877ca34 100644 --- a/docs/userguide/sk/applications/stylededit.html +++ b/docs/userguide/sk/applications/stylededit.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/terminal.html b/docs/userguide/sk/applications/terminal.html index 20195610fc..38680c3898 100644 --- a/docs/userguide/sk/applications/terminal.html +++ b/docs/userguide/sk/applications/terminal.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -52,7 +54,6 @@
    -
    Preklad tejto stránky zatiaľ nie je dokončený. Dovtedy sa nedokončené časti zobrazia v anglickom origináli.

    terminal-icon_64.pngTerminál

    @@ -108,7 +109,7 @@ Oba súbory môžu byť vytvorené v priečinku home/

    Je toho viac, pozrite sa.

    diff --git a/docs/userguide/sk/applications/textsearch.html b/docs/userguide/sk/applications/textsearch.html index 17fc8767a0..46b5dd204c 100644 --- a/docs/userguide/sk/applications/textsearch.html +++ b/docs/userguide/sk/applications/textsearch.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/tv.html b/docs/userguide/sk/applications/tv.html index d59c494426..c2b6617231 100644 --- a/docs/userguide/sk/applications/tv.html +++ b/docs/userguide/sk/applications/tv.html @@ -40,6 +40,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/vision.html b/docs/userguide/sk/applications/vision.html index b0904c2cc7..3d627ba3fa 100644 --- a/docs/userguide/sk/applications/vision.html +++ b/docs/userguide/sk/applications/vision.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/webpositive.html b/docs/userguide/sk/applications/webpositive.html index de6eda4698..8c501ee6ba 100644 --- a/docs/userguide/sk/applications/webpositive.html +++ b/docs/userguide/sk/applications/webpositive.html @@ -40,6 +40,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/applications/wonderbrush.html b/docs/userguide/sk/applications/wonderbrush.html index 310eb40d26..8eccd9a43e 100644 --- a/docs/userguide/sk/applications/wonderbrush.html +++ b/docs/userguide/sk/applications/wonderbrush.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/attributes.html b/docs/userguide/sk/attributes.html index 8f8d5a1ebd..ec7b09cf67 100644 --- a/docs/userguide/sk/attributes.html +++ b/docs/userguide/sk/attributes.html @@ -42,18 +42,19 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • « Typy súborov :: Obsah -:: Index » +:: Obsah »
    -
    Preklad tejto stránky zatiaľ nie je dokončený. Dovtedy sa nedokončené časti zobrazia v anglickom origináli.

    Atribúty

    @@ -167,7 +168,7 @@ Clara Botters : string : Whelton
    « Typy súborov :: Obsah -:: Index » +:: Obsah »
    diff --git a/docs/userguide/sk/bash-scripting.html b/docs/userguide/sk/bash-scripting.html index b207ec1f38..c824662fc2 100644 --- a/docs/userguide/sk/bash-scripting.html +++ b/docs/userguide/sk/bash-scripting.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/bootloader.html b/docs/userguide/sk/bootloader.html index 8e54ba6960..e251172562 100644 --- a/docs/userguide/sk/bootloader.html +++ b/docs/userguide/sk/bootloader.html @@ -40,6 +40,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/contents.html b/docs/userguide/sk/contents.html index 2e701c84ec..14e822feb8 100644 --- a/docs/userguide/sk/contents.html +++ b/docs/userguide/sk/contents.html @@ -4,7 +4,7 @@ @@ -42,6 +43,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -55,7 +58,7 @@
    - + + +
    Index
    Obsah
    Menu Panelu
    Oznamovacia oblasť
    @@ -107,11 +110,15 @@ Môžete zmazať alebo pridať položky, ako napríklad odkazy na aplikácie, do
    Tracker vždy prvý Aj keď zoradíte podľa abecedy, Tracker zostane vždy prvý v zozname.
    Zobraziť výsuvný zoznam aplikácií Poskytne malý ovládací prvok na zobrazenie/skrytie všetkých okien programu priamo pod jeho záznamom v Paneli.
    Výsuvný zoznam aplikácií Novo spustené programy majú ich okná automaticky rozšírené pod ich záznamom v Paneli.
    Skryť názvy aplikácií Odstráni textové popisy bežiacich aplikácií.
    Icon size Prispôsobí veľkosť ikony bežiacich aplikácií.
  • Hodiny

    -
    Zobraziť sekundy Zobrazí sekundy na hodinách.
  • +
    Zobraziť deň v týždni Pridá hodinám skratku dňa v týždni.
    +

    diff --git a/docs/userguide/sk/desktop-applets.html b/docs/userguide/sk/desktop-applets.html index 1a20888177..f5db57e9af 100644 --- a/docs/userguide/sk/desktop-applets.html +++ b/docs/userguide/sk/desktop-applets.html @@ -42,6 +42,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/desktop-applets/launchbox.html b/docs/userguide/sk/desktop-applets/launchbox.html index ec574d2e47..59a0d380d7 100644 --- a/docs/userguide/sk/desktop-applets/launchbox.html +++ b/docs/userguide/sk/desktop-applets/launchbox.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/desktop-applets/networkstatus.html b/docs/userguide/sk/desktop-applets/networkstatus.html index a0f1f8f954..ddfc7ab8e2 100644 --- a/docs/userguide/sk/desktop-applets/networkstatus.html +++ b/docs/userguide/sk/desktop-applets/networkstatus.html @@ -42,6 +42,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -63,7 +65,7 @@

    Aplet Stav siete zobrazuje stav vašich pripojení k sieti. Po spustení Stavu siete sa vás aplet opýta, či ho chcete spúšťať v okne, alebo nainštalovať do Panelu. V režime okna sa dá ikone meniť veľkosť zmenou veľkosti okna a aplet sa dá pretiahnuť na plochu pomocou rúčky Replikanta . Nezávisle na tom, kde je nainštalovaný, kontroluje sa kontextovým menu vyvolaným kliknutím pravým tlačidlom myši.

    aplet Stav siete
    Prvá sekcia obsahuje názvy všetkých sieťových zariadení a ich stav. Kliknutie na jednu z položiek vyvolá okno s IP adresou, adresou na broadcast a maskou siete.
    -Nižšie je uvedený zoznam všetkých bezdrôtových sietí, ktoré našiel bezdrôtový adaptér a indikátor sily ich signálu.
    +Nižšie je uvedený zoznam všetkých bezdrôtových sietí, ktoré našiel bezdrôtový adaptér a indikátor sily ich signálu. Ďalšie informácie o tom ako nastaviť spojenie nájdete v kapitole Workshop: Bezdrôtové siete.
    Nakoniec môžete Otvoriť nastavenia siete... a zmeniť tak vašu konfiguráciu siete alebo Ukončiť tento aplet.

    Ikony stavu

    diff --git a/docs/userguide/sk/desktop-applets/powerstatus.html b/docs/userguide/sk/desktop-applets/powerstatus.html index a2cf1d54cb..8abe6c00f1 100644 --- a/docs/userguide/sk/desktop-applets/powerstatus.html +++ b/docs/userguide/sk/desktop-applets/powerstatus.html @@ -42,6 +42,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/desktop-applets/processcontroller.html b/docs/userguide/sk/desktop-applets/processcontroller.html index 1f1d562c53..d6398a53be 100644 --- a/docs/userguide/sk/desktop-applets/processcontroller.html +++ b/docs/userguide/sk/desktop-applets/processcontroller.html @@ -42,6 +42,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/desktop-applets/workspaces.html b/docs/userguide/sk/desktop-applets/workspaces.html index 65d380f994..f0871e93a0 100644 --- a/docs/userguide/sk/desktop-applets/workspaces.html +++ b/docs/userguide/sk/desktop-applets/workspaces.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/filesystem-layout.html b/docs/userguide/sk/filesystem-layout.html index 8c87cd7463..cee05fde68 100644 --- a/docs/userguide/sk/filesystem-layout.html +++ b/docs/userguide/sk/filesystem-layout.html @@ -40,6 +40,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -57,7 +59,7 @@

    Rozloženie súborového systému Haiku je dosť zrozumiteľné a vždy sa snačí používať nekryptické názvy súborov a priečinkov, aby nemusel používateľ hádať, čo znamenajú. Súbory a priečinky, ktoré sú dôležité na správne fungovanie systému sú chránené proti neúmyselnému poškodeniu tak, že zobrazujú jednu z týchto výstrah:

    achtung-user.png  achtung-system.png -

    Druhá výstraha vyskočí, keď sa pokúsite premenovať alebo zmazať niečo v hierarchii system. Tu sa na tlačidlo „Vykonať“ bude dať kliknúť iba ak podržíte kláves SHIFT.

    +

    Druhá výstraha vyskočí, keď sa pokúsite premenovať alebo zmazať niečo v hierarchii system. Tu sa na tlačidlo „Premenovať“ bude dať kliknúť iba ak podržíte kláves SHIFT.

    Vo všeobecnosti existujú tri samostatné vetvy začínajúce v koreňovom priečinku zavádzacieho zväzku:

    diff --git a/docs/userguide/sk/filetypes.html b/docs/userguide/sk/filetypes.html index 80d6eaa814..e29e711f11 100644 --- a/docs/userguide/sk/filetypes.html +++ b/docs/userguide/sk/filetypes.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sk/gui.html b/docs/userguide/sk/gui.html index b518ceb1fe..0513e0d1f4 100644 --- a/docs/userguide/sk/gui.html +++ b/docs/userguide/sk/gui.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -55,12 +57,12 @@
    Preklad tejto stránky zatiaľ nie je dokončený. Dovtedy sa nedokončené časti zobrazia v anglickom origináli.
    /boot/system/ patrí systému. Nedotýkajte sa ho!
    - + + Rýchly spôsob presúvania a zmeny veľkosti okien
    + Skladanie a dlaždice
    + Panely Otvoriť a Uložiť
    + Replikanti
    Index
    Obsah
    - Easy moving and resizing
    - Stack & Tile
    - Open and save panels
    - Replicants

    Používateľské rozhranie Haiku

    @@ -77,13 +79,14 @@
  • Okno môžete dať preč z popredia pravým kliknutím na jeho kartu (alebo okraj).
  • Tlačidlo Zavrieť.

  • Tlačidlo „zväčšenia“ (alebo CTRL ALT Z). Vo väčšina aplikácií sa okno maximalizuje. Sú ale aj výnimky. Napríklad okná Trackera, ktoré svoju veľkosť zmenia tak, aby sa čo najlepšie prispôsobili obsahu.

  • -
  • Ťahaním myšou počas držania rohu meníte veľkosť okna. Ťahaním počas držania hocijakej inej časti okraja sa okno presúva.

  • +
  • The window border. Left-dragging moves the window, right-dragging resizes.

  • +
  • The resize corner.

  • index -Rýchly spôsob na presúvanie a zmenu veľkosti okien

    -

    Pohybovanie a menenie veľkosti je veľká časť interakcie s viacerými súčasne bežiacimi aplikáciami. Namiesto triafania malej žltej karty alebo ešte menšieho okraja, existuje aj pohodlnejší spôsob. Okrem toho, že je roh okna malý, má aj ďalšie obmedzenie: Dovoľuje vám meniť veľkosť iba v smere dolného pravého rohu.

    +Rýchly spôsob presúvania a zmeny veľkosti okien

    +

    Moving and resizing windows is a large part of interacting with several concurrently running applications. Instead of aiming at the small yellow title tab or the even tinier window border, there's a more convenient way to move a window. Also, additionally to its small size, the resize corner has another limitation: It only allows resizing at and in the direction of the lower right corner.
    Right-dragging a border for resizing works, but again you'll have to aim carefully.

    Ako elegantné riešenie tohoto problému ponúka Haiku klávesovú skratku CTRL ALT s použitím myši. Pozrite aj sekciu Skratky a klávesové kombinácie, kde nájdete ďalšie informácie o skratkách na správu okien.

    resizing.png

    Držanie CTRL ALT zvýrazní okraje najbližšie pri kurzore. Presúvaním myši môžete meniť zvýraznené okraje. Držaním pravého tlačidla myši ťahaním meníte veľkosť okna pozdĺž vyznačených okrajov.

    @@ -91,22 +94,22 @@

    index -Stack & Tile

    -

    Haiku's user interface provides a unique feature that puts the fact that windows have a yellow tab instead of a full-width title bar to perfect use. It's called "Stack & Tile".
    -In the example below, a Tracker window with bookmarks is tiled to the left of a WebPositive window, which itself is stacked with another Tracker window showing the source folder haiku. In this animation, the user clicks on the tabs of the stacked windows to alternately bring one or the other to the front.

    +Skladanie a dlaždice +

    Používateľské rozhranie Haikuposkytuje jedinečnú vlastnosť, ktorá dokonale využíva skutočnosť, že okná majú žltú kartu namiesto titulného pruhu plnej šírky. Hovorí sa jej „Skladanie a dlaždice“.
    +V príklade dolu je okno Trackera so záložkami pridláždené k ľavej strane okna WebPositive, ktoré je samotné zložené s iným oknom Trackera zobrazujúcim priečinok haiku so zdrojovým kódom. V tejto animácii používateľ kliká na karty poskladaných okien, čím ich striedavo vynáša do popredia.

    gui-s+t.gif -

    Connected like this, the group of windows can be moved and resized together - a nice arrangement to work in a more project centric environment. Instead of looking for the right browser window with documentation, editor and Tracker windows and maybe a related email concerning one project you are currently working on, just stack&tile them together.

    -

    Doing the actual arranging of windows is easy: Hold down OPT while dragging a window by its tab close to another window's tab or border until it's highlighted and release the mouse button.

    -

    Stack & Tile consists of two related parts.

    +

    Takto spojené skupiny okien je možné spolu presúvať a meniť ich veľkosť - čo sa hodí v prostredí, kde sa pracuje na viacerých projektoch. Namiesto hľadania správneho okna prehliadača s oknami s dokumentáciou, editorom a Trackerom a možno poštou súvisiacou s jedným s projektov, na ktorých pracujete ich môžete jednoducho poskladať a zdláždiť k sebe.

    +

    Samotné aranžovanie okien je jednoduché: Podržte OPT počas ťahania okna za jeho kartu v blízkosti karty alebo okraja iného okna, pokým sa nevysvieti a následne pusťte tlačidlo myši.

    +

    Skladanie a dlaždice pozostávajú z dvoch súvisiacich častí.

    -
    gui-stacking.png

    "Stacking" is putting windows on top of each other, automatically moving the yellow tabs into position.
    -While holding OPT, tabs change color when they overlap; drop the window to establish the stacking.

    +

    Skladanie“ je dávanie okien na jedno na druhé, pričom sa žlté karty automaticky presúvajú na miesto.
    +Počas držania klávesu OPT karty menia farbu, keď sa prekrývajú; pustením okna dosiahnete skladanie.

    gui-tilinging.png

    "Tiling" means gluing windows horizontally or vertically together.
    Again, while holding OPT, the borders that'll fuse together when you drop the window change color when brought near each other.

    -

    Separation is done in the same way, by holding OPT while dragging a window by its tab out of the group.

    +

    Oddeľovanie prebieha rovnako - podržaním klávesu OPT a odtiahnutím okna za jeho kartu zo skupiny.

    index @@ -140,8 +143,8 @@ Všetky Obľúbené sú uložené v /boot/home/config/setting

    index -Replikanty

    -

    Replikanty sú malé samostatné súčasti aplikácií, ktoré sa dajú integrovať do iných programov. Po aktivovaní možnosti Panela Zobraziť replikantov môžete rozoznať aplikácie s replikantom podľa tejto malej rúčky v pravom dolnom rohu:

    +Replikanti

    +

    Replikanti sú malé samostatné súčasti aplikácií, ktoré sa dajú integrovať do iných programov. Po aktivovaní možnosti Panela Zobraziť replikantov môžete rozoznať aplikácie s replikantom podľa tejto malej rúčky v pravom dolnom rohu:

    replicant.png

    Najprominentnejšie miesto na použitie replikantov je Plocha: Jednoducho na ňu myšou pretiahnite rúčku replikanta. Odteraz je táto aplikácia súčasťou Plochy a ak s ňou chcete pracovať, pôvodnú aplikáciu už nemusíte spúšťať.
    Pravým kliknutím na rúčku replikanta vyvoláte menu s možnosťami zobraziť ďalšie informácie O aplikácií alebo Odstrániť replikanta.

    diff --git a/docs/userguide/sk/images/apps-images/deskcalc.png b/docs/userguide/sk/images/apps-images/deskcalc.png new file mode 100644 index 0000000000..b4b14b991d Binary files /dev/null and b/docs/userguide/sk/images/apps-images/deskcalc.png differ diff --git a/docs/userguide/sk/images/deskbar-images/configure.png b/docs/userguide/sk/images/deskbar-images/configure.png index fa562dd988..3f53b2280d 100644 Binary files a/docs/userguide/sk/images/deskbar-images/configure.png and b/docs/userguide/sk/images/deskbar-images/configure.png differ diff --git a/docs/userguide/sk/images/filesystem-layout-images/achtung-system.png b/docs/userguide/sk/images/filesystem-layout-images/achtung-system.png index f24c253bc8..fbcebee00c 100644 Binary files a/docs/userguide/sk/images/filesystem-layout-images/achtung-system.png and b/docs/userguide/sk/images/filesystem-layout-images/achtung-system.png differ diff --git a/docs/userguide/sk/images/filesystem-layout-images/achtung-user.png b/docs/userguide/sk/images/filesystem-layout-images/achtung-user.png index 9a77cfbb9d..fa6d1cfa24 100644 Binary files a/docs/userguide/sk/images/filesystem-layout-images/achtung-user.png and b/docs/userguide/sk/images/filesystem-layout-images/achtung-user.png differ diff --git a/docs/userguide/sk/images/prefs-images/appearance-antialiasing.png b/docs/userguide/sk/images/prefs-images/appearance-antialiasing.png index f20e855e48..cbb49dc808 100644 Binary files a/docs/userguide/sk/images/prefs-images/appearance-antialiasing.png and b/docs/userguide/sk/images/prefs-images/appearance-antialiasing.png differ diff --git a/docs/userguide/sk/images/prefs-images/appearance-colors.png b/docs/userguide/sk/images/prefs-images/appearance-colors.png index 813fd4dc46..baf96016ad 100644 Binary files a/docs/userguide/sk/images/prefs-images/appearance-colors.png and b/docs/userguide/sk/images/prefs-images/appearance-colors.png differ diff --git a/docs/userguide/sk/images/prefs-images/appearance-decorators.png b/docs/userguide/sk/images/prefs-images/appearance-decorators.png new file mode 100644 index 0000000000..99d9ade42b Binary files /dev/null and b/docs/userguide/sk/images/prefs-images/appearance-decorators.png differ diff --git a/docs/userguide/sk/images/prefs-images/appearance-fonts.png b/docs/userguide/sk/images/prefs-images/appearance-fonts.png new file mode 100644 index 0000000000..c962c53232 Binary files /dev/null and b/docs/userguide/sk/images/prefs-images/appearance-fonts.png differ diff --git a/docs/userguide/sk/images/prefs-images/e-mail-accounts.png b/docs/userguide/sk/images/prefs-images/e-mail-accounts.png new file mode 100644 index 0000000000..17694e831e Binary files /dev/null and b/docs/userguide/sk/images/prefs-images/e-mail-accounts.png differ diff --git a/docs/userguide/sk/images/workshop-wlan-images/join-network.png b/docs/userguide/sk/images/workshop-wlan-images/join-network.png new file mode 100644 index 0000000000..2fedecda91 Binary files /dev/null and b/docs/userguide/sk/images/workshop-wlan-images/join-network.png differ diff --git a/docs/userguide/sk/images/workshop-wlan-images/join-status.gif b/docs/userguide/sk/images/workshop-wlan-images/join-status.gif new file mode 100644 index 0000000000..dea116d418 Binary files /dev/null and b/docs/userguide/sk/images/workshop-wlan-images/join-status.gif differ diff --git a/docs/userguide/sk/index.html b/docs/userguide/sk/index.html index ec81a56a90..0aa722e872 100644 --- a/docs/userguide/sk/index.html +++ b/docs/userguide/sk/index.html @@ -17,7 +17,7 @@ - Index + Obsah @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -53,7 +55,7 @@
    -

    Index

    +

    Obsah

    Atribúty a Požiadavky sú kľúčovými funkciami Haiku. Zatiaľ čo atribúty sú užitočné samy o sebe, na to, aby sa mohli zobraziť ďalšie informácie o vyhľadávanom súbore, musíte súbory indexovať. Tým sa zaradia do vyhľadávacej tabuľky, vďaka čomu bude ich vyhľadanie bleskurýchle.
    Index je súčasť súborového systému a pre každý zväzok/oblasť sa ukladá zvlášť.

    diff --git a/docs/userguide/sk/keyboard-shortcuts.html b/docs/userguide/sk/keyboard-shortcuts.html index ef089b2bf6..93740c4f6b 100644 --- a/docs/userguide/sk/keyboard-shortcuts.html +++ b/docs/userguide/sk/keyboard-shortcuts.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -52,7 +54,6 @@
    -
    Preklad tejto stránky zatiaľ nie je dokončený. Dovtedy sa nedokončené časti zobrazia v anglickom origináli.

    Klávesové skratky a kombinácie klávesov

    @@ -68,9 +69,9 @@ Používateľská príručka popisuje predvolenú konfiguráciu s príkazovým k - - - + + + diff --git a/docs/userguide/sk/preferences.html b/docs/userguide/sk/preferences.html index c0209c098a..afcdab1a79 100644 --- a/docs/userguide/sk/preferences.html +++ b/docs/userguide/sk/preferences.html @@ -41,6 +41,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -69,8 +71,6 @@ - - diff --git a/docs/userguide/sk/preferences/appearance.html b/docs/userguide/sk/preferences/appearance.html index a3ac500365..3f83e21af0 100644 --- a/docs/userguide/sk/preferences/appearance.html +++ b/docs/userguide/sk/preferences/appearance.html @@ -4,7 +4,7 @@ diff --git a/docs/userguide/sk/preferences/fonts.html b/docs/userguide/sk/preferences/fonts.html index 7a4d12bc74..b23e05a082 100644 --- a/docs/userguide/sk/preferences/fonts.html +++ b/docs/userguide/sk/preferences/fonts.html @@ -41,17 +41,22 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  Typy súborov  -::  Nastavenia  -::  Klávesnica  » + « Typy súborov +:: Nastavenia +:: Klávesnica »
    +
    Preklad tejto stránky zatiaľ nie je dokončený. Dovtedy sa nedokončené časti zobrazia v anglickom origináli.
    + +

    Since "Fonts" moved into the Appearance panel, this is an outdated page. Do not translate!

    fonts-icon_64.pngPísma

    ALT FxPrepne na Pracovnú plochu X (Fx je zodpovedajúci kláves danej plochy). Aktívne okno tiež môžete preniesť držaním klávesu SHIFT
    CTRL ALT / / / Naviguje po riadkoch/stĺpcoch dostupných pracovných plôch. Pridaním SHIFT sa presunie aj aktívne okno.
    OPTHolding OPT while dragging a window near another window's tab or border will stack or tile them (see chapter GUI).
    CTRL ALT + left mouseDržaním ľavého tlačidla myši a ťahaním presúvate okno (pozrite sekciu GUI).
    CTRL ALT + right mouseDržaním pravého tlačidla myši a ťahaním meníte veľkosť okna (pozrite sekciu GUI).
    OPTDržaním OPT počas ťahania okna v blízkosti karty alebo okraja iného okna ho naskladá alebo dlaždicovo rozloží (pozri kapitolu Používateľské rozhranie Haiku).
    CTRL ALT + left mouseDržaním ľavého tlačidla myši a ťahaním presúvate okno (pozri kapitolu Používateľské rozhranie Haiku).
    CTRL ALT + right mouseDržaním pravého tlačidla myši a ťahaním meníte veľkosť okna (pozri kapitolu Používateľské rozhranie Haiku).
    CTRL ALT ZZmení veľkosť okna na alternatívnu (vo väčšine aplikácií maximalizuje).
    CTRL ALT MMinimalizuje aktívne okno.
    CTRL ALT HSkryje (minimalizuje) všetky okná aktívnej aplikácie.
    Konfigurácia vašich e-mailových účtov.
    iconTypy súborov Pridanie, odstránenie a konfigurácia typov súborov.
    iconPísma Nastavenia systémového písma.
    iconKlávesnica Konfigurácia rýchlosti opakovania a intervalu do začiatku opakovania klávesu.
    iconMapa kláves
    @@ -64,8 +69,8 @@ fonts.png

    Haiku definuje tri štandardné písma na rozličné účely. Nastavujete čisté, hrubé a písmo s pevnou šírkou znaku a veľkosti, ktoré budú použité v rámci systému. Okrem toho existuje aj možnosť nastavenia písma použitého v menu.

    - - + +
    Predvolené obnoví všetky hodnoty na predvolené.
    Vrátiť vráti späť nastavenia, ktoré boli aktívne, keď ste spustili nastavenia Písem.
    Predvolené obnoví všetky hodnoty na predvolené.
    Vrátiť vráti späť nastavenia, ktoré boli aktívne, keď ste spustili nastavenia Písem.

    @@ -78,9 +83,9 @@ diff --git a/docs/userguide/sk/preferences/keyboard.html b/docs/userguide/sk/preferences/keyboard.html index 5e0f743af9..166d062ca5 100644 --- a/docs/userguide/sk/preferences/keyboard.html +++ b/docs/userguide/sk/preferences/keyboard.html @@ -40,10 +40,12 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  Písma  + «  Typy súborov  ::  Nastavenia  ::  Mapa klávesov  »

    @@ -72,7 +74,7 @@ + + + + Workshop: Bezdrôtová sieť + + + + + + + + +
    +
    +
    Preklad tejto stránky zatiaľ nie je dokončený. Dovtedy sa nedokončené časti zobrazia v anglickom origináli.
    + + + + + +
    Obsah
    + Ako rozchodiť podporovaný hardvér
    + Ako sa pripojiť k bezdrôtovej sieti
    + Ako sa pripojiť z príkazového riadka
    + Tipy +
    + +

    Workshop: Bezdrôtová sieť

    + +

    Rozchodenie bezdrôtovej siete je nevyhnutné v dnešnej dobe neustáleho sieťového pripojenia. Pretože udržiavanie aktuálnej podpory rozličného a neustále sa meniaceho hardvéru a ovládačov je pre malý projekt celkom nemožné, Haiku sa pri implementácii sieťových ovládačov spolieha na vrstvu kompatibility FreeBSD.
    +Tá nám zabezpečuje obrovské množstvo podporovaného hardvéru, hoci zrejme nie 100% všetkých, ktoré existujú. Pozrite si online zoznam podporovaných modelov alebo sa pozrite do Poznámok o hardvéri FreeBSD 9.

    +
    Momentálne sa očakáva, že budú fungovať iba zariadenia PCI, PCI-X, PCI-Express, Mini PCI a Mini PCI-Express.
    +Zariadenia PCMCIA, CardBus, ExpressCard, USB a ISA ešte vyžadujú ďalšiu prácu, než budú funkčné.
    + +

    +index +Ako rozchodiť podporovaný hardvér

    +

    Hoci sme prvú prekážku všeobecne podporovaného hardvéru prekonali, niektoré bezdrôtové ovládače vyžadujú binárne moduly firmvéru, aby správne fungovali. Haiku nemôže distribuovať niektoré z týchto proprietárnych súborov firmvéru z licenčných dôvodov. Haiku však obsahuje jednoduchý skript, ktorý stiahne a nainštaluje všetky proprietárne súbory za vás. Vo všeobecnosti, ak plánujete používať bezdrôtovú sieť, odporúča sa spustiť tento skript, aby ste zabezpečili, že váš systém má všetok tento firmvér k dispozícii, keď ho budete potrebovať.

    +

    Otvorte Terminál a napíšte:

    +
    install-wifi-firmwares.sh
    +

    Teraz si prečítajte licencie a prijmite ich, aby sa nainštalovali všetky dostupné súbory firmvéru.

    + +

    Ak nemáte prístup k internetu, aby ste mohli stiahnuť tieto súbory s firmvérom v Haiku, existuje aj offline spôsob, pozri tipy below.

    + +

    +index +Ako sa pripojiť k bezdrôtovej sieti

    +

    By default, Haiku will join the first unencrypted wireless network it finds after booting up. To connect to a specific network, you use the Desktop applet NetworkStatus.

    +

    Right-click on its icon in the Deskbar and choose the network's public name (which is the "SSID" it broadcasts) from the context menu.

    +join-network.png +

    A window opens where you enter the type of authentication (probably WPA/WPA2, WEP is not a secure encryption anymore!) and the password for that wireless network. Click OK to start the login process.
    Depending on your hardware and network configuration this may take a while. You'll be kept informed of the progress by notifications:

    +join-network.gif +

    Once it reads "Ready" and the NetworkStatus icon in the Deskbar shows a green round light, the connection is established. If the notifications end in "No link" and a yellow triangle, something went wrong, probably an incorrect password.

    + +

    +index +Ako sa pripojiť z príkazového riadka

    +

    If you prefer to use the command line or would like to use scripting or the ~/config/boot/UserBootscript to automate things to join a specific network on bootup, there's the command ifconfig.

    +

    Start a Terminal and enter the first line to scan for available wireless networks:

    +
    ifconfig /dev/net/iprowifi3945/0 scan
    +name                             address              signal  auth
    +haiku-top                        01:d0:19:a6:88:42        30  WPA
    +ArcorInternet123                 00:20:12:a4:29:e1        15  WPA
    +

    The path to your wireless network adapter has to be adjusted, of course.
    +The output shows the public name (SSID), MAC address, signal strength and authentication method of all found networks.

    +

    To join a network, use this line and insert the respective public name (SSID) and password:

    +
    ifconfig /dev/net/iprowifi3945/0 join {SSID} {heslo}
    +

    Make sure the initial configuration of the wireless network adapter after booting up has finished, before issuing ifconfig commands or they might be ignored. Depending on your hardware and network configuration that may take a while. Watch those notifications...

    + +

    +index +Tipy

    + + +
    +
    + + + + + diff --git a/docs/userguide/sk/workspaces.html b/docs/userguide/sk/workspaces.html index 044887ccd8..c9038aa1cd 100644 --- a/docs/userguide/sk/workspaces.html +++ b/docs/userguide/sk/workspaces.html @@ -40,6 +40,8 @@
  •  中文 [中文]
  • Português
  • Suomi
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications.html b/docs/userguide/sv_SE/applications.html index 25520b6de5..23bc816b56 100644 --- a/docs/userguide/sv_SE/applications.html +++ b/docs/userguide/sv_SE/applications.html @@ -44,6 +44,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/activitymonitor.html b/docs/userguide/sv_SE/applications/activitymonitor.html index 3317bdde49..8d1c53876a 100644 --- a/docs/userguide/sv_SE/applications/activitymonitor.html +++ b/docs/userguide/sv_SE/applications/activitymonitor.html @@ -43,6 +43,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/bepdf.html b/docs/userguide/sv_SE/applications/bepdf.html index 9fa81cafea..d05d086694 100644 --- a/docs/userguide/sv_SE/applications/bepdf.html +++ b/docs/userguide/sv_SE/applications/bepdf.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/bootmanager.html b/docs/userguide/sv_SE/applications/bootmanager.html index a652b50b97..e30016787a 100644 --- a/docs/userguide/sv_SE/applications/bootmanager.html +++ b/docs/userguide/sv_SE/applications/bootmanager.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/cdplayer.html b/docs/userguide/sv_SE/applications/cdplayer.html index 92c4f93e9f..901de89e8b 100644 --- a/docs/userguide/sv_SE/applications/cdplayer.html +++ b/docs/userguide/sv_SE/applications/cdplayer.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/charactermap.html b/docs/userguide/sv_SE/applications/charactermap.html index 859807261c..775931b687 100644 --- a/docs/userguide/sv_SE/applications/charactermap.html +++ b/docs/userguide/sv_SE/applications/charactermap.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/cli-apps.html b/docs/userguide/sv_SE/applications/cli-apps.html index 0e0bccf786..af09b59842 100644 --- a/docs/userguide/sv_SE/applications/cli-apps.html +++ b/docs/userguide/sv_SE/applications/cli-apps.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/codycam.html b/docs/userguide/sv_SE/applications/codycam.html index 31723e9faf..c0ab114584 100644 --- a/docs/userguide/sv_SE/applications/codycam.html +++ b/docs/userguide/sv_SE/applications/codycam.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/deskcalc.html b/docs/userguide/sv_SE/applications/deskcalc.html index cae3d754c6..5c30129850 100644 --- a/docs/userguide/sv_SE/applications/deskcalc.html +++ b/docs/userguide/sv_SE/applications/deskcalc.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -62,7 +64,7 @@


    Kalkylator är en enkel kalkylator som ändå har några trevliga funktioner som inte är uppenbara vid första ögonkastet.

    -deskcalc.png +deskcalc.png
    • Kalkylatorn förstår mycket mer än vad den enkla knappsatsen antyder.
      Förutom räknesätten +, -, *, /, %, ^ och konstanterna pi och e stöds de följande matematiska funktionerna:
      diff --git a/docs/userguide/sv_SE/applications/diskprobe.html b/docs/userguide/sv_SE/applications/diskprobe.html index a9b75f1df5..d7279375ef 100644 --- a/docs/userguide/sv_SE/applications/diskprobe.html +++ b/docs/userguide/sv_SE/applications/diskprobe.html @@ -40,6 +40,8 @@

    • Português
    • Suomi
    • Slovenčina
    • +
    • Magyar
    • +
    • Português (Brazil)
    • English
    diff --git a/docs/userguide/sv_SE/applications/diskusage.html b/docs/userguide/sv_SE/applications/diskusage.html index 017750fc5f..388cd849c4 100644 --- a/docs/userguide/sv_SE/applications/diskusage.html +++ b/docs/userguide/sv_SE/applications/diskusage.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/drivesetup.html b/docs/userguide/sv_SE/applications/drivesetup.html index 27f5343101..13d65d0bfb 100644 --- a/docs/userguide/sv_SE/applications/drivesetup.html +++ b/docs/userguide/sv_SE/applications/drivesetup.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/expander.html b/docs/userguide/sv_SE/applications/expander.html index 44d913d400..5377726e89 100644 --- a/docs/userguide/sv_SE/applications/expander.html +++ b/docs/userguide/sv_SE/applications/expander.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -51,6 +53,7 @@
    +
    Översättningen av denna sida är inte komplett. Delar av innehållet kommer därför att visas på engelska.

    expander-icon_64.pngExpanderare

    @@ -63,14 +66,15 @@ Dubbel-klicka på ett arkiv för att starta Expanderaren:

    expander.png

    - +
    KällaALT Söppnar en fildialog för val av arkiv att packa upp.
    KällaALT Oöppnar en fildialog för val av arkiv att packa upp.
    MålmappALT Döppnar en dialogruta för val av målmapp.
    ExpanderaALT Estartar uppackningen. Kan avbrytas med ALT K.

    Du kan visa/gömma arkivets innehåll genom att bocka för/av Visa innehåll, eller använda tangentkombinationen ALT L.

    Expanderaren kan bara packa upp hela arkiv.
    Du kan inte expandera individuella filer eller lägga till/ta bort filer från ett arkiv.
    -

    Menyn Inställningar... eller ALT P öppnar en panel där några användbara inställningar kan göras.

    +

    Settings | Settings... or ALT S opens a preference panel that offers some useful settings to adjust Expander's behavior.
    +The options are all self-explanatory:

    expander-preferences.png

    diff --git a/docs/userguide/sv_SE/applications/icon-o-matic.html b/docs/userguide/sv_SE/applications/icon-o-matic.html index e7422d3dec..09ec43967b 100644 --- a/docs/userguide/sv_SE/applications/icon-o-matic.html +++ b/docs/userguide/sv_SE/applications/icon-o-matic.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/installer.html b/docs/userguide/sv_SE/applications/installer.html index 01197cccf8..c1485c5191 100644 --- a/docs/userguide/sv_SE/applications/installer.html +++ b/docs/userguide/sv_SE/applications/installer.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/list-cli-apps.html b/docs/userguide/sv_SE/applications/list-cli-apps.html index cb91645595..f05dea5648 100644 --- a/docs/userguide/sv_SE/applications/list-cli-apps.html +++ b/docs/userguide/sv_SE/applications/list-cli-apps.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -280,7 +282,7 @@ Here's a list of all commandline applications that are shipped with Haiku. Each stty Shows/sets terminal characteristics. su Changes the effective user id and group. sum Prints checksum and block counts for each file. -sync Forces changed blocks to disk, updates the super block. +sync Forces changed blocks to disk, updates the superblock. sysinfo Shows system info.

    indexT

    tac Concatenates and prints files, last line first. diff --git a/docs/userguide/sv_SE/applications/magnify.html b/docs/userguide/sv_SE/applications/magnify.html index d13611802d..674a1a6599 100644 --- a/docs/userguide/sv_SE/applications/magnify.html +++ b/docs/userguide/sv_SE/applications/magnify.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/mail.html b/docs/userguide/sv_SE/applications/mail.html index e97697b38b..1f5d105aae 100644 --- a/docs/userguide/sv_SE/applications/mail.html +++ b/docs/userguide/sv_SE/applications/mail.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/mediaplayer.html b/docs/userguide/sv_SE/applications/mediaplayer.html index 2cc4c74400..ac569664e9 100644 --- a/docs/userguide/sv_SE/applications/mediaplayer.html +++ b/docs/userguide/sv_SE/applications/mediaplayer.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/midiplayer.html b/docs/userguide/sv_SE/applications/midiplayer.html index c5c6760006..1b7375e0b7 100644 --- a/docs/userguide/sv_SE/applications/midiplayer.html +++ b/docs/userguide/sv_SE/applications/midiplayer.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/packageinstaller.html b/docs/userguide/sv_SE/applications/packageinstaller.html index b3875bbeaf..27d4bda8a3 100644 --- a/docs/userguide/sv_SE/applications/packageinstaller.html +++ b/docs/userguide/sv_SE/applications/packageinstaller.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -67,7 +69,7 @@ packageinstaller.png

    The main window gives access to two configurations:

      -
    • type of installation (depending on the developer there might be more than one (standard) installation option).
    • +
    • installation type (depending on the developer there might be more than one (standard) installation option)
    • Installation location (only entire partitions/hard disks can be chosen, not custom paths)

    After clicking Install the extraction and installation process will begin.

    diff --git a/docs/userguide/sv_SE/applications/pe.html b/docs/userguide/sv_SE/applications/pe.html index df9401c326..fb831639bc 100644 --- a/docs/userguide/sv_SE/applications/pe.html +++ b/docs/userguide/sv_SE/applications/pe.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/people.html b/docs/userguide/sv_SE/applications/people.html index 63112d4c6b..a6910865ca 100644 --- a/docs/userguide/sv_SE/applications/people.html +++ b/docs/userguide/sv_SE/applications/people.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/poorman.html b/docs/userguide/sv_SE/applications/poorman.html index bb197eec11..2e5eaf8e0b 100644 --- a/docs/userguide/sv_SE/applications/poorman.html +++ b/docs/userguide/sv_SE/applications/poorman.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/screenshot.html b/docs/userguide/sv_SE/applications/screenshot.html index d640b54b3d..aab1ee48c5 100644 --- a/docs/userguide/sv_SE/applications/screenshot.html +++ b/docs/userguide/sv_SE/applications/screenshot.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/showimage.html b/docs/userguide/sv_SE/applications/showimage.html index 7cc960eef0..4677d985b4 100644 --- a/docs/userguide/sv_SE/applications/showimage.html +++ b/docs/userguide/sv_SE/applications/showimage.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -68,7 +70,7 @@ ShowImage provides minimal editing features to crop, rotate and flip images and

    The View menu offers to start a Slide show of all images in a folder (or query result window) and set a Slide delay from 2 to 20 seconds.

    Other commands apply to the currently displayed image (without changing the size of the window):
    Original size shows the image with a 100% zoom factor.
    -Fit to window shrinks the image back into the window fame, e.g. after having zoomed into it or after resizing the window.
    +Fit to window shrinks the image back into the window frame, e.g. after having zoomed into it or after resizing the window.
    Zoom in and Zoom out move into and out of the image in 10% steps. Zooming is also done with the mouse wheel; to pan an image bigger than the window, simply left-click and drag your mouse around.

    Two settings don't just apply to the currently displayed image and are remembered when browsing from one image to the next:
    High quality zooming applies a very fast filter when zooming to reduce jagged lines and produce a smoother result.
    diff --git a/docs/userguide/sv_SE/applications/soundrecorder.html b/docs/userguide/sv_SE/applications/soundrecorder.html index 98bd77f5ea..6b74eec5c1 100644 --- a/docs/userguide/sv_SE/applications/soundrecorder.html +++ b/docs/userguide/sv_SE/applications/soundrecorder.html @@ -40,6 +40,8 @@

  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/stylededit.html b/docs/userguide/sv_SE/applications/stylededit.html index b2345daabe..1d0a5d3c9b 100644 --- a/docs/userguide/sv_SE/applications/stylededit.html +++ b/docs/userguide/sv_SE/applications/stylededit.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/terminal.html b/docs/userguide/sv_SE/applications/terminal.html index 0ea709e681..8582cba0e3 100644 --- a/docs/userguide/sv_SE/applications/terminal.html +++ b/docs/userguide/sv_SE/applications/terminal.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/textsearch.html b/docs/userguide/sv_SE/applications/textsearch.html index 02f848d77b..7c10570714 100644 --- a/docs/userguide/sv_SE/applications/textsearch.html +++ b/docs/userguide/sv_SE/applications/textsearch.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/tv.html b/docs/userguide/sv_SE/applications/tv.html index 3d42c79686..f679b5cdd1 100644 --- a/docs/userguide/sv_SE/applications/tv.html +++ b/docs/userguide/sv_SE/applications/tv.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/vision.html b/docs/userguide/sv_SE/applications/vision.html index 17e01615cb..3b464ac1dd 100644 --- a/docs/userguide/sv_SE/applications/vision.html +++ b/docs/userguide/sv_SE/applications/vision.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/webpositive.html b/docs/userguide/sv_SE/applications/webpositive.html index d00e199e2d..748049aa4d 100644 --- a/docs/userguide/sv_SE/applications/webpositive.html +++ b/docs/userguide/sv_SE/applications/webpositive.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/applications/wonderbrush.html b/docs/userguide/sv_SE/applications/wonderbrush.html index 45e841e61e..e604617fab 100644 --- a/docs/userguide/sv_SE/applications/wonderbrush.html +++ b/docs/userguide/sv_SE/applications/wonderbrush.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/attributes.html b/docs/userguide/sv_SE/attributes.html index bfd2359c8b..f8d02dc45b 100644 --- a/docs/userguide/sv_SE/attributes.html +++ b/docs/userguide/sv_SE/attributes.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/bash-scripting.html b/docs/userguide/sv_SE/bash-scripting.html index fedfaae331..036df6847c 100644 --- a/docs/userguide/sv_SE/bash-scripting.html +++ b/docs/userguide/sv_SE/bash-scripting.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/bootloader.html b/docs/userguide/sv_SE/bootloader.html index 39ca4d78a8..8134c9741b 100644 --- a/docs/userguide/sv_SE/bootloader.html +++ b/docs/userguide/sv_SE/bootloader.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/contents.html b/docs/userguide/sv_SE/contents.html index c6a8729d56..2094f627f0 100644 --- a/docs/userguide/sv_SE/contents.html +++ b/docs/userguide/sv_SE/contents.html @@ -4,7 +4,7 @@ @@ -40,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -100,16 +103,19 @@ Du kan ta bort eller lägga till länkar till program, dokument eller till och m Auto-raise The Deskbar pops to the front if the mouse pointer touches it. Auto-hide The Deskbar is reduced to only a few pixels and only pops up if the mouse pointer touches them. -
  • Program

    +
  • Applications

    - - - - + + + + + +
    Sortera aktiva program Sorterar listan över aktiva program i alfabetisk ordning.
    Visa Tracker först Även om du sorterar efter alfabetet så kommer Tracker att vara först i listan.
    Visa program-expanderare Visar en pil som kan visa/gömma alla fönster som tillhör ett program.
    Expandera nya program Visar ett programs alla fönster vid start.
    Sort running applications Sorts the list of running programs alphabetically.
    Tracker always first Even if you sort alphabetically, the Tracker entry always stays first in the list.
    Show application expander Provides a small widget to show/hide all windows of a program directly under its entry in the Deskbar.
    Expand new applications Newly launched programs have their windows automatically expanded under their entry in the Deskbar.
    Hide application names Removes the text labels of running applications.
    Icon size Adjusts the icon size of running applications.
  • -
  • Klocka

    +
  • Clock

    - + +
    Visa sekunder Lägger till sekunder i klockan.
    Show seconds Adds the display of seconds to the clock.
    Show day of week Adds the abbreviation of the weekday to the clock.
  • diff --git a/docs/userguide/sv_SE/desktop-applets.html b/docs/userguide/sv_SE/desktop-applets.html index cb09f21e7f..e89790a322 100644 --- a/docs/userguide/sv_SE/desktop-applets.html +++ b/docs/userguide/sv_SE/desktop-applets.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/desktop-applets/launchbox.html b/docs/userguide/sv_SE/desktop-applets/launchbox.html index 98f0cd530e..bd3acf5a29 100644 --- a/docs/userguide/sv_SE/desktop-applets/launchbox.html +++ b/docs/userguide/sv_SE/desktop-applets/launchbox.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/desktop-applets/networkstatus.html b/docs/userguide/sv_SE/desktop-applets/networkstatus.html index 64a11e259e..401d97036e 100644 --- a/docs/userguide/sv_SE/desktop-applets/networkstatus.html +++ b/docs/userguide/sv_SE/desktop-applets/networkstatus.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -64,7 +66,7 @@ Wherever installed, it's operated via a right-click context menu.

    NetworkStatus applet
    The first section contains all network devices' names and their state. Clicking on such an entry brings up a window showing its IP, broadcast and netmask address.
    -Below is a list of all wireless networks found by the first wireless adapter and an indicator of their signal strength.
    +Below is a list of all wireless networks found by the first wireless adapter and an indicator of their signal strength. Have a look at the Workshop: Wireless networking for more information on how to set up a connection.
    Lastly, you can Open network preferences... to change your network configuration or Quit the applet.

    Status icons

    diff --git a/docs/userguide/sv_SE/desktop-applets/powerstatus.html b/docs/userguide/sv_SE/desktop-applets/powerstatus.html index 32470a3169..5931d0aaef 100644 --- a/docs/userguide/sv_SE/desktop-applets/powerstatus.html +++ b/docs/userguide/sv_SE/desktop-applets/powerstatus.html @@ -39,6 +39,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/desktop-applets/processcontroller.html b/docs/userguide/sv_SE/desktop-applets/processcontroller.html index 856a0893d0..4521a9fda5 100644 --- a/docs/userguide/sv_SE/desktop-applets/processcontroller.html +++ b/docs/userguide/sv_SE/desktop-applets/processcontroller.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/desktop-applets/workspaces.html b/docs/userguide/sv_SE/desktop-applets/workspaces.html index 2b1c66ec07..2eca322976 100644 --- a/docs/userguide/sv_SE/desktop-applets/workspaces.html +++ b/docs/userguide/sv_SE/desktop-applets/workspaces.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/filesystem-layout.html b/docs/userguide/sv_SE/filesystem-layout.html index 4ff1047642..3246a1a892 100644 --- a/docs/userguide/sv_SE/filesystem-layout.html +++ b/docs/userguide/sv_SE/filesystem-layout.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -58,7 +60,7 @@

    Haiku's filesystem layout is quite transparent, trying to always use non-cryptic names for files and folders, that don't leave the user guessing. Files and folders that are important for the system to function properly, are protected from accidental tempering by showing one of these alerts:

    achtung-user.png  achtung-system.png -

    The second alert pops up if you try to rename or delete something in the system hierarchy. Here, the "Do it" button will only become clickable when you're holding down the SHIFT key.

    +

    The second alert pops up if you try to rename or delete something in the system hierarchy. Here, the "Rename" button will only become clickable when you're holding down the SHIFT key.

    Generally, there are three separate branches springing from the root folder of the boot volume:

    diff --git a/docs/userguide/sv_SE/filetypes.html b/docs/userguide/sv_SE/filetypes.html index 6b4bd45df7..840f40ecb7 100644 --- a/docs/userguide/sv_SE/filetypes.html +++ b/docs/userguide/sv_SE/filetypes.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/gui.html b/docs/userguide/sv_SE/gui.html index 73752396d5..44f6f615c4 100644 --- a/docs/userguide/sv_SE/gui.html +++ b/docs/userguide/sv_SE/gui.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -76,13 +78,14 @@
  • You can send a window to the back with a right-click on its tab (or its border).
  • Stängningsknapp.

  • The "zoom" button (or CTRL ALT Z). In most applications, this will expand a window to maximum size. It doesn't have to, however. Tracker windows, for example, will resize to best fit the contents.

  • -
  • Hörn för storleksändring av fönster. Dragning någon annan stans på fönsterkanten kommer att flytta fönstret.

  • +
  • The window border. Left-dragging moves the window, right-dragging resizes.

  • +
  • The resize corner.

  • index Ett snabbt sätt att flytta och ändra storlek på fönster

    -

    Moving and resizing windows is a large part of interacting with several concurrently running applications. Instead of aiming at the small yellow title tab or the even tinier window border, there's a more convenient way to move a window. Also, additionally to its small size, the resize corner has another limitation: It only allows resizing at and in the direction of the lower right corner.

    +

    Moving and resizing windows is a large part of interacting with several concurrently running applications. Instead of aiming at the small yellow title tab or the even tinier window border, there's a more convenient way to move a window. Also, additionally to its small size, the resize corner has another limitation: It only allows resizing at and in the direction of the lower right corner.
    Right-dragging a border for resizing works, but again you'll have to aim carefully.

    To address these issues, Haiku provides a neat solution using the window management key combo CTRL ALT and the mouse. See also chapter Shortcuts and key combinations for more shortcuts concerning window management.

    resizing.png

    Holding down CTRL ALT will highlight the window borders nearest to the mouse pointer. Move the mouse in the direction of another border to change the target. Click and dragging with the right mouse button will resize the window along the highlighted border(s).

    diff --git a/docs/userguide/sv_SE/images/apps-images/deskcalc.png b/docs/userguide/sv_SE/images/apps-images/deskcalc.png new file mode 100644 index 0000000000..b4b14b991d Binary files /dev/null and b/docs/userguide/sv_SE/images/apps-images/deskcalc.png differ diff --git a/docs/userguide/sv_SE/images/deskbar-images/configure.png b/docs/userguide/sv_SE/images/deskbar-images/configure.png index 228d1f1175..3f53b2280d 100644 Binary files a/docs/userguide/sv_SE/images/deskbar-images/configure.png and b/docs/userguide/sv_SE/images/deskbar-images/configure.png differ diff --git a/docs/userguide/sv_SE/images/filesystem-layout-images/achtung-system.png b/docs/userguide/sv_SE/images/filesystem-layout-images/achtung-system.png index f24c253bc8..fbcebee00c 100644 Binary files a/docs/userguide/sv_SE/images/filesystem-layout-images/achtung-system.png and b/docs/userguide/sv_SE/images/filesystem-layout-images/achtung-system.png differ diff --git a/docs/userguide/sv_SE/images/filesystem-layout-images/achtung-user.png b/docs/userguide/sv_SE/images/filesystem-layout-images/achtung-user.png index 9a77cfbb9d..fa6d1cfa24 100644 Binary files a/docs/userguide/sv_SE/images/filesystem-layout-images/achtung-user.png and b/docs/userguide/sv_SE/images/filesystem-layout-images/achtung-user.png differ diff --git a/docs/userguide/sv_SE/images/prefs-images/appearance-antialiasing.png b/docs/userguide/sv_SE/images/prefs-images/appearance-antialiasing.png index 3848888a1d..cbb49dc808 100644 Binary files a/docs/userguide/sv_SE/images/prefs-images/appearance-antialiasing.png and b/docs/userguide/sv_SE/images/prefs-images/appearance-antialiasing.png differ diff --git a/docs/userguide/sv_SE/images/prefs-images/appearance-colors.png b/docs/userguide/sv_SE/images/prefs-images/appearance-colors.png index af2af06b48..baf96016ad 100644 Binary files a/docs/userguide/sv_SE/images/prefs-images/appearance-colors.png and b/docs/userguide/sv_SE/images/prefs-images/appearance-colors.png differ diff --git a/docs/userguide/sv_SE/images/prefs-images/appearance-decorators.png b/docs/userguide/sv_SE/images/prefs-images/appearance-decorators.png new file mode 100644 index 0000000000..99d9ade42b Binary files /dev/null and b/docs/userguide/sv_SE/images/prefs-images/appearance-decorators.png differ diff --git a/docs/userguide/sv_SE/images/prefs-images/appearance-fonts.png b/docs/userguide/sv_SE/images/prefs-images/appearance-fonts.png new file mode 100644 index 0000000000..c962c53232 Binary files /dev/null and b/docs/userguide/sv_SE/images/prefs-images/appearance-fonts.png differ diff --git a/docs/userguide/sv_SE/images/prefs-images/e-mail-accounts.png b/docs/userguide/sv_SE/images/prefs-images/e-mail-accounts.png new file mode 100644 index 0000000000..17694e831e Binary files /dev/null and b/docs/userguide/sv_SE/images/prefs-images/e-mail-accounts.png differ diff --git a/docs/userguide/sv_SE/images/workshop-wlan-images/join-network.png b/docs/userguide/sv_SE/images/workshop-wlan-images/join-network.png new file mode 100644 index 0000000000..2fedecda91 Binary files /dev/null and b/docs/userguide/sv_SE/images/workshop-wlan-images/join-network.png differ diff --git a/docs/userguide/sv_SE/images/workshop-wlan-images/join-status.gif b/docs/userguide/sv_SE/images/workshop-wlan-images/join-status.gif new file mode 100644 index 0000000000..dea116d418 Binary files /dev/null and b/docs/userguide/sv_SE/images/workshop-wlan-images/join-status.gif differ diff --git a/docs/userguide/sv_SE/index.html b/docs/userguide/sv_SE/index.html index 86cce8fe96..baed51131a 100644 --- a/docs/userguide/sv_SE/index.html +++ b/docs/userguide/sv_SE/index.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/keyboard-shortcuts.html b/docs/userguide/sv_SE/keyboard-shortcuts.html index 29780cecaa..3c829b33df 100644 --- a/docs/userguide/sv_SE/keyboard-shortcuts.html +++ b/docs/userguide/sv_SE/keyboard-shortcuts.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/sv_SE/preferences.html b/docs/userguide/sv_SE/preferences.html index 1ad0b6f65b..344b05749a 100644 --- a/docs/userguide/sv_SE/preferences.html +++ b/docs/userguide/sv_SE/preferences.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -69,8 +71,6 @@
    - - diff --git a/docs/userguide/sv_SE/preferences/appearance.html b/docs/userguide/sv_SE/preferences/appearance.html index 4569e80465..4f59970b24 100644 --- a/docs/userguide/sv_SE/preferences/appearance.html +++ b/docs/userguide/sv_SE/preferences/appearance.html @@ -4,7 +4,7 @@ diff --git a/docs/userguide/sv_SE/preferences/fonts.html b/docs/userguide/sv_SE/preferences/fonts.html index 61c4817a3f..ee5b581ef8 100644 --- a/docs/userguide/sv_SE/preferences/fonts.html +++ b/docs/userguide/sv_SE/preferences/fonts.html @@ -42,17 +42,22 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  FilTyper  -::  Inställningar  -::  Tangentbord  » + « FilTyper +:: Inställningar +:: Tangentbord »
    +
    Översättningen av denna sida är inte komplett. Delar av innehållet kommer därför att visas på engelska.
    + +

    Since "Fonts" moved into the Appearance panel, this is an outdated page. Do not translate!

    fonts-icon_64.pngTypsnitt

    /boot/system/ belongs to the system. Don't touch!
    Configure your email accounts.
    iconFilTyper Add, remove and configure filetypes.
    iconTypsnitt Set your system fonts.
    iconTangentbord Configure repeat delay and rate.
    iconTangentUppsättning
    @@ -65,8 +70,8 @@ fonts.png

    Haiku definierar tre standardfonter för olika ändamål. Du väljer teckensnitt och storlek för texttyperna "Plain", "Bold" och "Fixed", som används systemet igenom. Förutom dessa, finns också en separat texttyp för teckensnittet som används i menyer.

    - - + +
    Förval återställer allt till standardinställningarna.
    Återställ ställer tillbaka inställningarna som de var när du startade Fonts.
    Förval återställer allt till standardinställningarna.
    Återställ ställer tillbaka inställningarna som de var när du startade Fonts.

    @@ -79,9 +84,9 @@ diff --git a/docs/userguide/sv_SE/preferences/keyboard.html b/docs/userguide/sv_SE/preferences/keyboard.html index 5d4d3fe983..c4d21238d0 100644 --- a/docs/userguide/sv_SE/preferences/keyboard.html +++ b/docs/userguide/sv_SE/preferences/keyboard.html @@ -42,10 +42,12 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  Typsnitt  + «  FilTyper  ::  Inställningar  ::  TangentUppsättning  »

    @@ -74,7 +76,7 @@ + + + + Workshop: Wireless networking + + + + + + + + +
    +
    +
    Översättningen av denna sida är inte komplett. Delar av innehållet kommer därför att visas på engelska.
    + + + + + +
    Index
    + Getting supported hardware to work
    + Joining a wireless network
    + Joining from the command line
    + Tips +
    + +

    Workshop: Wireless networking

    + +

    Getting the networking to run is essential in today's need for permanent internet connection. As keeping up to date with all the different and ever changing hardware and drivers is quite impossible for a small project, Haiku relies on a FreeBSD compatibility layer for its networking drivers.
    +This ensures a massive amount of supported hardware, though probably not 100% of what's out there. See this list online for a list of supported models or check FreeBSD 9's release hardware notes.

    +
    Currently only PCI, PCI-X, PCI-Express, Mini PCI, and Mini PCI-Express devices are expected to work.
    +PCMCIA, CardBus, ExpressCard, USB and ISA devices still need more work to become functional.
    + +

    +index +Getting supported hardware to work

    +

    Even if the first hurdle of generally supported hardware is taken, some wireless network cards require binary firmware modules to properly operate. Haiku cannot include some of these proprietary firmware files due to licensing issues. Haiku does however include a simple script which will retrieve and install all of the needed proprietary bits for you. Generally, if you are planning to use wireless networking, it is a good idea to run this script to ensure your system has all of these firmwares available when they are needed.

    +

    Open a Terminal and type:

    +
    install-wifi-firmwares.sh
    +

    Now review the licenses and accept them to install all of the available firmware files.

    + +

    If you don't have internet access to download those lacking firmwares under Haiku, there's an offline method, see under tips below.

    + +

    +index +Joining a wireless network

    +

    By default, Haiku will join the first unencrypted wireless network it finds after booting up. To connect to a specific network, you use the Desktop applet NetworkStatus.

    +

    Right-click on its icon in the Deskbar and choose the network's public name (which is the "SSID" it broadcasts) from the context menu.

    +join-network.png +

    A window opens where you enter the type of authentication (probably WPA/WPA2, WEP is not a secure encryption anymore!) and the password for that wireless network. Click OK to start the login process.
    Depending on your hardware and network configuration this may take a while. You'll be kept informed of the progress by notifications:

    +join-network.gif +

    Once it reads "Ready" and the NetworkStatus icon in the Deskbar shows a green round light, the connection is established. If the notifications end in "No link" and a yellow triangle, something went wrong, probably an incorrect password.

    + +

    +index +Joining from the command line

    +

    If you prefer to use the command line or would like to use scripting or the ~/config/boot/UserBootscript to automate things to join a specific network on bootup, there's the command ifconfig.

    +

    Start a Terminal and enter the first line to scan for available wireless networks:

    +
    ifconfig /dev/net/iprowifi3945/0 scan
    +name                             address              signal  auth
    +haiku-top                        01:d0:19:a6:88:42        30  WPA
    +ArcorInternet123                 00:20:12:a4:29:e1        15  WPA
    +

    The path to your wireless network adapter has to be adjusted, of course.
    +The output shows the public name (SSID), MAC address, signal strength and authentication method of all found networks.

    +

    To join a network, use this line and insert the respective public name (SSID) and password:

    +
    ifconfig /dev/net/iprowifi3945/0 join {SSID} {password}
    +

    Make sure the initial configuration of the wireless network adapter after booting up has finished, before issuing ifconfig commands or they might be ignored. Depending on your hardware and network configuration that may take a while. Watch those notifications...

    + +

    +index +Tips

    + + +
    +
    + + + + + diff --git a/docs/userguide/sv_SE/workspaces.html b/docs/userguide/sv_SE/workspaces.html index 7ee410527b..de9749f1e5 100644 --- a/docs/userguide/sv_SE/workspaces.html +++ b/docs/userguide/sv_SE/workspaces.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications.html b/docs/userguide/uk/applications.html index cdbd15e390..3188c5a0be 100644 --- a/docs/userguide/uk/applications.html +++ b/docs/userguide/uk/applications.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/activitymonitor.html b/docs/userguide/uk/applications/activitymonitor.html index 937069418c..1eedff55c9 100644 --- a/docs/userguide/uk/applications/activitymonitor.html +++ b/docs/userguide/uk/applications/activitymonitor.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/bepdf.html b/docs/userguide/uk/applications/bepdf.html index b14589a273..4ba613b71d 100644 --- a/docs/userguide/uk/applications/bepdf.html +++ b/docs/userguide/uk/applications/bepdf.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/bootmanager.html b/docs/userguide/uk/applications/bootmanager.html index 02b269a1bb..814b4c00fa 100644 --- a/docs/userguide/uk/applications/bootmanager.html +++ b/docs/userguide/uk/applications/bootmanager.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/cdplayer.html b/docs/userguide/uk/applications/cdplayer.html index d7cde808ef..fe1c2e8709 100644 --- a/docs/userguide/uk/applications/cdplayer.html +++ b/docs/userguide/uk/applications/cdplayer.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/charactermap.html b/docs/userguide/uk/applications/charactermap.html index b3dd92a73b..bef55b953d 100644 --- a/docs/userguide/uk/applications/charactermap.html +++ b/docs/userguide/uk/applications/charactermap.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/cli-apps.html b/docs/userguide/uk/applications/cli-apps.html index 9f94247279..4059fc55e7 100644 --- a/docs/userguide/uk/applications/cli-apps.html +++ b/docs/userguide/uk/applications/cli-apps.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/codycam.html b/docs/userguide/uk/applications/codycam.html index c22e7eba51..857ac550ac 100644 --- a/docs/userguide/uk/applications/codycam.html +++ b/docs/userguide/uk/applications/codycam.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/deskcalc.html b/docs/userguide/uk/applications/deskcalc.html index 147e255165..908e9dce7e 100644 --- a/docs/userguide/uk/applications/deskcalc.html +++ b/docs/userguide/uk/applications/deskcalc.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -60,7 +62,7 @@


    DeskCalc - простий калькулятор, що не позбавлений деяких корисних функцій, як може видатися спочатку.

    -deskcalc.png +deskcalc.png
    • DeskCalc розуміє значно більше команд ніж дозволяє його скромна клавіатура.
      Окрім операторів +, -, *, /, %, ^ і констант pi and e він підтримує наступнв функції:
      diff --git a/docs/userguide/uk/applications/diskprobe.html b/docs/userguide/uk/applications/diskprobe.html index 1c1e73e6aa..0eb39fb76f 100644 --- a/docs/userguide/uk/applications/diskprobe.html +++ b/docs/userguide/uk/applications/diskprobe.html @@ -40,6 +40,8 @@

    • Português
    • Suomi
    • Slovenčina
    • +
    • Magyar
    • +
    • Português (Brazil)
    • English
    diff --git a/docs/userguide/uk/applications/diskusage.html b/docs/userguide/uk/applications/diskusage.html index 196a64ec6f..b3d446d497 100644 --- a/docs/userguide/uk/applications/diskusage.html +++ b/docs/userguide/uk/applications/diskusage.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/drivesetup.html b/docs/userguide/uk/applications/drivesetup.html index 1624dcf5dc..2fc0d6a5ce 100644 --- a/docs/userguide/uk/applications/drivesetup.html +++ b/docs/userguide/uk/applications/drivesetup.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/expander.html b/docs/userguide/uk/applications/expander.html index 4211aa7ea7..4026252e01 100644 --- a/docs/userguide/uk/applications/expander.html +++ b/docs/userguide/uk/applications/expander.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -62,14 +64,14 @@ Just double-click an archive to see this simple interface:

    expander.png

    - +
    SourceALT Swill open a file dialog to find an archive to unpack.
    SourceALT Owill open a file dialog to find an archive to unpack.
    DestinationALT Dwill open a file dialog to set the destination.
    ExpandALT Ewill start the unpacking. It can be aborted with ALT K.

    You can toggle the display of the file listing by un/checking Show contents or pressing ALT L.

    Expander can only unpack whole archives.
    You can't select individual files to expand or add/remove files from the archive.
    -

    Edit | Preferences... or ALT P opens a preference panel that offers some useful settings to adjust Expander's behavior.
    +

    Settings | Settings... or ALT S opens a preference panel that offers some useful settings to adjust Expander's behavior.
    The options are all self-explanatory:

    expander-preferences.png

    diff --git a/docs/userguide/uk/applications/icon-o-matic.html b/docs/userguide/uk/applications/icon-o-matic.html index db447f0cea..57a04b70d9 100644 --- a/docs/userguide/uk/applications/icon-o-matic.html +++ b/docs/userguide/uk/applications/icon-o-matic.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/installer.html b/docs/userguide/uk/applications/installer.html index 7ce7bb2eaf..6fba38e174 100644 --- a/docs/userguide/uk/applications/installer.html +++ b/docs/userguide/uk/applications/installer.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/list-cli-apps.html b/docs/userguide/uk/applications/list-cli-apps.html index fdf7f1f766..bed8ff0d47 100644 --- a/docs/userguide/uk/applications/list-cli-apps.html +++ b/docs/userguide/uk/applications/list-cli-apps.html @@ -39,6 +39,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -277,7 +279,7 @@ Here's a list of all commandline applications that are shipped with Haiku. Each stty Shows/sets terminal characteristics. su Changes the effective user id and group. sum Prints checksum and block counts for each file. -sync Forces changed blocks to disk, updates the super block. +sync Forces changed blocks to disk, updates the superblock. sysinfo Shows system info.

    indexT

    tac Concatenates and prints files, last line first. diff --git a/docs/userguide/uk/applications/magnify.html b/docs/userguide/uk/applications/magnify.html index a4c05bf4f6..910954f684 100644 --- a/docs/userguide/uk/applications/magnify.html +++ b/docs/userguide/uk/applications/magnify.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/mail.html b/docs/userguide/uk/applications/mail.html index c476d0e06b..7915e24f25 100644 --- a/docs/userguide/uk/applications/mail.html +++ b/docs/userguide/uk/applications/mail.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/mediaplayer.html b/docs/userguide/uk/applications/mediaplayer.html index fc155ff7fc..8023730647 100644 --- a/docs/userguide/uk/applications/mediaplayer.html +++ b/docs/userguide/uk/applications/mediaplayer.html @@ -39,6 +39,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/midiplayer.html b/docs/userguide/uk/applications/midiplayer.html index 05d5150308..8261cf3d21 100644 --- a/docs/userguide/uk/applications/midiplayer.html +++ b/docs/userguide/uk/applications/midiplayer.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/packageinstaller.html b/docs/userguide/uk/applications/packageinstaller.html index 9ecf25117b..59c374693a 100644 --- a/docs/userguide/uk/applications/packageinstaller.html +++ b/docs/userguide/uk/applications/packageinstaller.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -65,7 +67,7 @@ double-clicking a supported file. packageinstaller.png

    The main window gives access to two configurations:

      -
    • type of installation (depending on the developer there might be more than one (standard) installation option).
    • +
    • installation type (depending on the developer there might be more than one (standard) installation option)
    • Installation location (only entire partitions/hard disks can be chosen, not custom paths)

    After clicking Install the extraction and installation process will begin.

    diff --git a/docs/userguide/uk/applications/pe.html b/docs/userguide/uk/applications/pe.html index ff7de3548c..e4f3a91baa 100644 --- a/docs/userguide/uk/applications/pe.html +++ b/docs/userguide/uk/applications/pe.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/people.html b/docs/userguide/uk/applications/people.html index 381eff942c..d966d3bc93 100644 --- a/docs/userguide/uk/applications/people.html +++ b/docs/userguide/uk/applications/people.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/poorman.html b/docs/userguide/uk/applications/poorman.html index 09e25b3629..38621a27bf 100644 --- a/docs/userguide/uk/applications/poorman.html +++ b/docs/userguide/uk/applications/poorman.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/screenshot.html b/docs/userguide/uk/applications/screenshot.html index 256d23b68d..be75a5c1d4 100644 --- a/docs/userguide/uk/applications/screenshot.html +++ b/docs/userguide/uk/applications/screenshot.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/showimage.html b/docs/userguide/uk/applications/showimage.html index a0da21e162..b473c50c72 100644 --- a/docs/userguide/uk/applications/showimage.html +++ b/docs/userguide/uk/applications/showimage.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -66,7 +68,7 @@ ShowImage provides minimal editing features to crop, rotate and flip images and

    The View menu offers to start a Slide show of all images in a folder (or query result window) and set a Slide delay from 2 to 20 seconds.

    Other commands apply to the currently displayed image (without changing the size of the window):
    Original size shows the image with a 100% zoom factor.
    -Fit to window shrinks the image back into the window fame, e.g. after having zoomed into it or after resizing the window.
    +Fit to window shrinks the image back into the window frame, e.g. after having zoomed into it or after resizing the window.
    Zoom in and Zoom out move into and out of the image in 10% steps. Zooming is also done with the mouse wheel; to pan an image bigger than the window, simply left-click and drag your mouse around.

    Two settings don't just apply to the currently displayed image and are remembered when browsing from one image to the next:
    High quality zooming applies a very fast filter when zooming to reduce jagged lines and produce a smoother result.
    diff --git a/docs/userguide/uk/applications/soundrecorder.html b/docs/userguide/uk/applications/soundrecorder.html index dbcc5a7716..cdc61c5f10 100644 --- a/docs/userguide/uk/applications/soundrecorder.html +++ b/docs/userguide/uk/applications/soundrecorder.html @@ -38,6 +38,8 @@

  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/stylededit.html b/docs/userguide/uk/applications/stylededit.html index afc77aa87f..0f3280cc27 100644 --- a/docs/userguide/uk/applications/stylededit.html +++ b/docs/userguide/uk/applications/stylededit.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/terminal.html b/docs/userguide/uk/applications/terminal.html index 91b358ba86..a0f9822229 100644 --- a/docs/userguide/uk/applications/terminal.html +++ b/docs/userguide/uk/applications/terminal.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/textsearch.html b/docs/userguide/uk/applications/textsearch.html index 8c2a8cba9e..a51454bc99 100644 --- a/docs/userguide/uk/applications/textsearch.html +++ b/docs/userguide/uk/applications/textsearch.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/tv.html b/docs/userguide/uk/applications/tv.html index caad3e654a..e88ac4bee9 100644 --- a/docs/userguide/uk/applications/tv.html +++ b/docs/userguide/uk/applications/tv.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/vision.html b/docs/userguide/uk/applications/vision.html index f7170c664f..8f11650d4b 100644 --- a/docs/userguide/uk/applications/vision.html +++ b/docs/userguide/uk/applications/vision.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/webpositive.html b/docs/userguide/uk/applications/webpositive.html index e22eb2e677..faac645b90 100644 --- a/docs/userguide/uk/applications/webpositive.html +++ b/docs/userguide/uk/applications/webpositive.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/applications/wonderbrush.html b/docs/userguide/uk/applications/wonderbrush.html index 3c579d73a2..15ab361cb9 100644 --- a/docs/userguide/uk/applications/wonderbrush.html +++ b/docs/userguide/uk/applications/wonderbrush.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/attributes.html b/docs/userguide/uk/attributes.html index 1b8e9c10f6..f28e0658b3 100644 --- a/docs/userguide/uk/attributes.html +++ b/docs/userguide/uk/attributes.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/bash-scripting.html b/docs/userguide/uk/bash-scripting.html index 84b513e62e..1cbc4db174 100644 --- a/docs/userguide/uk/bash-scripting.html +++ b/docs/userguide/uk/bash-scripting.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/bootloader.html b/docs/userguide/uk/bootloader.html index 6387ec0b09..8209a5e63f 100644 --- a/docs/userguide/uk/bootloader.html +++ b/docs/userguide/uk/bootloader.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/contents.html b/docs/userguide/uk/contents.html index c1e12a6415..909c8bb53e 100644 --- a/docs/userguide/uk/contents.html +++ b/docs/userguide/uk/contents.html @@ -4,7 +4,7 @@ @@ -40,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -100,16 +103,19 @@ Auto-raise The Deskbar pops to the front if the mouse pointer touches it. Auto-hide The Deskbar is reduced to only a few pixels and only pops up if the mouse pointer touches them. -
  • Додатки

    +
  • Applications

    - - - - + + + + + +
    Сортувати список запущених додатків Сортувати список запущених додатків по алфавіту.
    Tracker завжди перший Навіть коли увімкнене сортування, Tracker буде відображатись першим у списку.
    Показати expander додатку Після активації, справа від назви додатку у списку запущених додатків Deskbar, з'явиться стрілочка, котра дозволить звертати/розгортати список вікон додатку.
    Розкривати нові додатки Після запуску автоматично відкривається список вікон додатку.
    Sort running applications Sorts the list of running programs alphabetically.
    Tracker always first Even if you sort alphabetically, the Tracker entry always stays first in the list.
    Show application expander Provides a small widget to show/hide all windows of a program directly under its entry in the Deskbar.
    Expand new applications Newly launched programs have their windows automatically expanded under their entry in the Deskbar.
    Hide application names Removes the text labels of running applications.
    Icon size Adjusts the icon size of running applications.
  • -
  • Годинник

    +
  • Clock

    - + +
    Показувати секунди Додати показ секунд в годиннику.
    Show seconds Adds the display of seconds to the clock.
    Show day of week Adds the abbreviation of the weekday to the clock.
  • diff --git a/docs/userguide/uk/desktop-applets.html b/docs/userguide/uk/desktop-applets.html index f45a467e70..96a47271c9 100644 --- a/docs/userguide/uk/desktop-applets.html +++ b/docs/userguide/uk/desktop-applets.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/desktop-applets/launchbox.html b/docs/userguide/uk/desktop-applets/launchbox.html index 4abf315dc7..ac45b9bd26 100644 --- a/docs/userguide/uk/desktop-applets/launchbox.html +++ b/docs/userguide/uk/desktop-applets/launchbox.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/desktop-applets/networkstatus.html b/docs/userguide/uk/desktop-applets/networkstatus.html index 14307ec659..8e3e55b581 100644 --- a/docs/userguide/uk/desktop-applets/networkstatus.html +++ b/docs/userguide/uk/desktop-applets/networkstatus.html @@ -39,6 +39,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -62,7 +64,7 @@ Wherever installed, it's operated via a right-click context menu.

    NetworkStatus applet
    The first section contains all network devices' names and their state. Clicking on such an entry brings up a window showing its IP, broadcast and netmask address.
    -Below is a list of all wireless networks found by the first wireless adapter and an indicator of their signal strength.
    +Below is a list of all wireless networks found by the first wireless adapter and an indicator of their signal strength. Have a look at the Workshop: Wireless networking for more information on how to set up a connection.
    Lastly, you can Open network preferences... to change your network configuration or Quit the applet.

    Status icons

    diff --git a/docs/userguide/uk/desktop-applets/powerstatus.html b/docs/userguide/uk/desktop-applets/powerstatus.html index f07375cf54..adc6727160 100644 --- a/docs/userguide/uk/desktop-applets/powerstatus.html +++ b/docs/userguide/uk/desktop-applets/powerstatus.html @@ -39,6 +39,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/desktop-applets/processcontroller.html b/docs/userguide/uk/desktop-applets/processcontroller.html index a19e113cd1..5f1be6e91a 100644 --- a/docs/userguide/uk/desktop-applets/processcontroller.html +++ b/docs/userguide/uk/desktop-applets/processcontroller.html @@ -39,6 +39,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/desktop-applets/workspaces.html b/docs/userguide/uk/desktop-applets/workspaces.html index a6ca262889..b3dddc2a42 100644 --- a/docs/userguide/uk/desktop-applets/workspaces.html +++ b/docs/userguide/uk/desktop-applets/workspaces.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/filesystem-layout.html b/docs/userguide/uk/filesystem-layout.html index 91962b3c40..ca3fec1657 100644 --- a/docs/userguide/uk/filesystem-layout.html +++ b/docs/userguide/uk/filesystem-layout.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -56,7 +58,7 @@

    Haiku's filesystem layout is quite transparent, trying to always use non-cryptic names for files and folders, that don't leave the user guessing. Files and folders that are important for the system to function properly, are protected from accidental tempering by showing one of these alerts:

    achtung-user.png  achtung-system.png -

    The second alert pops up if you try to rename or delete something in the system hierarchy. Here, the "Do it" button will only become clickable when you're holding down the SHIFT key.

    +

    The second alert pops up if you try to rename or delete something in the system hierarchy. Here, the "Rename" button will only become clickable when you're holding down the SHIFT key.

    Generally, there are three separate branches springing from the root folder of the boot volume:

    diff --git a/docs/userguide/uk/filetypes.html b/docs/userguide/uk/filetypes.html index e422690e55..e00b8cd48d 100644 --- a/docs/userguide/uk/filetypes.html +++ b/docs/userguide/uk/filetypes.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/gui.html b/docs/userguide/uk/gui.html index fd6fdd8320..cf044ddce4 100644 --- a/docs/userguide/uk/gui.html +++ b/docs/userguide/uk/gui.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -74,13 +76,14 @@
  • You can send a window to the back with a right-click on its tab (or its border).
  • The close button.

  • The "zoom" button (or CTRL ALT Z). In most applications, this will expand a window to maximum size. It doesn't have to, however. Tracker windows, for example, will resize to best fit the contents.

  • -
  • The resize corner. Dragging anywhere else on a window's border will move the window.

  • +
  • The window border. Left-dragging moves the window, right-dragging resizes.

  • +
  • The resize corner.

  • index A quick way to move or resize windows

    -

    Moving and resizing windows is a large part of interacting with several concurrently running applications. Instead of aiming at the small yellow title tab or the even tinier window border, there's a more convenient way to move a window. Also, additionally to its small size, the resize corner has another limitation: It only allows resizing at and in the direction of the lower right corner.

    +

    Moving and resizing windows is a large part of interacting with several concurrently running applications. Instead of aiming at the small yellow title tab or the even tinier window border, there's a more convenient way to move a window. Also, additionally to its small size, the resize corner has another limitation: It only allows resizing at and in the direction of the lower right corner.
    Right-dragging a border for resizing works, but again you'll have to aim carefully.

    To address these issues, Haiku provides a neat solution using the window management key combo CTRL ALT and the mouse. See also chapter Shortcuts and key combinations for more shortcuts concerning window management.

    resizing.png

    Holding down CTRL ALT will highlight the window borders nearest to the mouse pointer. Move the mouse in the direction of another border to change the target. Click and dragging with the right mouse button will resize the window along the highlighted border(s).

    diff --git a/docs/userguide/uk/images/apps-images/deskcalc.png b/docs/userguide/uk/images/apps-images/deskcalc.png new file mode 100644 index 0000000000..b4b14b991d Binary files /dev/null and b/docs/userguide/uk/images/apps-images/deskcalc.png differ diff --git a/docs/userguide/uk/images/deskbar-images/configure.png b/docs/userguide/uk/images/deskbar-images/configure.png index 228d1f1175..3f53b2280d 100644 Binary files a/docs/userguide/uk/images/deskbar-images/configure.png and b/docs/userguide/uk/images/deskbar-images/configure.png differ diff --git a/docs/userguide/uk/images/filesystem-layout-images/achtung-system.png b/docs/userguide/uk/images/filesystem-layout-images/achtung-system.png index f24c253bc8..fbcebee00c 100644 Binary files a/docs/userguide/uk/images/filesystem-layout-images/achtung-system.png and b/docs/userguide/uk/images/filesystem-layout-images/achtung-system.png differ diff --git a/docs/userguide/uk/images/filesystem-layout-images/achtung-user.png b/docs/userguide/uk/images/filesystem-layout-images/achtung-user.png index 9a77cfbb9d..fa6d1cfa24 100644 Binary files a/docs/userguide/uk/images/filesystem-layout-images/achtung-user.png and b/docs/userguide/uk/images/filesystem-layout-images/achtung-user.png differ diff --git a/docs/userguide/uk/images/prefs-images/appearance-antialiasing.png b/docs/userguide/uk/images/prefs-images/appearance-antialiasing.png index b57d708a5a..cbb49dc808 100644 Binary files a/docs/userguide/uk/images/prefs-images/appearance-antialiasing.png and b/docs/userguide/uk/images/prefs-images/appearance-antialiasing.png differ diff --git a/docs/userguide/uk/images/prefs-images/appearance-colors.png b/docs/userguide/uk/images/prefs-images/appearance-colors.png index a3e2391c2c..baf96016ad 100644 Binary files a/docs/userguide/uk/images/prefs-images/appearance-colors.png and b/docs/userguide/uk/images/prefs-images/appearance-colors.png differ diff --git a/docs/userguide/uk/images/prefs-images/appearance-decorators.png b/docs/userguide/uk/images/prefs-images/appearance-decorators.png new file mode 100644 index 0000000000..99d9ade42b Binary files /dev/null and b/docs/userguide/uk/images/prefs-images/appearance-decorators.png differ diff --git a/docs/userguide/uk/images/prefs-images/appearance-fonts.png b/docs/userguide/uk/images/prefs-images/appearance-fonts.png new file mode 100644 index 0000000000..c962c53232 Binary files /dev/null and b/docs/userguide/uk/images/prefs-images/appearance-fonts.png differ diff --git a/docs/userguide/uk/images/prefs-images/e-mail-accounts.png b/docs/userguide/uk/images/prefs-images/e-mail-accounts.png new file mode 100644 index 0000000000..17694e831e Binary files /dev/null and b/docs/userguide/uk/images/prefs-images/e-mail-accounts.png differ diff --git a/docs/userguide/uk/images/workshop-wlan-images/join-network.png b/docs/userguide/uk/images/workshop-wlan-images/join-network.png new file mode 100644 index 0000000000..2fedecda91 Binary files /dev/null and b/docs/userguide/uk/images/workshop-wlan-images/join-network.png differ diff --git a/docs/userguide/uk/images/workshop-wlan-images/join-status.gif b/docs/userguide/uk/images/workshop-wlan-images/join-status.gif new file mode 100644 index 0000000000..dea116d418 Binary files /dev/null and b/docs/userguide/uk/images/workshop-wlan-images/join-status.gif differ diff --git a/docs/userguide/uk/index.html b/docs/userguide/uk/index.html index 43af45033f..b3ce4b8f21 100644 --- a/docs/userguide/uk/index.html +++ b/docs/userguide/uk/index.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/keyboard-shortcuts.html b/docs/userguide/uk/keyboard-shortcuts.html index 4be504832f..f0c47f235d 100644 --- a/docs/userguide/uk/keyboard-shortcuts.html +++ b/docs/userguide/uk/keyboard-shortcuts.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/uk/preferences.html b/docs/userguide/uk/preferences.html index e23949abf4..f5cae46dd1 100644 --- a/docs/userguide/uk/preferences.html +++ b/docs/userguide/uk/preferences.html @@ -38,6 +38,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -67,8 +69,6 @@
    - - diff --git a/docs/userguide/uk/preferences/appearance.html b/docs/userguide/uk/preferences/appearance.html index a02e54fe06..5f949cd07b 100644 --- a/docs/userguide/uk/preferences/appearance.html +++ b/docs/userguide/uk/preferences/appearance.html @@ -4,7 +4,7 @@ diff --git a/docs/userguide/uk/preferences/fonts.html b/docs/userguide/uk/preferences/fonts.html index 4fb198ff92..e4567cee1b 100644 --- a/docs/userguide/uk/preferences/fonts.html +++ b/docs/userguide/uk/preferences/fonts.html @@ -38,12 +38,14 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  Типи файлів (FileTypes)  -::  Preferences  -::  Keyboard  » + « Типи файлів (FileTypes) +:: Preferences +:: Keyboard » @@ -51,6 +53,8 @@
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    +

    Since "Fonts" moved into the Appearance panel, this is an outdated page. Do not translate!

    +

    fonts-icon_64.pngFonts

    /boot/system/ belongs to the system. Don't touch!
    Configure your email accounts.
    iconFileTypes Add, remove and configure filetypes.
    iconFonts Set your system fonts.
    iconKeyboard Configure repeat delay and rate.
    iconKeymap
    @@ -62,8 +66,8 @@ fonts.png

    Haiku defines three standard fonts for different purposes. You set plain, bold and fixed font types and sizes that will be used throughout the system. Besides these, there's also a separate setting for the font used in menus.

    Розташування в Deskbar:Настройки (Preferences)
    - - + +
    По замовчуванню (Defaults) Скинути всі настройки до значень по замовчуванню.
    Повернути (Revert) brings back the settings that were active when you started the Fonts preferences.
    По замовчуванню (Defaults) Скинути всі настройки до значень по замовчуванню.
    Повернути (Revert) brings back the settings that were active when you started the Fonts preferences.

    @@ -76,9 +80,9 @@ diff --git a/docs/userguide/uk/preferences/keyboard.html b/docs/userguide/uk/preferences/keyboard.html index 2a6de47fbe..e5e608e410 100644 --- a/docs/userguide/uk/preferences/keyboard.html +++ b/docs/userguide/uk/preferences/keyboard.html @@ -38,10 +38,12 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  Fonts  + «  Типи файлів (FileTypes)  ::  Preferences  ::  Keymap  » @@ -71,7 +73,7 @@ + + + + Workshop: Wireless networking + + + + + + + + +
    +
    +
    The translation of this page isn't yet complete. Until it is, unfinished parts use the English original.
    + + + + + +
    Index
    + Getting supported hardware to work
    + Joining a wireless network
    + Joining from the command line
    + Tips +
    + +

    Workshop: Wireless networking

    + +

    Getting the networking to run is essential in today's need for permanent internet connection. As keeping up to date with all the different and ever changing hardware and drivers is quite impossible for a small project, Haiku relies on a FreeBSD compatibility layer for its networking drivers.
    +This ensures a massive amount of supported hardware, though probably not 100% of what's out there. See this list online for a list of supported models or check FreeBSD 9's release hardware notes.

    +
    Currently only PCI, PCI-X, PCI-Express, Mini PCI, and Mini PCI-Express devices are expected to work.
    +PCMCIA, CardBus, ExpressCard, USB and ISA devices still need more work to become functional.
    + +

    +index +Getting supported hardware to work

    +

    Even if the first hurdle of generally supported hardware is taken, some wireless network cards require binary firmware modules to properly operate. Haiku cannot include some of these proprietary firmware files due to licensing issues. Haiku does however include a simple script which will retrieve and install all of the needed proprietary bits for you. Generally, if you are planning to use wireless networking, it is a good idea to run this script to ensure your system has all of these firmwares available when they are needed.

    +

    Open a Terminal and type:

    +
    install-wifi-firmwares.sh
    +

    Now review the licenses and accept them to install all of the available firmware files.

    + +

    If you don't have internet access to download those lacking firmwares under Haiku, there's an offline method, see under tips below.

    + +

    +index +Joining a wireless network

    +

    By default, Haiku will join the first unencrypted wireless network it finds after booting up. To connect to a specific network, you use the Desktop applet NetworkStatus.

    +

    Right-click on its icon in the Deskbar and choose the network's public name (which is the "SSID" it broadcasts) from the context menu.

    +join-network.png +

    A window opens where you enter the type of authentication (probably WPA/WPA2, WEP is not a secure encryption anymore!) and the password for that wireless network. Click OK to start the login process.
    Depending on your hardware and network configuration this may take a while. You'll be kept informed of the progress by notifications:

    +join-network.gif +

    Once it reads "Ready" and the NetworkStatus icon in the Deskbar shows a green round light, the connection is established. If the notifications end in "No link" and a yellow triangle, something went wrong, probably an incorrect password.

    + +

    +index +Joining from the command line

    +

    If you prefer to use the command line or would like to use scripting or the ~/config/boot/UserBootscript to automate things to join a specific network on bootup, there's the command ifconfig.

    +

    Start a Terminal and enter the first line to scan for available wireless networks:

    +
    ifconfig /dev/net/iprowifi3945/0 scan
    +name                             address              signal  auth
    +haiku-top                        01:d0:19:a6:88:42        30  WPA
    +ArcorInternet123                 00:20:12:a4:29:e1        15  WPA
    +

    The path to your wireless network adapter has to be adjusted, of course.
    +The output shows the public name (SSID), MAC address, signal strength and authentication method of all found networks.

    +

    To join a network, use this line and insert the respective public name (SSID) and password:

    +
    ifconfig /dev/net/iprowifi3945/0 join {SSID} {password}
    +

    Make sure the initial configuration of the wireless network adapter after booting up has finished, before issuing ifconfig commands or they might be ignored. Depending on your hardware and network configuration that may take a while. Watch those notifications...

    + +

    +index +Tips

    + + +
    +
    + + + + + diff --git a/docs/userguide/uk/workspaces.html b/docs/userguide/uk/workspaces.html index dd689f8096..2692e53f79 100644 --- a/docs/userguide/uk/workspaces.html +++ b/docs/userguide/uk/workspaces.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications.html b/docs/userguide/zh_CN/applications.html index 0419267037..5f345aa88d 100644 --- a/docs/userguide/zh_CN/applications.html +++ b/docs/userguide/zh_CN/applications.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/activitymonitor.html b/docs/userguide/zh_CN/applications/activitymonitor.html index 82cc253979..2a551fee20 100644 --- a/docs/userguide/zh_CN/applications/activitymonitor.html +++ b/docs/userguide/zh_CN/applications/activitymonitor.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/bepdf.html b/docs/userguide/zh_CN/applications/bepdf.html index adb0a289b1..014b7c6118 100644 --- a/docs/userguide/zh_CN/applications/bepdf.html +++ b/docs/userguide/zh_CN/applications/bepdf.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/bootmanager.html b/docs/userguide/zh_CN/applications/bootmanager.html index 0e92e52287..3ad428bc20 100644 --- a/docs/userguide/zh_CN/applications/bootmanager.html +++ b/docs/userguide/zh_CN/applications/bootmanager.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/cdplayer.html b/docs/userguide/zh_CN/applications/cdplayer.html index 3667c939ed..1214e54469 100644 --- a/docs/userguide/zh_CN/applications/cdplayer.html +++ b/docs/userguide/zh_CN/applications/cdplayer.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/charactermap.html b/docs/userguide/zh_CN/applications/charactermap.html index a24d3c3300..48db4a4209 100644 --- a/docs/userguide/zh_CN/applications/charactermap.html +++ b/docs/userguide/zh_CN/applications/charactermap.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/cli-apps.html b/docs/userguide/zh_CN/applications/cli-apps.html index 4681dd0fdb..ccec14eb46 100644 --- a/docs/userguide/zh_CN/applications/cli-apps.html +++ b/docs/userguide/zh_CN/applications/cli-apps.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/codycam.html b/docs/userguide/zh_CN/applications/codycam.html index 343aefd04a..85a60ab7ab 100644 --- a/docs/userguide/zh_CN/applications/codycam.html +++ b/docs/userguide/zh_CN/applications/codycam.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/deskcalc.html b/docs/userguide/zh_CN/applications/deskcalc.html index 4573a27542..9be39e45f6 100644 --- a/docs/userguide/zh_CN/applications/deskcalc.html +++ b/docs/userguide/zh_CN/applications/deskcalc.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -60,7 +62,7 @@


    这是一个简单的计算器,但是它有一些隐藏的非常好用的特性。

    -deskcalc.png +deskcalc.png
    • 计算器不仅仅能够识别出面板键盘上的输入符号。
      除了 +-*/%^ 和常量 pie ,它还支持下面的数学函数:
      diff --git a/docs/userguide/zh_CN/applications/diskprobe.html b/docs/userguide/zh_CN/applications/diskprobe.html index 3edf972264..ab48042eeb 100644 --- a/docs/userguide/zh_CN/applications/diskprobe.html +++ b/docs/userguide/zh_CN/applications/diskprobe.html @@ -40,6 +40,8 @@

    • Português
    • Suomi
    • Slovenčina
    • +
    • Magyar
    • +
    • Português (Brazil)
    • English
    diff --git a/docs/userguide/zh_CN/applications/diskusage.html b/docs/userguide/zh_CN/applications/diskusage.html index 6ff82974c2..f31b125276 100644 --- a/docs/userguide/zh_CN/applications/diskusage.html +++ b/docs/userguide/zh_CN/applications/diskusage.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/drivesetup.html b/docs/userguide/zh_CN/applications/drivesetup.html index 4d8da02cc9..5cf3b7eca3 100644 --- a/docs/userguide/zh_CN/applications/drivesetup.html +++ b/docs/userguide/zh_CN/applications/drivesetup.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/expander.html b/docs/userguide/zh_CN/applications/expander.html index 059618aa25..d20ebf3ce2 100644 --- a/docs/userguide/zh_CN/applications/expander.html +++ b/docs/userguide/zh_CN/applications/expander.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -63,14 +65,14 @@ 双击压缩档案可以看到下面的程序界面:

    expander.png

    - +
    源路径ALT S打开一个文件对话框,找出所要解压的压缩档案。
    源路径ALT O打开一个文件对话框,找出所要解压的压缩档案。
    目标路径ALT D打开文件对话框,设置目标路径。
    解压ALT E开始解压,可以通过 ALT K 组合键终止解压。

    您可以通过勾选 Show Contents 或者按下 ALT L 组合键来显示档案中的文件列表。

    归档管理器只能够解压整个压缩档案。
    您不能够选择其中的单个文件进行解压,而且无法添加或者删除压缩档案中的文件。
    -

    Edit | Preferences... 或者 ALT P 组合键打开一个设置面板,它提供了一些有用的设置来调整归档管理器的行为。 +

    Settings | Settings... 或者 ALT S 组合键打开一个设置面板,它提供了一些有用的设置来调整归档管理器的行为。
    所有的选项都是非常容易理解的:

    expander-preferences.png

    diff --git a/docs/userguide/zh_CN/applications/icon-o-matic.html b/docs/userguide/zh_CN/applications/icon-o-matic.html index b94f30dbaa..fba9787d31 100644 --- a/docs/userguide/zh_CN/applications/icon-o-matic.html +++ b/docs/userguide/zh_CN/applications/icon-o-matic.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/installer.html b/docs/userguide/zh_CN/applications/installer.html index 17595d269e..7905adec88 100644 --- a/docs/userguide/zh_CN/applications/installer.html +++ b/docs/userguide/zh_CN/applications/installer.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/list-cli-apps.html b/docs/userguide/zh_CN/applications/list-cli-apps.html index 1b59888fc9..40ac303a0d 100644 --- a/docs/userguide/zh_CN/applications/list-cli-apps.html +++ b/docs/userguide/zh_CN/applications/list-cli-apps.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/magnify.html b/docs/userguide/zh_CN/applications/magnify.html index e6eba6b593..360de3ceab 100644 --- a/docs/userguide/zh_CN/applications/magnify.html +++ b/docs/userguide/zh_CN/applications/magnify.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/mail.html b/docs/userguide/zh_CN/applications/mail.html index 26d12498cb..71e972d899 100644 --- a/docs/userguide/zh_CN/applications/mail.html +++ b/docs/userguide/zh_CN/applications/mail.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -51,7 +53,6 @@
    -
    本节的翻译还未完成。在未完成之前,所有的未完成部分都将使用英语原文。
    @@ -102,9 +103,9 @@
    索引
    回复所有人SHIFT ALT R该选项回复给原始的发送人以及该邮件所有的抄送人(cc'ed)。
    如果在回复邮件之前,您标记了其中某一段,那么在您的回复邮件中将仅引用标记的内容。这样可以避免过度引用,而且所有人都会对此比较反感。
    -

    The items to Forward, Resend and Copy to new are again pretty self-explaining.

    -

    When you've opened an email from a Tracker or query result window, Previous message and Next message will move to the previous/next email in the list.

    -

    Save address collects all email addresses from the header and the actual email body in a submenu. Choosing an address will open the People application in order to complete and save the contact information.

    +

    菜单项 下一封, 重新发送转发 的作用都非常明白。

    +

    当您通过文件浏览器或者查询结果窗口打开邮件时, 上一个下一个 将会打开列表中的前一个/下一个消息。

    +

    保存地址 将会在一个子菜单中保留从邮件头和邮件中搜集所有的邮件地址。选中其中一个地址就爱个哪会打开 联系人 应用以便填写并保存完整的联系人信息。

    index查询

    该功能还无法工作,但是其目的在于,它将会显示所有与当前打开邮件相关的邮件,如所有来自同一发件人或者具有相同主题/线索的邮件。

    @@ -112,34 +113,34 @@

    index 新建邮件

    -

    A new email is created by invoking the New mail message menu or the corresponding icon from the tool bar of an open email. Or you just start the Mail application or choose Create new message... from the context menu of the mailbox icon in the Deskbar.

    +

    您可以通过 新建邮件 菜单或者工具栏中对应的图标来创建新邮件。当然,您也可以直接打开邮件程序,或者从桌面栏邮箱图标的右键菜单中选择 新建邮件...

    email-write.png -

    The window is pretty similar to the one when reading mails. The menu and tool bar items are slightly different and the text boxes have to be filled with the recipient's email address, subject and so on, of course.

    -

    Cc is short for the anachronistic term "carbon copy" and results in copies of your mail being sent to the listed people. The difference to just listing a buch of addresses in the "To" field is, that you don't directly address the cc'ed people, thereby signaling that you probably don't expect an answer of them.
    -Bcc means "blind carbon copy" which does practically the same as "Cc", but hides the recipients from each other.

    -

    You can enter several recipients by separating their addresses with a comma. -To, CC, and BCC are pop-up menus. They contain all email addresses on your system found by a query for People files. Their "Group" attribute will sort them in corresponding submenus.

    -

    Again, we'll focus on the more interesting features in the menus.

    +

    该窗口和邮件阅读的窗口非常相似。菜单和工具栏项仅有轻微差别,当然,文本框中是收件人的邮箱地址,邮件主题等等。

    +

    抄送 即 Cc,是过时术语 "carbon copy" 的缩写,将会发送您的邮件副本到列表中的联系人。与直接将很多邮箱地址放到 "收件人" 一栏内所不同的是,您没有直接定位副本栏中的联系人,也就是表明您可能不希望得到他们的回复。
    +密送 即 Bcc,意思是 "秘密抄送" 其功能与抄送相一致,但是将会隐藏收件人的地址。

    +

    您可以输入多个收件人地址,地址之间以分号隔开。 +收件人抄送,以及 密送 都是弹出菜单。他们包含了您的系统中所有的邮箱地址,由对 联系人 文件的查找生成。 它们的 "Group" 属性将会将其列在对应的子菜单中。

    +

    接下来,我们将会关注菜单中更加有用的特性。

    index文件

    -

    With Save as draft you can store your work so far and come back to it later. To load it again, choose it from the Open draft submenu that will list the result of a query for all mails with the status "Draft".

    +

    使用 保存为草稿,您可以保存当前内容,并在稍后继续修改。之后,从 打开草稿 子菜单中载入草稿,这一菜单将会列出邮件中状态标记为 "草稿" 的所有邮件。

    index编辑

    -

    Quote and Remove quote or their respective shortcuts ALT / are used to add/remove a level of quoting by adjusting the number of ">" symbols in front of quoted lines. Just select some text in all the lines you want un/quoted and invoke the menu item.

    +

    引用删除引用 或者它们对应的快捷键 ALT / 通过调整引用行之前 ">" 的数量添加/删除一级引用。您只需要选中您希望(解)引用的所有行中的文本,然后点击菜单项即可。

    email-spellcheck.png -

    Check spelling currently only offers corrections of English texts by marking wrong or unknown words red and showing them in italic. -Right-clicking such a word opens a context menu offering suggestions to correct the word or to Add it to the accepted vocabulary.

    -

    Then, there are again the items to open Mail's Preferences... (see below) and a shortcut to managing your Accounts..., which will open the E-mail preference panel.

    +

    拼写检查 目前仅可用于检查英语文本,将错误或者未识别的文本标记为红色,并显示为斜体。 +右键点击标记文本,打开上下文菜单,其中提供了修改错误的建议或者点击 添加 将该字符添加到可接受的词汇表。

    +

    而且,其中也提供了可以打开电子邮件的 首选项... (详情) 和管理您的账户... 的快捷式,它将会打开 电子邮件 的首选项。

    index消息

    -

    With Add signature you can add predefined texts to the end of your mail. From its submenu you can choose a specific or Random one.

    +

    使用 添加署名 ,您可以在您的邮件末尾添加预设的文本。从其子菜单中,你可以选择其中某个或者 随机

    email-signature.png -

    You create new or edit existing signatures with Edit signatures..., which will open a window where you enter the text itself and the title of your new sig. There, in the Signature menu, you find items to Open a specific signature or Save or Delete the currently loaded one, Signatures should be saved in ~/config/settings/Mail/signatures.

    -

    Use Add enclosure... and Remove enclosure to add/remove files as attachments. You can also drag & drop files from a Tracker window. Be careful though to drop those in the header section (To/From/Subject area at the top) or they'll get pasted into the email body if they are text files.

    +

    你可以选中 编辑签名... 以新建签名或者编辑已有签名,它将会打开一个窗口,您可以在其中输入签名内容和新的主题。在 签名 菜单中,您可以看到 打开 签名或者 保存删除 当前签名等菜单项。签名通常保存在 ~/config/settings/Mail/signatures

    +

    使用 添加附件...删除附件 可以添加/删除附带文件。您可以从文件浏览器窗口中拖拽文件进行添加。主意将其拖拽到邮件头所在部分(也就是顶部的收件人/发件人/主题等区域),否则如果是文本文件,它们将会被粘贴到邮件正文部分。

    email-attachments.png @@ -169,8 +170,8 @@ Right-clicking such a word opens a context menu offering suggestions to correct index邮件相关

    - - + - +
    默认账户如果您有多个邮件账户,该选项将会指定新建邮件时所用的默认账户。
    回复账户在回复邮件时,您可以上述弹出菜单中的 使用默认账户,或者使用 邮件指定账户,也就是使用接收该邮件的账户。
    回复序文This is inserted before the quoted text in your reply. You can use various variables from the pop-up menu next to the text field. Example: "Hello %n!\n\nOn %d you wrote:\n" produces this: +
    回复账户在回复邮件时,您可以选择上述弹出菜单中的 使用默认账户,或者使用 邮件指定账户,也就是使用接收该邮件的账户。
    回复序文序文将会插入到回复的引用文本之前。您可以从文本域旁的弹出菜单选择不同的变量。例如:"Hello %n!\n\nOn %d you wrote:\n" 将会产生如下效果:
    Hello Dr. Hawking!
     
     On Mon, 18 Jan 1998 02:55:16 +0800 you wrote:
    diff --git a/docs/userguide/zh_CN/applications/mediaplayer.html b/docs/userguide/zh_CN/applications/mediaplayer.html
    index d893579972..0c05d700de 100644
    --- a/docs/userguide/zh_CN/applications/mediaplayer.html
    +++ b/docs/userguide/zh_CN/applications/mediaplayer.html
    @@ -41,6 +41,8 @@
     
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/midiplayer.html b/docs/userguide/zh_CN/applications/midiplayer.html index d59228b834..837c2c7805 100644 --- a/docs/userguide/zh_CN/applications/midiplayer.html +++ b/docs/userguide/zh_CN/applications/midiplayer.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/packageinstaller.html b/docs/userguide/zh_CN/applications/packageinstaller.html index 3743134ec9..7a7f114179 100644 --- a/docs/userguide/zh_CN/applications/packageinstaller.html +++ b/docs/userguide/zh_CN/applications/packageinstaller.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/pe.html b/docs/userguide/zh_CN/applications/pe.html index 3996f1a5b7..9bc40c5f92 100644 --- a/docs/userguide/zh_CN/applications/pe.html +++ b/docs/userguide/zh_CN/applications/pe.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/people.html b/docs/userguide/zh_CN/applications/people.html index ef31cc8792..71f951e478 100644 --- a/docs/userguide/zh_CN/applications/people.html +++ b/docs/userguide/zh_CN/applications/people.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/poorman.html b/docs/userguide/zh_CN/applications/poorman.html index 315a075c55..2f8d3b9300 100644 --- a/docs/userguide/zh_CN/applications/poorman.html +++ b/docs/userguide/zh_CN/applications/poorman.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/screenshot.html b/docs/userguide/zh_CN/applications/screenshot.html index 0a39453fc2..2856525e4a 100644 --- a/docs/userguide/zh_CN/applications/screenshot.html +++ b/docs/userguide/zh_CN/applications/screenshot.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/showimage.html b/docs/userguide/zh_CN/applications/showimage.html index f78e559f73..e863d1bc2a 100644 --- a/docs/userguide/zh_CN/applications/showimage.html +++ b/docs/userguide/zh_CN/applications/showimage.html @@ -42,6 +42,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/soundrecorder.html b/docs/userguide/zh_CN/applications/soundrecorder.html index 4585a1df64..127040e521 100644 --- a/docs/userguide/zh_CN/applications/soundrecorder.html +++ b/docs/userguide/zh_CN/applications/soundrecorder.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/stylededit.html b/docs/userguide/zh_CN/applications/stylededit.html index 380cfe7009..4baa282d30 100644 --- a/docs/userguide/zh_CN/applications/stylededit.html +++ b/docs/userguide/zh_CN/applications/stylededit.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/terminal.html b/docs/userguide/zh_CN/applications/terminal.html index ccdeaeb7da..49d1743c7f 100644 --- a/docs/userguide/zh_CN/applications/terminal.html +++ b/docs/userguide/zh_CN/applications/terminal.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/textsearch.html b/docs/userguide/zh_CN/applications/textsearch.html index cec8684110..b67e9962ab 100644 --- a/docs/userguide/zh_CN/applications/textsearch.html +++ b/docs/userguide/zh_CN/applications/textsearch.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/tv.html b/docs/userguide/zh_CN/applications/tv.html index 26fababfc8..dc18807a5f 100644 --- a/docs/userguide/zh_CN/applications/tv.html +++ b/docs/userguide/zh_CN/applications/tv.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/vision.html b/docs/userguide/zh_CN/applications/vision.html index dd3250a96b..be013c2325 100644 --- a/docs/userguide/zh_CN/applications/vision.html +++ b/docs/userguide/zh_CN/applications/vision.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/webpositive.html b/docs/userguide/zh_CN/applications/webpositive.html index b27fc8dc09..badda9ad2c 100644 --- a/docs/userguide/zh_CN/applications/webpositive.html +++ b/docs/userguide/zh_CN/applications/webpositive.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/applications/wonderbrush.html b/docs/userguide/zh_CN/applications/wonderbrush.html index a1955887ff..b2a357deae 100644 --- a/docs/userguide/zh_CN/applications/wonderbrush.html +++ b/docs/userguide/zh_CN/applications/wonderbrush.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/attributes.html b/docs/userguide/zh_CN/attributes.html index b58eb5a3ef..ef706dbc11 100644 --- a/docs/userguide/zh_CN/attributes.html +++ b/docs/userguide/zh_CN/attributes.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/bash-scripting.html b/docs/userguide/zh_CN/bash-scripting.html index 03c004003b..5b0c81735e 100644 --- a/docs/userguide/zh_CN/bash-scripting.html +++ b/docs/userguide/zh_CN/bash-scripting.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/bootloader.html b/docs/userguide/zh_CN/bootloader.html index 0b6a5f4552..c0d69d5920 100644 --- a/docs/userguide/zh_CN/bootloader.html +++ b/docs/userguide/zh_CN/bootloader.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/contents.html b/docs/userguide/zh_CN/contents.html index ffca103a9d..0dca5b8a20 100644 --- a/docs/userguide/zh_CN/contents.html +++ b/docs/userguide/zh_CN/contents.html @@ -4,7 +4,7 @@
    Bash和脚本了解系统中使用的一些有趣的脚本以及有关Shell和脚本的网络资源。
    了解系统中所使用的一些有趣脚本以及有关Shell和脚本使用的网络资源。
    diff --git a/docs/userguide/zh_CN/deskbar.html b/docs/userguide/zh_CN/deskbar.html index 93f8cc156a..dae9669198 100644 --- a/docs/userguide/zh_CN/deskbar.html +++ b/docs/userguide/zh_CN/deskbar.html @@ -4,13 +4,14 @@ @@ -40,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -106,17 +109,15 @@
  • 应用程序

    - - - - + + + +
    Sort Running Applications 按字母排序运行中程序的列表。
    Tracker always First 即使按字母排序,Tracker仍总是放置在列表的首部。
    Show Application Expander 提供一个微控件来显示/隐藏桌面栏中程序入口下的所有窗口。
    Expand New Applications 最新启动的程序在桌面栏中程序入口下自动展开其窗口。
    运行程序排序 按字母排序运行中程序的列表。
    首要显示Tracker 即使按字母排序,Tracker 仍总是放置在列表的首部。
    显示应用扩展 提供一个微控件来显示/隐藏桌面栏中程序入口下的所有窗口。
    展开新应用 最新启动的程序在桌面栏中程序入口下自动展开其窗口。
  • 时钟

    - - - - + +
    24 Hour Clock 实现24小时制与12小时制之间的切换。
    Show Seconds 为时钟添加秒的显示。
    European Date 显示欧洲格式的日期:日-月-年 。
    Full Date 显示长版本的日期。此格式只在桌面栏以任务栏的形式放置在屏幕的顶部或者底部边界时才可用。
    秒钟 为时钟添加秒的显示。
    星期 时钟显示日期星期缩写。
  • diff --git a/docs/userguide/zh_CN/desktop-applets.html b/docs/userguide/zh_CN/desktop-applets.html index 4169d7be21..d87cf7d714 100644 --- a/docs/userguide/zh_CN/desktop-applets.html +++ b/docs/userguide/zh_CN/desktop-applets.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/desktop-applets/launchbox.html b/docs/userguide/zh_CN/desktop-applets/launchbox.html index 93b7dd58db..5c27279546 100644 --- a/docs/userguide/zh_CN/desktop-applets/launchbox.html +++ b/docs/userguide/zh_CN/desktop-applets/launchbox.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/desktop-applets/networkstatus.html b/docs/userguide/zh_CN/desktop-applets/networkstatus.html index 0e29da92a2..4f99e066aa 100644 --- a/docs/userguide/zh_CN/desktop-applets/networkstatus.html +++ b/docs/userguide/zh_CN/desktop-applets/networkstatus.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -62,8 +64,8 @@

    网络状态 显示了您的网络连接状态。如果它未运行,启动小程序时,将会询问是否以窗口模式打开,或者停靠在桌面栏托盘。在窗口模式下,您可以通过自定义窗口来设置图标大小,并且可以使用 Replicant 控件将其拖至桌面。
    不管安装在哪儿,它都可以通过右键菜单进行操作。

    NetworkStatus applet
    -第一部分包含了所有网络设备名称和它们的状态。其下是第一个无线适配器找出的无线网络。点击选项将会打开一个窗口,显示它的IP,广播及网关地址。
    -其下是由无线网络适配器搜索到的所有无线网络及其信号强度的列表。
    +第一部分包含了所有网络设备名称和它们的状态。点击选项将会打开一个窗口,显示它的IP,广播及网关地址。
    +其下是由第一个无线网络适配器搜索到的所有无线网络及其信号强度的列表。更多有关网络连接设置,详情参考 操作练习:无线网络
    最后,您可以 打开网络首选项... 来修改您的 网络配置 或者 退出 该程序。

    diff --git a/docs/userguide/zh_CN/desktop-applets/powerstatus.html b/docs/userguide/zh_CN/desktop-applets/powerstatus.html index e46de0dfc4..ef37ed03b7 100644 --- a/docs/userguide/zh_CN/desktop-applets/powerstatus.html +++ b/docs/userguide/zh_CN/desktop-applets/powerstatus.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/desktop-applets/processcontroller.html b/docs/userguide/zh_CN/desktop-applets/processcontroller.html index 150b59c56d..ea19e5fa9d 100644 --- a/docs/userguide/zh_CN/desktop-applets/processcontroller.html +++ b/docs/userguide/zh_CN/desktop-applets/processcontroller.html @@ -41,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/desktop-applets/workspaces.html b/docs/userguide/zh_CN/desktop-applets/workspaces.html index 81828c84fa..1e1d1a5fb6 100644 --- a/docs/userguide/zh_CN/desktop-applets/workspaces.html +++ b/docs/userguide/zh_CN/desktop-applets/workspaces.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/filesystem-layout.html b/docs/userguide/zh_CN/filesystem-layout.html index d4595cb912..9e7367969f 100644 --- a/docs/userguide/zh_CN/filesystem-layout.html +++ b/docs/userguide/zh_CN/filesystem-layout.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -57,7 +59,7 @@

    Haiku的文件系统布局是非常简洁易懂的,尽量使用简单的名字为文件和文件夹命名,让用户不会产生疑问。对于维持系统的正常运行非常重要的文件和文件夹是收到保护的,当它们发生意外的更改时,系统将会弹出以下的警告:

    achtung-user.png  achtung-system.png -

    如果您对重命名或者删除了系统层次上的一些东西,那么系统将会弹出第二个警告。在这里,“Do it” 按钮只有在您按下 SHIFT 键时才能够点击。

    +

    如果您对重命名或者删除了系统层次上的一些东西,那么系统将会弹出第二个警告。在这里,“Rename” 按钮只有在您按下 SHIFT 键时才能够点击。

    通常,在根目录下的启动卷中有三个独立的分支文件夹:

    diff --git a/docs/userguide/zh_CN/filetypes.html b/docs/userguide/zh_CN/filetypes.html index a22a11aa85..2b7d1a8ce7 100644 --- a/docs/userguide/zh_CN/filetypes.html +++ b/docs/userguide/zh_CN/filetypes.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/gui.html b/docs/userguide/zh_CN/gui.html index 2aa234969e..e0339ab0cf 100644 --- a/docs/userguide/zh_CN/gui.html +++ b/docs/userguide/zh_CN/gui.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -54,18 +56,18 @@
    本节的翻译还未完成。在未完成之前,所有的未完成部分都将使用英语原文。
    /boot/system/ 该文件夹属于操作系统,最好不要改动。
    - +
    Index
    索引
    - Easy moving and resizing
    - Stack & Tile
    - Open and save panels
    + 移动和自定义大小
    + 重叠和拼贴
    + 打开和保存面板
    Replicants

    Haiku的图形用户界面

    -

    Haiku的图形用户界面是系统的组成部分。与基于Unix的操作系统不同的是,Haiku没有独立的窗口管理器,而且在启动时不能够进入命令行界面。Haiku所面向的人群是桌面用户,所以命令行界面不是非常必要。

    -

    鉴于您已经有过使用其他图形环境的经历,那么我们就跳过这些标准,例如,菜单,右键菜单,拖拽操作等; 直接开始了解Haiku图形用户界面与其他系统不同的地方。

    +

    Haiku 的图形用户界面是系统的组成部分。与基于 Unix 的操作系统不同的是,Haiku 没有独立的窗口管理器,而且在启动时不能够进入命令行界面。Haiku 所面向的人群是桌面用户,因此命令行界面并不非常必要。

    +

    鉴于您已经有过使用其他图形环境的经历,那么我们就跳过这些标准,例如,菜单,右键菜单,拖拽操作等; 直接开始了解 Haiku 图形用户界面与其他系统不同的地方。

    gui.png

    Haiku的图形界面只有很少一部分不是很常见,可能需要进行解释。

      @@ -76,13 +78,14 @@
    1. 您可以通过右键点击标签(或者窗口边界)来置后窗口。
    2. 关闭按钮

    3. “缩放”按钮(也可以通过CTRL ALT Z 组合键进行缩放)。对于大多数的程序,该按钮将会把窗口最大化。但并不是都如此,例如Tracker窗口,该按钮将会依据其内容将窗口放大至合适大小。

    4. -
    5. 可调整的窗口边角。在窗口的边缘拖拽将会移动整个窗口。

    6. +
    7. 窗口边界。左键拖拽移动窗口,右键拖拽改变大小。

    8. +
    9. 可调整的窗口边角。

    index 快速移动或调整窗口

    -

    移动和调整窗口时和多个并发运行程序交互的重要部分。除了通过微小的黄色标签和更窄的窗口边框,还有更为方便的方法可供使用。而且,该边角不仅很小,而且还有另外限制:它仅允许在右下角,并且沿右下角方向使用。

    +

    移动和调整窗口时和多个并发运行程序交互的重要部分。除了通过微小的黄色标签和更窄的窗口边框,还有更为方便的方法可供使用。而且,该边角不仅很小,而且还有另外限制:它仅允许在右下角,并且沿右下角方向使用。
    右键拖动边角将会改变其大小,但是您必须仔细进行操作。

    为了定位这些问题,Haiku 提供了使用组合键 CTRL ALT 和鼠标的灵活方法。更多窗口管理快捷键的信息,请查阅 快捷键和组合键

    resizing.png

    按下 CTRL ALT 将会高亮显示最接近鼠标的窗口边界。向另一个边界方向移动将会激活该目标。点击并使用 鼠标右键 拖动将会重定义高亮边界的窗口。

    @@ -90,22 +93,22 @@

    index -Stack & Tile

    -

    Haiku's user interface provides a unique feature that puts the fact that windows have a yellow tab instead of a full-width title bar to perfect use. It's called "Stack & Tile".
    -In the example below, a Tracker window with bookmarks is tiled to the left of a WebPositive window, which itself is stacked with another Tracker window showing the source folder haiku. In this animation, the user clicks on the tabs of the stacked windows to alternately bring one or the other to the front.

    +重叠与拼贴 +

    Haiku 的用户界面提供了一个特别的功能,根据其窗口仅拥有的一个黄色标签而非全部安度标题栏的实际情况,提供了非常精巧的功能。它称之为“重叠与拼贴”。
    +在下述图示中,一个具有书签的 Tracker 窗口拼贴到了其左边的 WebPositive 窗口,而其本身则与另一个显示源目录 haiku 的窗口相重叠。在这个动画中,用户点击重叠窗口的标签以便将它们交替置顶。

    gui-s+t.gif -

    Connected like this, the group of windows can be moved and resized together - a nice arrangement to work in a more project centric environment. Instead of looking for the right browser window with documentation, editor and Tracker windows and maybe a related email concerning one project you are currently working on, just stack&tile them together.

    -

    Doing the actual arranging of windows is easy: Hold down OPT while dragging a window by its tab close to another window's tab or border until it's highlighted and release the mouse button.

    -

    Stack & Tile consists of two related parts.

    +

    与此相关联,一组窗口可以移动并放置到一起,- 这样可以方便的在一个以项目为中心的环境中进行管理工作。不仅可以在文档窗口中进行便利的查找,甚至是与当前项目有关的编辑器,文件浏览器,以及电子邮件,你也可以将它们重叠拼贴起来。

    +

    窗口的排布也非常简单:按下 OPT 键,通过标签拖动窗口到另一个窗口的标签或边界,直到其显示为高亮后,然后再释放鼠标按键。

    +

    重叠和拼贴由两个相关部分组成。

    -
    gui-stacking.png

    "Stacking" is putting windows on top of each other, automatically moving the yellow tabs into position.
    -While holding OPT, tabs change color when they overlap; drop the window to establish the stacking.

    +

    "重叠" 用于将窗口依次叠放起来,自动将黄色标签移动到指定位置。
    +在按下 OPT 键,当标签重叠时,标签颜色发生变化,然后放下窗口以实现重叠。

    gui-tilinging.png

    "Tiling" means gluing windows horizontally or vertically together.
    Again, while holding OPT, the borders that'll fuse together when you drop the window change color when brought near each other.

    -

    Separation is done in the same way, by holding OPT while dragging a window by its tab out of the group.

    +

    分离也是同样的方式,通过标签拖动窗口时,按下 OPT 键,将会使其从窗口组中分离。

    index diff --git a/docs/userguide/zh_CN/images/apps-images/deskcalc.png b/docs/userguide/zh_CN/images/apps-images/deskcalc.png new file mode 100644 index 0000000000..b4b14b991d Binary files /dev/null and b/docs/userguide/zh_CN/images/apps-images/deskcalc.png differ diff --git a/docs/userguide/zh_CN/images/deskbar-images/configure.png b/docs/userguide/zh_CN/images/deskbar-images/configure.png index 228d1f1175..3f53b2280d 100644 Binary files a/docs/userguide/zh_CN/images/deskbar-images/configure.png and b/docs/userguide/zh_CN/images/deskbar-images/configure.png differ diff --git a/docs/userguide/zh_CN/images/filesystem-layout-images/achtung-system.png b/docs/userguide/zh_CN/images/filesystem-layout-images/achtung-system.png index f24c253bc8..fbcebee00c 100644 Binary files a/docs/userguide/zh_CN/images/filesystem-layout-images/achtung-system.png and b/docs/userguide/zh_CN/images/filesystem-layout-images/achtung-system.png differ diff --git a/docs/userguide/zh_CN/images/filesystem-layout-images/achtung-user.png b/docs/userguide/zh_CN/images/filesystem-layout-images/achtung-user.png index 9a77cfbb9d..fa6d1cfa24 100644 Binary files a/docs/userguide/zh_CN/images/filesystem-layout-images/achtung-user.png and b/docs/userguide/zh_CN/images/filesystem-layout-images/achtung-user.png differ diff --git a/docs/userguide/zh_CN/images/prefs-images/appearance-antialiasing.png b/docs/userguide/zh_CN/images/prefs-images/appearance-antialiasing.png index b57d708a5a..cbb49dc808 100644 Binary files a/docs/userguide/zh_CN/images/prefs-images/appearance-antialiasing.png and b/docs/userguide/zh_CN/images/prefs-images/appearance-antialiasing.png differ diff --git a/docs/userguide/zh_CN/images/prefs-images/appearance-colors.png b/docs/userguide/zh_CN/images/prefs-images/appearance-colors.png index a3e2391c2c..baf96016ad 100644 Binary files a/docs/userguide/zh_CN/images/prefs-images/appearance-colors.png and b/docs/userguide/zh_CN/images/prefs-images/appearance-colors.png differ diff --git a/docs/userguide/zh_CN/images/prefs-images/appearance-decorators.png b/docs/userguide/zh_CN/images/prefs-images/appearance-decorators.png new file mode 100644 index 0000000000..99d9ade42b Binary files /dev/null and b/docs/userguide/zh_CN/images/prefs-images/appearance-decorators.png differ diff --git a/docs/userguide/zh_CN/images/prefs-images/appearance-fonts.png b/docs/userguide/zh_CN/images/prefs-images/appearance-fonts.png new file mode 100644 index 0000000000..c962c53232 Binary files /dev/null and b/docs/userguide/zh_CN/images/prefs-images/appearance-fonts.png differ diff --git a/docs/userguide/zh_CN/images/prefs-images/e-mail-accounts.png b/docs/userguide/zh_CN/images/prefs-images/e-mail-accounts.png new file mode 100644 index 0000000000..17694e831e Binary files /dev/null and b/docs/userguide/zh_CN/images/prefs-images/e-mail-accounts.png differ diff --git a/docs/userguide/zh_CN/images/workshop-wlan-images/join-network.png b/docs/userguide/zh_CN/images/workshop-wlan-images/join-network.png new file mode 100644 index 0000000000..2fedecda91 Binary files /dev/null and b/docs/userguide/zh_CN/images/workshop-wlan-images/join-network.png differ diff --git a/docs/userguide/zh_CN/images/workshop-wlan-images/join-status.gif b/docs/userguide/zh_CN/images/workshop-wlan-images/join-status.gif new file mode 100644 index 0000000000..dea116d418 Binary files /dev/null and b/docs/userguide/zh_CN/images/workshop-wlan-images/join-status.gif differ diff --git a/docs/userguide/zh_CN/index.html b/docs/userguide/zh_CN/index.html index 82b863c89b..d50ebd84ce 100644 --- a/docs/userguide/zh_CN/index.html +++ b/docs/userguide/zh_CN/index.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/keyboard-shortcuts.html b/docs/userguide/zh_CN/keyboard-shortcuts.html index 7eff52e93e..b7fc027cc9 100644 --- a/docs/userguide/zh_CN/keyboard-shortcuts.html +++ b/docs/userguide/zh_CN/keyboard-shortcuts.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -51,7 +53,6 @@
    -
    本节的翻译还未完成。在未完成之前,所有的未完成部分都将使用英语原文。

    快捷键和组合键

    @@ -66,13 +67,13 @@ - + - + diff --git a/docs/userguide/zh_CN/preferences.html b/docs/userguide/zh_CN/preferences.html index 459eeb4c70..a1315b4b5d 100644 --- a/docs/userguide/zh_CN/preferences.html +++ b/docs/userguide/zh_CN/preferences.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -68,8 +70,6 @@ - - diff --git a/docs/userguide/zh_CN/preferences/appearance.html b/docs/userguide/zh_CN/preferences/appearance.html index db74dd4ccd..8cbb6d06a4 100644 --- a/docs/userguide/zh_CN/preferences/appearance.html +++ b/docs/userguide/zh_CN/preferences/appearance.html @@ -4,7 +4,7 @@ diff --git a/docs/userguide/zh_CN/preferences/fonts.html b/docs/userguide/zh_CN/preferences/fonts.html index 2f60236878..db06fd6803 100644 --- a/docs/userguide/zh_CN/preferences/fonts.html +++ b/docs/userguide/zh_CN/preferences/fonts.html @@ -40,18 +40,22 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  文件类型  -::  首选项  -::  键盘  » + « 文件类型 +:: 首选项 +:: 键盘 »
    +

    “字体”已经移动到外观配置面板,该页面已过时,请勿翻译。

    +

    fonts-icon_64.png字体

    ALT Fx切换到 工作区 X(Fx是关联到该工作区的功能键)。如果同时按下了 SHIFT 键,将会和当前工作窗口一起进行切换。
    CTRL ALT / / / 导航至相应的可用工作区。同时按下 SHIFT 将会连同活动窗口一起进行切换。
    OPTHolding OPT while dragging a window near another window's tab or border will stack or tile them (see chapter GUI).
    OPT时按下 OPT 拖动窗口到其他窗口的标签或者边界附近时,它们将会被重叠或者拼贴起来(详情查看 图形用户界面)。
    CTRL ALT + 左键点击并使用左键拖动窗口(查阅章节 GUI)。
    CTRL ALT + 右键点击并使用右键拖动窗口(查阅章节 GUI)。
    CTRL ALT Z还原窗口大小(对于多数程序,将最大化窗口)。
    CTRL ALT M最小化当前活动窗口。
    CTRL ALT H隐藏(最小化)当前活动程序的所有窗口。
    CTRL ALT F置前活动窗口(仅适用于 Focus Follows Mouse 鼠标设置)。
    CTRL ALT F置前活动窗口(仅适用于 鼠标跟随聚焦 设置)。
    CTRL ALT B置后当前活动窗口。
    CTRL TAB保持按下将会弹出任务切换器
    CTRL ALT DEL打开程序监视器
    对您的邮箱账户进行配置。
    icon文件类型 添加,删除或者配置文件类型。
    icon字体 对你的系统中的字体进行设置。
    icon键盘 对键盘的重复延迟和重复率进行配置。
    icon键盘映射
    @@ -61,25 +65,25 @@
    桌面栏:首选项


    fonts.png -

    Haiku 定义了三种标准字体用于不同的目的。您可以设置简单,粗体,和等宽字体和字体大小以用于整个系统。除此之外,还有对于菜单中字体的单独设置。

    +

    Haiku定义了三种标准字体用于不同的目的。您可以设置系统中使用的普通,粗体和等宽字体类型。除此之外,还有用于菜单字体的独立设置。

    - - + +
    默认 设置所有内容为默认值。
    取消 恢复设置到程序启动时的状态。
    默认 设置所有内容为默认值。
    取消 恢复设置到程序启动时的状态。

    index 安装新字体

    -

    安装字体时,只要把字体复制到它们的用户文件夹下即可,也就是, /boot/common/data/fonts/ 或者 /boot/home/config/data/fonts/ (可以参阅文件系统布局主题)。

    +

    您可以通过将字体复制到如下用于目录,例如 /boot/common/data/fonts/ 或者 /boot/home/config/data/fonts/ 以实现安装(详情查看 文件系统布局)。

    diff --git a/docs/userguide/zh_CN/preferences/keyboard.html b/docs/userguide/zh_CN/preferences/keyboard.html index bc2f699527..2d7df60374 100644 --- a/docs/userguide/zh_CN/preferences/keyboard.html +++ b/docs/userguide/zh_CN/preferences/keyboard.html @@ -40,10 +40,12 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • - «  字体  + «  文件类型  ::  首选项  ::  键盘映射  » @@ -72,7 +74,7 @@ @@ -40,6 +41,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • @@ -52,7 +55,6 @@
    -
    本节的翻译还未完成。在未完成之前,所有的未完成部分都将使用英语原文。
    @@ -72,23 +74,23 @@

    index Haiku 邮件系统

    -

    如果您在使用 Haiku 之前有过其他系统的经验,您可能会习惯于 MS Outlook 或者 Mozilla 的雷鸟等大型邮件程序。您必须输入所有有关邮件服务器地址等的信息进行配置,并且它们使用各自的联系人数据库。它们负责发送和获取邮件,并将邮件存入一些大的特殊文件。
    -更换邮件客户端会非常的麻烦,您必须进行导入/导出等操作,还要进行系列的转换。同时使用多个邮件客户端检查邮件也是不可行的,可能会带来不必要的混乱。

    +

    如果您在使用 Haiku 之前有过其他系统的经验,您可能会习惯于 MS Outlook 或者 Mozilla 的 Thunderbird 等大型邮件程序。您必须输入所有有关邮件服务器地址的信息进行配置,并且它们使用各自的联系人数据库。它们负责发送和获取邮件,并将邮件存入一些大的特殊文件。
    +邮件客户端的更换会非常的麻烦,您必须进行导入/导出等操作,还要进行系列的转换。同时使用多个邮件客户端检查邮件也是不可行的,可能会带来不必要的混乱。

    Haiku 邮件系统稍有不同。它由一些较小的独立模块构成。

    mail_daemon 负责与您的邮件服务器进行通信。电子邮件 首选项集中管理邮件账户的配置,例如邮件检查时间。

    每个收到/发送的消息都将保存为单个的邮件文件,它们的邮件头信息(如发送者,主题,日期)和状态(如新邮件,已回复,已发送)保存为 BFS 属性。这样能够方便使用 Haiku 的快速查询进行搜索和过滤。

    browsing.png -

    With every email being in a separate file, viewing them becomes just as easy as browsing through a folder (or query result) of images with ShowImage. Leaving the Tracker window open, you'll see the moving selection of the currently viewed file while you use the previous/next button to move through them.
    -As they are independent files, using a viewer other than Haiku's Mail causes no problems whatsoever.

    -

    Similarly, creating a new message results in just another file that is handed to the mail_daemon that takes care of sending it off. Contact management is deferred to the People application.

    -

    In a nutshell, where other mail clients do everything, from communicating with the mail servers to providing a view with all your mails and tools to search and filter them, Haiku uses a chain of smaller tools and general file management:

    +

    由于每个邮件都是独立的文件,进行查阅就非常简单,就像是在使用 图片查看器 浏览图像目录(或者查询结果)。在您使用上一个/下一个按钮浏览邮件时,在打开的文件浏览器窗口中,您可以看到当前浏览文件的切换选中。
    +因为他们都是独立的文件,无论是使用查看器还是 Haiku 的 电子邮箱 程序都没有任何差别。

    +

    与此相似,创建新邮件也就是相当于去创建一个由 mail_daemon 管理并负责发送的新文件。联系方式则由 联系人 应用进行管理。

    +

    总而言之,其他的邮件客户端会负责所有的事情;然而对于 Haiku ,从与邮件服务器交互,到查看您的所有邮件,以致于邮件搜索和过滤的工具,它则通过很多小工具和常用文件管理来完成:

      -
    • The mail_daemon to fetch/send mail and save them as normal files.

    • -
    • Tracker windows and queries to find and show email files.

    • -
    • The Mail application to view email files and create new messages relying on system-wide contact management by the People app.

    • +
    • mail_daemon 用于获取、发送邮件,并将其保存为常规文件。

    • +
    • 文件浏览器窗口和查询用于查找和显示电子邮件文件。

    • +
    • 电子邮箱 程序依赖于联系人 程序提供的系统内联系人管理功能,用于查看邮件文件和新建邮件。

    -

    Especially using Tracker and queries to manage emails is a powerful idea. The experience you gain can be transferred to any other problem that is dealing with files. Be it images, music, video, contacts or any other documents, using Tracker is at the core of all file managing.
    -Also, improvements in any of these system areas benefit not just emailing, but all applications that make use of them.

    +

    使用 文件浏览器 和查询功能进行邮件管理确实很不错。您于此获得的经验可用于任何和文件处理有关的问题。例如图像,音乐,视频,联系人以及其他任何文档,都可以使用文件浏览器,因为它是所有文件管理的核心。
    +同时,在这些系统领域的提供不仅仅能够惠及电子邮件处理,还会有助于所有使用这些功能的应用程序。

    index @@ -96,25 +98,27 @@ Also, improvements in any of these system areas benefit not just emailing, but a

    在您检查自己的新邮件时,您可能希望之后在仔细的进行阅读。您可以使用电子邮件菜单的关闭且保留为新邮件 ,让它们仍然保留在您的 “新邮件” 查询中,以这种方式让任务保留起来。

    当然另一种方式是撰写回复并保存为草稿。但是如果您不希望编写回复,而只是留待以后再次阅读,这样就不大方便。

    status.png -

    Better use Close and | Set to... to create a new status and use that to categorize your mail. For example, you could call the status "Later", and then query for that when you find more time.
    -Or you use different statuses for specific projects. For example, I created a status "HUG" (for "Haiku user guide") under which I collect every mail that may influence the contents of the user guide, like commit messages about code changes that alter or introduce some feature or anything else I feel could improve the user guide.
    -In any case, try to keep the status name short. That way it always fits in a normally wide "Status" column in Tracker.

    -

    You don't have to open an email with the Mail application to set its status. With the Tracker add-ons Mark as Read and Mark as... you can select some email files and set their status in one go.

    +

    您最好使用 关闭 | 标记为... 来创建一个新状态,为您的邮件分类。比如,您可以为其命名为"待阅",在您空闲的时候再查询该状态的邮件,阅读即可。
    + +或者,你可以为指定项目使用不同状态。例如,我创建了 "HUG"(表示 "Haiku user guide",即 Haiku 用户指南)状态,然后在其下放置所有可能会影响用户指南内容的邮件,如有关代码更改提醒,新功能引入,或者任何我觉得能够增强用户指南的提交邮件。
    +但是,请务必保证状态名称的简洁。最好能够完整显示在文件浏览器的 “状态” 栏宽度内。

    +

    您不一定要使用 电子邮箱 程序打开邮件进行状态设置。您也可以选中某些邮件文件,然后使用文件浏览器的 标记为已读 标记为... 附加组件来一次性设置它们的状态。

    index 使用查询

    -

    Sure, you specify a folder to store all your email, you can open it et voilà, there's all you mail. But over time the folder becomes crowded and showing all will take longer and longer as thousands of files and their attributes have to be parsed and sorted. Also, most of the time you don't really care about two year old emails of Nigerian princes and their inheritory trouble ...

    -
    A lot of time when populating a folder is spent on putting files read from disk into the correct sorting order and displaying that in the window. If you do have to open a folder with a huge number of files, you can shorten the wait by making the Tracker window "invisible", i.e. either minimize it or change to another workspace. Watch ProcessController to see how it affects CPU usage.
    -

    Queries, to the rescue!

    -

    By using queries, you can narrow down the view of your mails. Actually, the mailbox icon in the Deskbar uses queries.

    +

    当然,您指定目录储存邮件,您打开这个目录,里面就是您所有的邮件。时间久了,这个目录难免会变得拥挤不堪,由于有上千个文件,并且它们属性需要解析和分类,其中全部内容的显示需要很长的时间。并且,通常您并不关心两年前有关尼日利亚和它们遗留问题的古老邮件...

    +
    在获取目录时,大部分时间都花费在从磁盘读入文件,正确排序之后显示在窗口。如果您确实需要打开具有大量文件的目录,您可以将文件浏览器窗口隐藏来缩短等待时间,例如,将其最小化,或者切换到其他工作空间。您可以查看 进程管理器 获取其对处理器的占用情况。
    +

    查询,大救星!

    +

    使用查询,您可以浏览查看邮件。实际上,桌面栏上的电子邮箱图标就是用了查询。

    daemon-in-deskbar.png -

    The Open Draft submenu does a query for the status "Draft", which is set by Mail when you save a message.

    -

    Open Inbox Folder and Open Mail Folder are just links to regular folders (and not very useful in my opinion).

    -

    The # new messages submenu is populated by a query for email with the status "New" (that same query is used to change the mailbox icon to show some letters in it, by the way).

    +

    打开草稿 就是对 “草稿” 状态的查询,也就是您在使用 电子邮箱 保存邮件时所设置的状态。

    +

    打开收件箱打开邮件目录 都是常规目录的链接(在我看来,并没有很大用处)。

    +

    # 新消息 子菜单由对状态为 "新邮件" 的邮件的一次查询实现。(当然,也使用了同样的查询来修改邮箱图标上的邮件数量)。

    -

    You can add your own queries (or folders, applications, scripts etc.) to that context menu too, by putting them or links to them into ~/config/settings/Mail/Menu Links.

    -
    The query ~/config/settings/Mail/mailbox is a special case: It is executed when left-clicking the mailbox icon in the Deskbar. If you want to change that behavior, you can replace it with any other file (or link to a file), just name it "mailbox". It doesn't have to be a query, a link to a folder of queries or a script or application works just as well.
    +

    您可以在上述菜单中加入自己的查询(如目录、程序和脚本等)中,也就是把它们或者它们的链接放入目录 ~/config/settings/Mail/Menu Links

    +
    ~/config/settings/Mail/mailbox 查询比较特殊:左键单击桌面栏中邮箱图标时,它将被执行。如果您想修改它的行为,您可以将其替换为其他文件(或者文件链接),并命名为 “mailbox ”。它并不一定要是一个查询,比如查询目录的链接,脚本或者其他程序都能够胜任。 +

    index @@ -136,9 +140,10 @@ In any case, try to keep the status name short. That way it always fits in a nor index 更多帮助

      -
    • If you don't save a query as "Query" but as "Query template", invoking it won't show the result window, but the Find... window instead. That way you can easily exchange the search string for the subject or sender, for example, or change a "2 days" time limit to "3 days".

    • -
    • Activating "type-ahead filtering" in Tracker's preferences allows you to very quickly filter a query result even further. Often it's enough to query for all mails of the last 3 days and go with type-ahead filtering from there. The big advantage is, that you don't have to exactly specify which attribute to search for, as all displayed are considered when filtering.

    • -
    • RelatedMail is a nifty little application that will query for all mails with the same subject/sender/time-frame etc. of a dropped email. Kind of what the Queries menu in the Mail app is supposed to do.

    • +
    • 如果您没有将查询保存为 "Query" 而是 "Query template",那么使用它并不会显示结果窗口,而是 查询... 窗口。 通过这种方式,你可以轻松地修改搜索邮件的主题和发送者的字符。比如将时间 "2 天" 限制在 "3 天"。

    • +
    • 文件浏览器首选项 中激活 “实时过滤” 将允许您进一步的筛选查询结果。通常情况下,在使用实施过滤的情况下查询最近三天的邮件就已经足够了。 +这种方式最大的优点在于,您不需要准确的指定所要搜索的属性,因为在过滤时已经将所有显示属性包括在内。

    • +
    • RelatedMail 是一个非常精巧的程序,可以用来查询与目标邮件具有相同主题/发送者/时间等的邮件。其与 电子邮箱 程序中 查询 菜单所提供的功能相类似。

    diff --git a/docs/userguide/zh_CN/workshop-filetypes+attributes.html b/docs/userguide/zh_CN/workshop-filetypes+attributes.html index 34bbb2762c..c8369b9bf0 100644 --- a/docs/userguide/zh_CN/workshop-filetypes+attributes.html +++ b/docs/userguide/zh_CN/workshop-filetypes+attributes.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/userguide/zh_CN/workshop-wlan.html b/docs/userguide/zh_CN/workshop-wlan.html new file mode 100644 index 0000000000..25b157631a --- /dev/null +++ b/docs/userguide/zh_CN/workshop-wlan.html @@ -0,0 +1,148 @@ + + + + + + + + + 操作练习:无线网络 + + + + + + + + +
    +
    + + +
    + + +
    索引
    + 添加支持硬件
    + 无线网络连接
    + 命令行连接
    + 建议 +
    + +

    操作练习:无线网络

    + +

    在目前永久网络连接条件下,网络的运行就显得尤为必要。对于小的项目来说,对日新月异的硬件提供驱动支持基本上是不可能的,Haiku 目前基于 FreeBSD 兼容层提供网络驱动的支持。
    +尽管并没有提供 100% 硬件的支持,但是保证了对大量硬件的支持。更多硬件支持信息请查阅 在线列表 或者 FreeBSD 9 硬件发布声明

    +
    目前只有 PCI, PCI-X, PCI-Express, Mini PCI, and Mini PCI-Express 设备能够很好运行。
    +PCMCIA, CardBus, ExpressCard, USB and ISA 设备仍需要一些功能完善。
    + +

    +index +添加支持硬件

    +

    虽然我们已经越过了首个障碍,提供了常用的硬件支持,但是一些无线网卡可能需要一些二进制固件模块。由于授权问题,Haiku无法包含这些私有固件文件。Haiku 包含了一个简单的脚本,它可用于为你检索和安装所有这些需要的私有位。一般情况下,如果您计划使用无线网络,您最好执行该脚本以确保您的系统包含所有这些需要的固件文件。

    +

    打开终端,输入:

    +
    install-wifi-firmwares.sh
    +

    接下来查看授权协议,然后接受协议并安装所有可用的固件文件。

    + +

    如果您在Haiku下无法访问网络,不能够下载缺失的固件,我们还提供了离线的方式,详情参考如下 建议

    + +

    +index +无线网络连接

    +

    默认情况下,在启动之后,Haiku将会连接到其发现的首个未加密的无线网络。如果需要连接到指定网络,您需要使用桌面小工具 网络状态

    +

    右键点击桌面栏图标,然后从菜单中选择网络公开名称(也就是其广播的“SSID”)。

    +join-network.png +

    之后将会打开一个窗口,您可以输入加密类型(如 WPA/WPA2,WEP不再是一个安全的加密方式!) 和无线网络密码。点击 确定 启动登录进程。
    根据硬件和网络配置的不同,需要等待的时间也会有所差异。然后您会看到如下通知:

    +join-network.gif +

    当其状态显示为 "Ready" 时,桌面栏中的网络状态显示为圆浅绿色,网络连接也已建立。。如果通知显示为 "No link" ,网络状态图标将会显示为三角黄色,这也就意味着网络连接出现错误,有可能是密码错误。

    + +

    +index +命令行连接

    +

    如果您对命令行情有独钟,或者喜欢使用脚本,或者使用 ~/config/boot/UserBootscript 在系统启动时自动连接指定网络,您可以使用命令 ifconfig

    +

    启动终端,然后输入命令扫描可用无线网络:

    +
    ifconfig /dev/net/iprowifi3945/0 scan
    +name                             address              signal  auth
    +haiku-top                        01:d0:19:a6:88:42        30  WPA
    +ArcorInternet123                 00:20:12:a4:29:e1        15  WPA
    +

    当然,您需要确定无线网络适配器的路径。
    +该命令的输出结果将会显示所有发现网络的公开名称(SSID),MAC 地址,信号强度以及加密方法。

    +

    为了连接网络,请使用下面的命令,在其中使用相应的公开名称(SSID)和密码:

    +
    ifconfig /dev/net/iprowifi3945/0 join {SSID} {password}
    +

    在输入 ifconfig 命令之前,请确保启动后无线网络适配器的初始化配置,否则命令将会被忽略。根据硬件和网络配置的不同,可能需要等待一段时间,请查看如下通知...

    + +

    +index +建议

    + + +
    +
    + + + + + diff --git a/docs/userguide/zh_CN/workspaces.html b/docs/userguide/zh_CN/workspaces.html index fa7b17c974..724e61ede2 100644 --- a/docs/userguide/zh_CN/workspaces.html +++ b/docs/userguide/zh_CN/workspaces.html @@ -40,6 +40,8 @@
  • Português
  • Suomi
  • Slovenčina
  • +
  • Magyar
  • +
  • Português (Brazil)
  • English
  • diff --git a/docs/welcome/de/bugreports.html b/docs/welcome/de/bugreports.html index 6f096366ec..8ec3764bb4 100644 --- a/docs/welcome/de/bugreports.html +++ b/docs/welcome/de/bugreports.html @@ -4,7 +4,7 @@ - Reporting bugs + Vikojen ilmoittaminen

    +

    Jos luot vikalipun, sinulla on oltava tili Haikun vikajäljittäjässä.
    +Luotaessa uutta tiliä muista tarjota sähköpostiosoitteesi, koska se on välttämätön lipun muokkausoikeusien saamiseksi. Tarkista varmuuden vuoksi roskapostikansiosi pian jälkeenpäin, koska kaikki tärkeät vahvistussähköpostiviestit usein päättyvät sinne.

    index -Creating a bug report

    -

    Before reporting a bug, please make sure that it does not yet exist. You can also use the search function for this.
    -After you have established that it's a unique bug, make your information as accurate as possible:

    +Vikailmoituksen luominen +

    Varmista ennen vian ilmoittamista, että vastaavaa vikailmoitusta ei ole jo olemassa. Voit käyttää myös etsi-toimintoa tähän.
    +Varmista sen jälkeen kun olet esitellyt ainutlaatuisen vian, että tietosi ovat niin tarkkoja kuin mahdollista:

      -
    • Attempt to reproduce your issue on the current revision of Haiku. Pre-built images for testing purposes are  available.

    • -
    • Include basic information such as how you are testing Haiku (on real hardware, on VMWare, on QEMU, etc.).

    • -
    • Mention which revision from SVN you are running. You can find this information in About Haiku... from the Deskbar menu. Also mention what kind of Haiku build you are testing (gcc2, gcc4, gcc2hybrid, gcc4hybrid). The downloadable images are named accordingly, for a self-built image you should know how you built it.

    • -
    • Describe the problem you are experiencing. Try to be as accurate as you can: describe the actual behavior, and the behavior you expected.

    • -
    • Describe what steps you need to perform in order to expose the bug. This will help developers reproduce the bug.

    • -
    • Attach as much information as you have. If it is a GUI bug, or a bug in one of the applications, try to take a screenshot by pressing the PRINT key.

    • +
    • Yritä toistaa havaitsemasi vika nykyisessä Haikun korjausversiossa. Esirakennetut tiedostovedokset testaustarkoituksiin löytyvät täältä.

    • +
    • Sisällytä mukaan perustietoa siitä, kuinka testaat Haikua (todellisessa tietokoneessa, VMWare-ympäristössä, QEMU-emulaattorissa, jne.).

    • +
    • Mainitse, mitä SVN-korjausversiota käytät. Löydät tämän tiedon Työpöytäpalkin valikosta Haikusta.... Mainitse myös, että minkälaisella rakennusjärjestelmällä (gcc2, gcc4, gcc2hybrid, gcc4hybrid) testaamasi järjestelmä on rakennettu. Ladattavat tiedostovedokset on nimetty niiden mukaan. Itse rakennetuissa tiedostovedoksissa tiedät itse, kuinka se on rakennettu.

    • +
    • Kuvaile kokemasi pulma. Yritä olla niin tarkka kuin voit: kuvaile todellinen käyttäytyminen, ja se käyttäytyminen, jota odotit.

    • +
    • Kuvaile, mitä vaiheita pitää suorittaa vian paljastumiseksi. Tämä auttaa kehittäjiä toistamaan vian.

    • +
    • Liitä mukaan niin paljon tietoja, kuin sinulla on. Jos kyseessä on graafisen käyttöliittymän vika, tai vika yhdessä sovelluksessa, yritä tehdä näytönkaappaus painamalla PRINT SCREEN-näppäintä.

    index -Application bugs

    -

    When an application crashed, you should invoke the debugger from the alert that pops up. This will open a Terminal window with gdb (the GNU debugger) running in it. Entering bt, you create a "backtrace" that you should copy in its entirety (including the part before you entered the bt command) and attach it to the ticket.

    +Sovellusviat +

    Kun sovellus kaatuu, sinun pitäisi kutsua vikajäljitintä hälytysikkunasta, joka ponnahtaa näkyviin. Tämä avaa Pääteikkunan gdb-ohjelmalla (GNU-vikajäljitin), joka käynnistyy. Kirjoittamalla bt, luot "paluujäljen". jonka sinun pitäisi kopioida kokonaisuudessaan (mukaan lukien se osa, joka tuli näkyviin, ennen kuin kirjoitit bt-komennon) ja liittää se vikalippuun.

    index -Server bugs

    -

    When vital servers like the app server, the registrar or the input server crash, you won't see the usual crash alert. Instead the whole screen will be cleared white and a gdb session will be started, its output appearing directly on screen. Likely you will still be able to move the mouse, which will overwrite the white and gdb output on screen. Applications still running (like ProcessController or the clock in the Deskbar) might also draw over the debugger output on screen.
    -Besides everything being more ugly and inconvenient, basically the same applies as for application bugs. Most importantly procure a back trace (bt command). You may need to take a picture of the screen with a digital camera, since you won't be able to copy the text anywhere.

    +Palvelinviat +

    Kun elintärkeät palvelimet, kuten app-, registrar- tai input-palvelin kaatuvat, et näe tavallista kaatumishälytystä. Sen sijaan koko näyttö muuttuu valkoiseksi tja gdb-istunto käynnistyy ja sen tuloste ilmaantuu näytölle. Todennäköisesti pystyt yhä liikuttamaan hiiren kohdistinta, mikä ylikirjoittaa valkoisen ja gdb-tulosteen näytöllä. Yhä vielä toimivat sovellukset (kuten Prosessivalvonta tai Työpöytäpalkin kello) saattavat myös kirjoittaa vikajäljitin tulosteen päälle näytölle.
    +Paitsi että kaikki on rumempaa ja epämukavampaa, sama koskee myös sovellusvikoja. Tärkeintä on hankkia paluujälki (bt-komento). Sinun on ehkä otettava valokuva näytöstä digitaalikameralla, koska et voi kopioida tekstiä mihinkään.

    index -Kernel bugs

    -

    Kernel bugs are usual the ones with the most severe effects while at the same time being the hardest to debug. There are different kinds of symptoms, which most likely point to a kernel or driver issue:

    +Käyttöjärjestelmäydinviat +

    Käyttöjärjestelmäydinviat ovat tavallisesti vaikutuksiltaan vakavimmat ja samanaikaisesti niiden vikajäljittäminen on vaikeinta. Käyttöjärjestelmäytimeen tai ajuriin osoittavat selvimmin seuraavat oireet:

      -
    • The system enters kernel debugging land (KDL) on its own volition. The upper part of the screen is cleared white and several lines of text are printed on it. The second line says "Welcome to Kernel Debugging Land...", the one above it states the immediate reason for entering KDL.

    • -
    • The system reboots spontaneously.

    • -
    • The system freezes completely. You can't move the mouse and no application draws anything anymore. An important test in that situation is, whether you still can enter KDL via the shortcut ALT SysReq D (SysReq being PRINT on most keyboards). Wait at least a minute to see, if anything happens.

    • -
    • The system doesn't boot up correctly. It may reboot spontaneously or stop at some point (e.g. at some icon of the boot screen). In the latter case also try ALT SysReq D.

    • -
    • The whole system or some piece of hardware doesn't behave correctly. For example, it could be very slow, errors occur, or something doesn't work at all. If some hardware doesn't work at all, the first obvious check is whether Haiku supports it at all at the moment (e.g. ask on a mailing list or a forum).

    • +
    • Järjestelmä siirtyy Käyttöjärjestelmän vianjäljitysmaahan (KDL) omasta tahdostaan. Näytön ylempi osa muuttuu valkoiseksi ja sille tulostetaan useita rivejä tekstiä. Toinen rivi sanoo "Welcome to Kernel Debugging Land...". Sen yläpuolella oleva rivi kertoo välittömän syyn siirtymisestä KDL:ään.

    • +
    • Järjestelmä alkulatautuu itsestään.

    • +
    • Järjestelmä jäätyy täysin. Et voi siirtää hiiren osoitinta ja mikään sovellus ei enää toimi. Tärkeä testi siinä tilanteessa on, että pystytkö siirtymään KDL:ään pikanäppäimellä ALT SysReq D (SysReq mikä on PRINT useimmissa näppäimistöissä). Odota vähintään minuutti nähdeksesi, että tapahtuuko jotain.

    • +
    • Järjestelmä ei alkulataa oikein. Se voi alkulatautua itsestään tai pysähtyä jossain vaiheessa (esimerkiksi jonkun alkaulatausnäytön kuvakkeen kohdalla). Yritä jälkimmäisessä tapauksessa myös ALT SysReq D.

    • +
    • Koko järjestelmä tai joku laitteiston osa ei toimi kunnolla. Esimerkiksi se voisi olla hyvin hidas, tapahtuu virheitä, tai jokin ei toimi ollenkaan. Jos jokin laite ei toimi ollenkaan, ensimmäinen ilmeinen tarkistus on, että tukeeko Haiku sitä ylimalkaan tällä hetkellä (esim.: kysy sähköpostituslistalta tai foorumilta).

    -

    Note that while only the last point seems to indicate hardware relation, all the other symptoms could be caused by a bug in a hardware driver as well. If you have a suspicion what piece of hardware or corresponding driver might have to do with the problem, check whether removing/disabling the hardware or the driver makes a difference. For example, if you suspect Wifi you may find that your BIOS has an option to disable it. Or if not, you could remove the responsible Wifi driver from your Haiku installation (in /boot/system/add-ons/kernel/drivers/bin).

    +

    Huomaa että vaikka ainoastaan viimeinen kohta tuntuu viittaavan laittoistovikaan, kaikki muutkin oireet voivat johtua myös viasta laitteistoajurissa. Jos sinulla on epäilyjä, että mikä laitteiston osa tai vastaava ajuri aiheuttaa pulmia, tarkista, että eroaako tilanne, jos poistat tai otat pois käytöstä laitteen tai ajurin. Esimerkiksi jos epäilet Wifi-verkkoa, saatat huomata, että BIOS-asetuksissa voidaan ottaa se pois käytöstä. Tai jos ei, niin voisit poistaa vastuullisen Wifi-ajurin Haiku-asennuksestasi (kansiossa /boot/system/add-ons/kernel/drivers/bin).

    index -Kernel Debugging Land - KDL

    -

    If the system hasn't entered KDL by itself, you can do that intentionally by invoking the keyboard shortcut ALT SysReq D.
    -Note that in KDL your keyboard may not work. PS/2 keyboards always do, USB keyboards connected via UHCI controllers do only, if one has entered KDL via the keyboard shortcut at least once. USB OHCI is not supported at the moment.

    -

    KDL itself is a kind of a shell. One can execute commands that print information about the system. The following commands might be of interest:

    +Käyttöjärjestelmäytimen viajäljitysalue - KDL +

    Jos järjestelmä ei ole siirtynyt KDL-tilaan itsestään, voit tehdä sen tarkoituksellisesti pikanäppäimillä ALT SysReq D.
    +Huomaa, että KDL-tilassa näppäimistösi ei ehkä toimi. PS/2-näppäimistöt toimivat aina, UCHI-ohjaimen kautta yhdistetyt USB-näppäimistöt toimivat vain jos jos KDL-tilaan on siirrytty näppäimistön avulla vähintään kerran. USB OHCI ei tällä hetkellä tueta.

    +

    KDL itse on erään tyyppinen komentotulkki. Käyttäjä voi suorittaa komentoja, jotka tulostavat tietoja järjestelmästä. Seuraavat komennot saattavat olla kiinnostavia:

    - - - - + + + +
    bt (aka sc) Prints a back trace. If the system entered KDL on its on volition, always enter that one.
    ints Shows the handled and unhandled hardware interrupts.
    co (aka continue) Leaves the kernel debugger and continues normal operation of the system, if that is possible.
    reboot Reboots the system immediately. You will lose all unsaved data and even those that have been saved, but have not yet been written back to disk.
    bt (eli sc) Tulostaa paluujäljen. Jos järjestelmä siirtyy KDL-tilaan omasta tahdostaan, kirjoita aina tämä komento.
    ints Näyttää käsitellyt ja käsittelemättömät laitteistokeskeytykset.
    co (eli jatka) Jättää järjestelmävianjäljittimen ja jatkaa normaalia järjestelmän toimintaa, jos se on mahdollista.
    reboot Alkulataa järjestelmän välittömästi. Menetät kaiken tallentamattomat tiedot ja vieläpä nuo, jotka on tallennettu, mutta joita ei ole vielä kirjoitettu levylle.
    -

    For more information, see the article Welcome to Kernel Debugging Land.

    -

    The KDL output is written to the serial port (if you have one, a respective cable, and a second computer to connect with, you can capture the output there via a terminal program) and to the syslog. If you can't leave KDL it won't be written to the syslog file, though. There's a boot loader debug option that allows you to capture it nonetheless (see below).

    +

    Katso lisätietoja artikkelista Tervetuloa vikajäljitysalueelle.

    +

    KDL-tuloste kirjoitetaan sarjaporttiin (jos sinulla on sellainen, vastaavaan kaapeliin ja toiseen tietokoneeseen, voit kaapata tulosteen siellä pääteikkunan kautta) ja syslog-järjestelmälokiin. Jos et voi poistua KDL:stä, sitä ei kuitenkaan voida kirjoittaa järjestelmälokiin. Alkulatausvianjäljitysvalitsin mahdollistaa sen tallentamisen kaikesta huolimatta (katso alla).

    +

    Voit tuottaa QR-koodeja KDL-tulosteesta, joka voidaan muuntaa tekstiksi käyttäen älypuhelimia ja vastaavia laitteita. Katso blogikirjoitusta QR-koodaa KDL-tulosteesi siitä kuinka saat ulos tietoja KDL:sta käyttäen tätä ominaisuutta.

    index -Syslog

    -

    This is the preferred method for gaining information from a non-booting system.
    -The syslog (short for system log) contains valuable information about what has happened in your system, including the output of KDL sessions. It's usually a good idea to attach it to the kernel related Trac ticket. The syslog is written to the file /boot/common/var/log/syslog. Since writing to a file requires a working system, the most recent output might not have made it to the syslog when a kernel problem occurs (particularly on spontaneous reboots or uncontinuable KDL sessions).

    -

    The option Enable debug syslog in the boot loader's Debug menu makes the syslog somewhat persistent in memory. By default the option is enabled. "Somewhat persistent" means that it survives a reset and will still be accessible when you enter the boot loader menu directly afterwards. Booting an operating system (Haiku definitely, others likely) destroys the information, though. So you have to enter the boot loader menu by holding down SHIFT while booting.
    -In the boot loader's Debug menu you should now find the entries Display syslog from previous session and Save syslog from previous session. The former displays the syslog on screen, the latter allows you to save it as a file to disk. Note that at the moment only FAT32 volumes are supported for saving the file. If you want to use a USB stick, but have plugged it in too late so that it isn't recognized yet, you can reset the machine and re-enter the boot loader menu. But again: Don't accidentally boot any operating system or the data will be lost.

    +Järjestelmäloki +

    Tämä on ensijainen menetelmä tietojen keräämiseksi ei-alkuladattavasta järjestelmästä.
    +Syslog-järjestelmäloki (syslog on lyhenne englanninkielisestä lokinimestä system log) sisältää arvokkaita tietoja siitä, mitä järjestelmässäsi tapahtui, mukaanlukien KDL-istunnot. On tavallisesti hyvä ajatus liittää se käyttöjärjestelmäydinaiheiseen Trac-lippuun. Järjestelmäloki kirjoitetaan tiedostoon /boot/common/var/log/syslog. Koska kirjoittaminen tiedostoon vaatii toimivan järjestelmän, kaikkein viimeisin tulostustapahtuma ei ehkä ehdi järjestelmälokiin ennen käyttöjärjestelmäytimen pulman ilmaantumista (erityisesti spontaaneissa järjestelmän uudelleenkäynnistymisissä ja KDL-istunnoissa, joita ei voi jatkaa).

    +

    Valitsin Ota käyttöön vianjäljitysjärjestelmäloki alkulataajan Vianjäljitys-valikossa tekee syslog-järjestelmälokista jossain määrin pysyvän muistissa. Valitsin on oletuksena käytössä. "Jossain määrin pysyvä" tarkoittaa, että se selviää järjestelmän nollauksesta ja on edelleen saatavilla kun siirryt alkulatausvalikkoon heti sen jälkeen. Järjestelmän alkulataus (Haiku ehdottomasti, muut todennäköisesti) tuhoavat kuitenkin tiedon. Joten sinun on siirryttävä alkulatausvalikkoon pitämällä alkulatauksen aikana alhaalla VAIHTO-näppäintä.
    +Alkulataajan Vianjäljitys-valikossa sinun pitäisi nyt löytää rivit Näytä järjestelmäloki edellisestä istunnosta ja Tallenna järjestelmäloki edellisestä istunnosta. Edellinen näyttää järjestelmälokin näytöllä, jälkimmäinen sallii sinun tallentaa sen tiedostona levylle. Huomaa, että tällä hetkellä vain FAT32-taltioita tuetaan tiedostontallentamisessa. Jos haluat käyttää USB-tikkua, mutta olet liittänyt sen järjestelmään niin myöhään, että sitä ei ole vielä tunnistettu, voit nollata koneen ja siirtyä uudelleen alkulatausvalikkoon. Mutta taas: Älä vahingossa alkulataa mitään käyttöjärjestelmää tai tiedot katoavat.

    index -On screen debug output

    -

    The on-screen debug output is useful only for debugging very specific issues and is known to have (timing) issues. Don't use it, if you don't have to.
    -This is only relevant when Haiku fails to boot on your machine and the Debug syslog option doesn't work for some reason. Before the Haiku boot logo appears, hold SHIFT to enter the boot loader menu. Select Select safe mode options. Near the bottom, [ ] Enable on screen debug output will be listed. (Note: The other options could be enabled in an attempt to boot Haiku. If Haiku will boot only when one or more options are activated, be sure to mention which ones.)
    -Finally select Return to main menu and then Continue booting.
    -One or more pages of text will display on the screen, only the last few lines need to be included on your ticket. There's more information on the Boot Loader.

    +Vikajäljitystulostus näytölle +

    Vianjäljitystulostus näytölle on hyödyllinen vain hyvin erikoisten kohteiden vianjäljityksessä ja siinä tiedetään olevan (ajoitus) pulmia.
    +Se on ajankohtainen vain kun Haikun alkulataus epäonnistuu ja valikkovalinta Vikajäljitä järjestelmäloki ei jostain syystä toimi. Pidä ennen Haikun alkulatauslogon ilmaantumistta alhaalla VAIHTO-näppäintä päästäksesi alkulatausvalikkoon. Valitse Valitse turvatila-valitsimet. Lähellä alareunaa luetelleaan [ ] Ota käyttöön vikajäljitystulostus näytölle. (Huomaa: Toiset valitsime voivat olla käytössä yrityksenä alkuladata Haiku. Jos Haiku alkulatautuu vain kun yksi tai useampi valitsin on käytössä, varmista, että mainitset ne).
    +Valitse lopuksi Paluu päävalikkoon ja sitten Jatka alkulatausta.
    +Yksi tai useampia tekstisivuja näytetään näytölle, vain muutama harva viimeinen rivi on liitettävä vikailmoituslippuun. Tässä on lisätietoja Alkulataajasta.

    index -Hardware/Driver bugs

    -

    When dealing with a hardware/driver related bug, you should attach the following information as text files:

    +Laitteisto/ajuriviat +

    Kun ollaan tekemisissä laitteisto- tai ajurivikojen kanssa, sinun pitäisi liittää seuraavia tietoja tekstitiedostona:

    - - - - - - + + + + + +
    - listdev A detailed listing of your hardware, including vendor and pci id's, similar to Linux' lshw and lspci.
    - listusb -v Assuming its a USB related issue, similar to lsusb.
    - open /var/log/syslog The primary system log used by Haiku, akin to on screen debugging during boot. With the open command you can crop down the relevant part of the syslog in a text editor.
    - listimage | grep drivers/ Lists all used drivers.
    - ints Only available within Kernel Debugging Land (see above). Shows interrupt usage. There shouldn't be too many that are shared by different devices.
    - On screen debug output (a safe mode boot time option).
    - listdev Yksityiskohtainen luettelo laitteistostasi, mukaanlukien valmistaja- ja pci-tunnisteet, samanlainen kuin Linuxin lshw ja lspci.
    - listusb -v Otaksutaan sen olevan USB:hen liittyvä pulma, sama kuin lsusb.
    - open /var/log/syslog Haikun ensisijainen järjestelmäloki, sukua alkulatauksen aikaiselle vianjäljitykselle. Komennolla open voit poimia olennaisen osan järjestelmälokista testieditorissa.
    - listimage | grep drivers/ Luettelee kaikki käytetyt ajurit.
    - ints Käytettävissä vain Käyttöjärjestelmäytimen vianjäljitysalueella (katso yllä). Näyttää keskeytysten käytön. Eri laitteiden kesken jaettuja keskeytyksiä ei pitäisi olla montaa.
    - Vianjäljitystulostus näytölle (alkulatausvalitsin turvatilassa).
    -

    The first four commands are entered into Terminal. Add a > output.txt after a command, and it's piped into a text file called "output.txt" that you can attach to your bug report or email.

    +

    Neljä ensimmäistä komentoa kirjoitetaan Pääteikkunassa. Lisää > output.txt komennon jälkeen ja se putkitetaan tekstitiedostoon, jonka nimi on "output.txt", jonka voit liittää vikailmoitukseesi tai sähköpostiviestiisi.

    index -

    -

    After the bug has been reported, a developer will look at your bug and try to classify it. Remember, we are all volunteers, and as such, sometimes a bug report might go unanswered for a while. Adding new information when it becomes available usually helps getting a bug picked up quicker, but do not try to 'bump' the bug up by adding -non-descriptive comments.

    -

    Remember, reporting a bug is not something you spend a little time on and then you are done. If you reported a bug, then you are part of the Haiku development process. Developers might come up with questions while they are trying to fix your bug. Please stay around to answer these. Consider your participation 'done' when the bug is marked -as 'fixed'.

    + +

    Vikailmoituksen tekemisen jälkeen kehittäjä tutkii vikaa ja yrittää luokitella sen. Muista, että olemme kaikki vapaaehtoisia ja sellaisena joskus vikailmoitus voi olla vastaamattomana jonkin aikaa. Lisätietojen lisääminen silloin kun sellaista ilmenee, auttaa tavallisesti vian poimimista käsiteltäväksi nopeammin, mutta älä yritä 'töniä' vikaa lisäämällä ei-kuvaavia kommentteja.

    +

    Muista, että vika ei ole jotain, johon käytät pikkuisen aikaa ja sitten kaikki on tehty. Jos ilmoitat viasta, olet osa Haikun kehitysprosessia. Kehittäjät saattavat esittää kysymyksiä yrittäessään korjata vikaa. Pysyttele tavoitettavissa vastataksesi kysymyksiin. Katso osanottamisesi -tehdyksi' kun vika on merkitty 'fixed'.

    diff --git a/docs/welcome/fr/bugreports.html b/docs/welcome/fr/bugreports.html index 2ec57beb46..53db3755a7 100644 --- a/docs/welcome/fr/bugreports.html +++ b/docs/welcome/fr/bugreports.html @@ -4,7 +4,7 @@ + + + Hibák jelentése + + + + + + + + +
    +
    + + + + +
    Index
    Trac azonosító létrehozása
    + Hibajelentés készítése
    + Program hibák
    + Kiszolgáló/szolgáltatás hibák
    + Kernel hibák
    + Kernel Debugging Land - KDL
    + Rendszer napló
    + Hibakeresés a képernyőn
    + Eszköz/vezérlő hibák
    + Hogyan tovább?
    + +

    Hibák jelentése

    + +

    Mivel a fejlesztők nem tudnak minden konfigurációt, az operációs rendszerben minden eshetőséget kipróbálni, ezért a felhasználók visszajelzésére támaszkodunk, arra, hogy náluk hogyan működnek a dolgok, milyen kimenetet kapnak. Mivel a Haiku még fiatal, ezért nagy valószínűséggel találkozol majd valamilyen hibával. Megköszönjük, ha fordítasz időt a feltárt hibák jelzésére. Együtt képesek leszünk a Haiku hiáinak javítására.

    +

    A hibakeresőnél vedd figyelembe a Bug Tracker Etiquette-ben leírtakat.

    + +

    index +Trac azonosító létrehozása

    +

    Egy probléma jelentéséhez szükség van egy Haiku Hibakövető azonosítóra.
    +Új felhasználó létrehozáskor szükséges egy e-mail cím megadása. Ha regsiztráció után nem érkezik meg az ellenőrző/visszaigazoló levél, akkor ellenőrizni kell a kéretlen levelek mappáját, mert gyakran oda kerül.

    + +

    index +Hibajelentés készítése

    +

    Mielőtt jelentesz egy hibát, előtte győződj meg, hogy még nem létezik róla jelentés. Szintén használható a kereső is.
    +Miután megbizonyosodtál róla, hogy a hiba egyedi, akkor azt a lehető legpontosabban, legrészletesebben le kell írni:

    +
      +
    • Próbáld meg a hibát a legújabb verzión is előidézni. Előre elkészített képfájlok is a rendelkezésre állnak.

    • +
    • Add meg az alapvető információkat arra vonatkozóan, hogy miként használtad a Haiku-t (például valós gépen vagy emulátoron (VMWare, QEMU), stb.).

    • +
    • Említsd meg, melyik SVN verziót használod. Ezt az információt megtalálod a Haiku névjegyén az Asztalsávon. Szintén szükséges a Haiku típusának (gcc2, gcc4, gcc2hybrid, gcc4hybrid) megadása. Ez a letöltött képfájl nevéből is kiderülthet, mert tartalmazzák azt.

    • +
    • Írd le a tapasztalt problémát. Próbáld meg olyan pontosan, ahogy tudod: mi és hogyan viselkedett, és mire számítottál.

    • +
    • Írd le, hogy milyen lépések szükségesek ahhoz, hogy a hibát meg tudjuk ismételni. Ez a lépés segít a fejlesztőknek.

    • +
    • Mellékelj annyi információt, amennyit csak tudsz. Ha ez a grafikus felület, vagy egy program hibája, akkor készíts egy képernyőképet a PRINT billentyű lenyomásával.

    • +
    + +

    index +Program hibák

    +

    Ha egy program meghibásodott, akkor a hibakereső a megjelenített üzenetből is előhívható. Ekkor megnyílik egy Terminál ablak a gdb-t (GNU hibakereső) futtatva. A bt-t kiadva létrehozhatunk egy "visszakövetést", aminek az eredményét a jelentéshez kell mellékelni (azt is, amit a bt előtt kaptál).

    + +

    index +Kiszolgáló/szolgáltatás hibák

    +

    Amikor egy létfontosságú szolgáltatás, mint például az alkalmazás szolgáltatás (app_server), a registrar vagy a bemeneti eszköz szolgáltatás (input_server) hibásodik meg, akkor nem valószínű, hogy a szokásos üzenetet kapod majd. Ehelyett a teljes képernyő egy Terminálhoz hasonló képernyőre változik, ahol a hibakereső folyamat elindul, és az üzenetek ott jelennek meg. Lehetséges, hogy az egér mozgatható, ekkor azonban az egér-kurzor törli a fehér képernyőn lévő információt. A programok továbbra is futnak (például a Folyamatkezelő vagy az óra az Ásztalsávon), amik szintén törölhetik a fehér képernyőt.
    +Attól, hogy kicsit kényelmetlen, minden épp úgy működik, mint a programhibák esetében. A legfontosabb a hiba visszakövetése (bt parancs). Erről a képernyőről készíthetsz egy képet is egy digitális fényképezőgéppel, itt ugyanis nem használható a kijelölés és másolás.

    + +

    index +Kernel hibák

    +

    A kernel hibák a legsúlyosabbak, és ugyanakkor a legnehezebb felderíteni is azokat. Különféle eshetőségek lehetnek, melyek leginkább a kernelel vagy egy vezérlőprogramal kapcsolatos:

    +
      +
    • A rendszer saját magától belép a kernel hibakereső felületére (KDL). A képernyő felső része törlődik, fehér hátteret kap és néhány sornyi szöveg is megjelenik. A második sor a "Welcome to Kernel Debugging Land..." (üdvözöllek a kernel hibakeresőben), az e feletti sor pedig a hibakeresőbe való belépés okát adja meg.

    • +
    • A rendszer spontán újraindul.

    • +
    • A rendszer teljesen használhatatlan ("lefagy"). Nem tudod mozgatni az egeret, és a képernyőt sem frissíti semmi. Fontos megpróbálni, hogy be tudunk-e lépni a KDL-be az ALT SysReq D (a SysReq az a PRINT sok billentyűzeten) kombinációval. Várj körülbelül egy percet, hogy történik-e valami.

    • +
    • A rendszer nem megfelelően indul. Néha újraindul vagy megáll egy adott ponton (például egy indító képernyő egyik ikonjának felvillanásakor). Később ismét megpróbálható a ALT SysReq D kombináció.

    • +
    • A teljes rendszer, vagy bizonyos eszközök nem működnek megfelelően. Például nagyon lelassul vagy valami egyártalán nem működik. Ha egy eszköz nem működik, akkor elsőként azt kell kideríteni, hogy egyártalán támogatott eszközről van-e szó (például levelező listán vagy fórumon ajánlott megkérdezni).

    • +
    +

    Ne feledd, hogy csak az utolsó pont utal eszköz hibára, azonban más problémát is okozhat egy eszközvezérlő hibája. Ha gyanítod, hogy a hibát egy adott vezérlő okozza, akkor ellenőrizd le, hogy mi változik, ha az eszközt vagy a vezérlőt eltávolítod vagy letiltod. Plldául, ha a Wifi-re gyanakszol, akkor próbáld meg kideríteni, hogy a BIOS-ban letiltható-e. Ha nem, akkor a gyanús vezérlőt töröld a rendszerből (a /boot/system/add-ons/kernel/drivers/bin mappából).

    + +

    index +Kernel Debugging Land - KDL (Kernel Hibakereső Felület)

    +

    Ha a rendszer nem lép be automatikusan a KDL-be, akkor a ALT SysReq D kombinációval manuálisan is beléphetsz oda.
    +Ne feledd, megeshet, hogy a billentyűzeted nem fog működni a KDL-ben. A PS/2 billentyűzet biztosan, az USB csak akkor, ha UHCI vezérlőre van csatlakoztatva. USB OHCI jelenleg nem használható.

    +

    A KDL egyfajta shell. Itt néhány parancsot is használhatunk. Az alábbi parancsok érdekesek lehetnek:

    + + + + + +
    bt (sc) A hiba visszakövetése. Ha egy hiba miatt kerülsz a KDL-be, akkor ezt alapból kiadja az.
    ints A kezelt és nem kezelt eszköz-megszakítások megjelenítése.
    co (continue) Ha lehetséges, akkor kilép a hibakeresőből, és folytatja a normális működést.
    reboot Azonnal újraindítja a rendszert. Minden nem mentett adatot elveszítesz. Azokat is, amit bár elmentettél, de még nem lett a lemezre írva.
    +

    További információk a Welcome to Kernel Debugging Land oldalon.

    +

    A KDL kimenete a soros porta is kiküldésre kerül (márha rendelkezünk vele). Egy kábelel egy másik számítógéphez kötve a terminálból egy program segítségével megkaphatjuk a kimenetet illetve a naplót. Ha nem tudunk kilépni a KDL-ből, akkor a napló sem kerül mentésre. Ekkor egy opció is a rendelkezésünkre áll betöltéskor (további információk alább).

    +

    QR-kód létrehozására is lehetőségünk van a KDL-ből, amit felhasználhatunk például okos telefonnal. További információk a QR Encode your KDL Output oldalán.

    + +

    index +Rendszer napló

    +

    Ez az előnyben részesített módszer egy nem indítható rendszer információinak összegyűjtésére.
    +A syslog (a rendszer napló rövid neve) értékes információkat tartalmaz arról, hogy mi történt a rendszerben beleértve a KDL kimenetét is. Általában jó ötlet és hasznos is a jelentéshez csatolása. A naplót a /boot/common/var/log/syslog fájl tartalmazza. Mivel a fájl írásához működő rendszerre van szükség, ezért megeshet, hogy a legújabb üzenetek nem kerülnek bele a naplóba, főként, ha kernel probléma adódik (például ha a KDL nem válaszol, nem használható).

    +

    Ha az Enable debug syslog (hibakereső naplózás engedélyezése) engedélyezve van a rendszertöltő Select debug options (hibakereső opciók) menüjében, akkor a rendszer a naplót megőrzi a memóriában. Alap esetben ez az opció engedélyezve van. A napló megőrzése annyit jelent, hogy a rendszer újraindításkor továbbra is elérhető marad a rendszertöltő menübe való belépéskor. Egy operációs rendszer betöltése (a Haiku biztosan, a többi pedig valószínűleg) törli ezt az információt. Tehát, be kell lépni indításkor a menübe a SHIFT lenyomása közben.
    +A rendszertöltő menü Select output options (hibakereső opciók) menüjében most megjelenik további opció két is: Display syslog from previous session (a legutóbbi napló megjelenítése) és a Save syslog from previous session (a legutóbbi napló mentése). Az előbbi a naplót a képernyőn jeleníti meg, az utóbbi pedig elmenti azt a lemezre. Ne feledd, hogy jelenleg csak a FAT32-es fájlrendszerű lemezek használhatóak mentésre. Ha USB lemezre akarod menteni és elfelejtetted azt időben csatlakoztatni, akkor csatlakoztasd, majd nyugodtan indítsd újra a gépet, és próbáld meg akkor menteni a naplót. De ismételten: véletlenül se indíts egy operációs rendszert amíg el nem mented a naplót, mert különben elvész az.

    + +

    index +Hibakeresés a képernyőn

    +

    A képernyőn történő hibakeresés csak egy megadott hiba esetében hasznos, és időigényes. Ne használd, ha nem szükséges.
    +Ez akkor fontos, ha a Haiku nem tud elindulni és a hibakereső naplózás valamiért nem működik. Mielőtt a Haiku logó megjelenik, tartsd lenyomva a SHIFT-et a rendszertöltőbe való belépéshez. Válasszd a Select safe mode options (hibakereső opciók) menüt, majd azon belül az [ ] Enable on screen debug output (képernyőn történő hibakeresés engedélyezése) opciót. (Megjegyzés: több opció is haszálható betöltéskor. Ha a Haiku indításakor egy vagy több opciót is használsz, akkor azokat is említsd meg.)
    +Végül válaszd a Return to main menu (visszatérés a főmenübe), majd a Continue booting (betöltés folytatása) menüpontot.
    +Egy vagy több oldalnyi szöveg is megjelenik majd a képernyőn, amiből csak az utolsó néhány sort szükséges a jelentéshez csatolni. További információk a Rendszertöltő fejezetben.

    + +

    index +Eszköz/vezérlő hibák

    +

    Ha eszközhibával/vezérlővel van dolgunk, akkor az alábbi információkat is ajánlott csatolni szöveges fájlként:

    + + + + + + + + +
    - listdev Részletes lista az eszközökről/összetevőkről a pci és a gyártó azonosítójával együtt. Hasonló a Linux lshw és lspci parancsához.
    - listusb -v USB-vel kapcsolatos hiba esetén. Hasonló a lsusb-hez.
    - open /var/log/syslog Az elsődleges napló, amit a Haiku használ, amibe az indításkori üzenetek is bekerülnek. Az open használatával a naplóból egy adott részt is kimásolhatunk, mert az egy szövegszerksztőben nyílik meg.
    - listimage | grep drivers/ Az összes használt eszközvezérlő.
    - ints Csak a Kernel Debugging Land-ben haszálatos (lásd fejjebb). A megszakítások használatát jeleníti meg. Elvileg nem lehet túl sok amit megosztva használnak az eszközök.
    - Hibakeresés a képernyőn (indításkori biztonsági opció).
    + +

    Az elős 4 parancsot a Terminálban kell kiadni. Kiegészítve a > output.txt paraméterrel, a parancsok kimenete nem a képernyőre, hanem egy "output.txt" (kimenet) nevű fájlba kerül, amit a jelentéshez csatolhatunk vagy levélhez mellékelhetünk.

    + +

    index +

    +

    Miután jeleztél egy hibát, egy fejlesztő megnézi azt, és osztályozza. Ne feledd, hogy minden fejlesztő önkéntes, így néha egy jelentés megválaszolatlan marad egy ideig. +Ha új információk is rendelkezésre állnak, akkor azt is a jelentéshez ajánlott csatolni, így a probléma megoldása felgyorsulhat.

    +

    Ne feledd azt sem, hogy a hiba jelentése nem csak annyiból ál, hogy jelented, és kész. Mikor jelentesz egy hibát, akkor Te is a Haiku fejlesztésének részévé válasz. A fejlesztők is tehetnek fel kérdéseket miközben próbálják kijavítani a hibát. Kérünk, hogy a válaszaiddal segítsd a munkánkat. Ha egy jelentés 'kész', akkor az 'fixed' (javított) jelölést kap.

    + +
    +
    + + + + + diff --git a/docs/welcome/images/flags/ca.png b/docs/welcome/images/flags/ca.png new file mode 100644 index 0000000000..15ef65e192 Binary files /dev/null and b/docs/welcome/images/flags/ca.png differ diff --git a/docs/welcome/images/flags/hu.png b/docs/welcome/images/flags/hu.png new file mode 100644 index 0000000000..6ddb72d905 Binary files /dev/null and b/docs/welcome/images/flags/hu.png differ diff --git a/docs/welcome/images/flags/pt_BR.png b/docs/welcome/images/flags/pt_BR.png new file mode 100644 index 0000000000..93c6ee03c3 Binary files /dev/null and b/docs/welcome/images/flags/pt_BR.png differ diff --git a/docs/welcome/it/bugreports.html b/docs/welcome/it/bugreports.html index 4ee7033a2e..092df72ebe 100644 --- a/docs/welcome/it/bugreports.html +++ b/docs/welcome/it/bugreports.html @@ -4,7 +4,7 @@ + + + Reportando bugs + + + + + + + + +
    +
    +
    A tradução desta página ainda não está completa. Até lá, partes incompletas mostrarão o original em inglês.
    + + + + +
    Índice
    Getting a Trac account
    + Creating a bug report
    + Application bugs
    + Server bugs
    + Kernel bugs
    + Kernel Debugging Land - KDL
    + Syslog
    + On screen debug output
    + Hardware/Driver bugs
    + What's next?
    + +

    Reportando bugs

    + +

    Since our developers are unable to test every hardware combination, nor every different way of interacting with the operating system, we are relying on users to give us some input on how things work at their end. Since Haiku is still quite young, it's very likely that you will encounter bugs. We thank you for taking the time to report these. Together we can improve Haiku, bit by bit.

    +

    To keep our bugtracker effective, it's essential to abide by the Bug Tracker Etiquette.

    + +

    index +Getting a Trac account

    +

    To file a ticket, you need to have an account at Haiku's Bugtracker.
    +When creating a new account, be certain to provide your email address as it is necessary to obtain basic ticket modification privileges. Be sure to check your spam folder shortly afterwards, as the all important verification mail often ends up there.

    + +

    index +Creating a bug report

    +

    Before reporting a bug, please make sure that it does not yet exist. You can also use the search function for this.
    +After you have established that it's a unique bug, make your information as accurate as possible:

    +
      +
    • Attempt to reproduce your issue on the current revision of Haiku. Pre-built images for testing purposes are  available.

    • +
    • Include basic information such as how you are testing Haiku (on real hardware, on VMWare, on QEMU, etc.).

    • +
    • Mention which revision from SVN you are running. You can find this information in About Haiku... from the Deskbar menu. Also mention what kind of Haiku build you are testing (gcc2, gcc4, gcc2hybrid, gcc4hybrid). The downloadable images are named accordingly, for a self-built image you should know how you built it.

    • +
    • Describe the problem you are experiencing. Try to be as accurate as you can: describe the actual behavior, and the behavior you expected.

    • +
    • Describe what steps you need to perform in order to expose the bug. This will help developers reproduce the bug.

    • +
    • Attach as much information as you have. If it is a GUI bug, or a bug in one of the applications, try to take a screenshot by pressing the PRINT key.

    • +
    + +

    index +Application bugs

    +

    When an application crashed, you should invoke the debugger from the alert that pops up. This will open a Terminal window with gdb (the GNU debugger) running in it. Entering bt, you create a "backtrace" that you should copy in its entirety (including the part before you entered the bt command) and attach it to the ticket.

    + +

    index +Server bugs

    +

    When vital servers like the app server, the registrar or the input server crash, you won't see the usual crash alert. Instead the whole screen will be cleared white and a gdb session will be started, its output appearing directly on screen. Likely you will still be able to move the mouse, which will overwrite the white and gdb output on screen. Applications still running (like ProcessController or the clock in the Deskbar) might also draw over the debugger output on screen.
    +Besides everything being more ugly and inconvenient, basically the same applies as for application bugs. Most importantly procure a back trace (bt command). You may need to take a picture of the screen with a digital camera, since you won't be able to copy the text anywhere.

    + +

    index +Kernel bugs

    +

    Kernel bugs are usual the ones with the most severe effects while at the same time being the hardest to debug. There are different kinds of symptoms, which most likely point to a kernel or driver issue:

    +
      +
    • The system enters kernel debugging land (KDL) on its own volition. The upper part of the screen is cleared white and several lines of text are printed on it. The second line says "Welcome to Kernel Debugging Land...", the one above it states the immediate reason for entering KDL.

    • +
    • The system reboots spontaneously.

    • +
    • The system freezes completely. You can't move the mouse and no application draws anything anymore. An important test in that situation is, whether you still can enter KDL via the shortcut ALT SysReq D (SysReq being PRINT on most keyboards). Wait at least a minute to see, if anything happens.

    • +
    • The system doesn't boot up correctly. It may reboot spontaneously or stop at some point (e.g. at some icon of the boot screen). In the latter case also try ALT SysReq D.

    • +
    • The whole system or some piece of hardware doesn't behave correctly. For example, it could be very slow, errors occur, or something doesn't work at all. If some hardware doesn't work at all, the first obvious check is whether Haiku supports it at all at the moment (e.g. ask on a mailing list or a forum).

    • +
    +

    Note that while only the last point seems to indicate hardware relation, all the other symptoms could be caused by a bug in a hardware driver as well. If you have a suspicion what piece of hardware or corresponding driver might have to do with the problem, check whether removing/disabling the hardware or the driver makes a difference. For example, if you suspect Wifi you may find that your BIOS has an option to disable it. Or if not, you could remove the responsible Wifi driver from your Haiku installation (in /boot/system/add-ons/kernel/drivers/bin).

    + +

    index +Kernel Debugging Land - KDL

    +

    If the system hasn't entered KDL by itself, you can do that intentionally by invoking the keyboard shortcut ALT SysReq D.
    +Note that in KDL your keyboard may not work. PS/2 keyboards always do, USB keyboards connected via UHCI controllers do only, if one has entered KDL via the keyboard shortcut at least once. USB OHCI is not supported at the moment.

    +

    KDL itself is a kind of a shell. One can execute commands that print information about the system. The following commands might be of interest:

    + + + + + +
    bt (aka sc) Prints a back trace. If the system entered KDL on its on volition, always enter that one.
    ints Shows the handled and unhandled hardware interrupts.
    co (aka continue) Leaves the kernel debugger and continues normal operation of the system, if that is possible.
    reboot Reboots the system immediately. You will lose all unsaved data and even those that have been saved, but have not yet been written back to disk.
    +

    For more information, see the article Welcome to Kernel Debugging Land.

    +

    The KDL output is written to the serial port (if you have one, a respective cable, and a second computer to connect with, you can capture the output there via a terminal program) and to the syslog. If you can't leave KDL it won't be written to the syslog file, though. There's a boot loader debug option that allows you to capture it nonetheless (see below).

    +

    You can generate QR codes from KDL output that can then be converted to text using smartphones or similar devices. See the blog post QR Encode your KDL Output on how to get data out of KDL using that feature.

    + +

    index +Syslog

    +

    This is the preferred method for gaining information from a non-booting system.
    +The syslog (short for system log) contains valuable information about what has happened in your system, including the output of KDL sessions. It's usually a good idea to attach it to the kernel related Trac ticket. The syslog is written to the file /boot/common/var/log/syslog. Since writing to a file requires a working system, the most recent output might not have made it to the syslog when a kernel problem occurs (particularly on spontaneous reboots or uncontinuable KDL sessions).

    +

    The option Enable debug syslog in the boot loader's Debug menu makes the syslog somewhat persistent in memory. By default the option is enabled. "Somewhat persistent" means that it survives a reset and will still be accessible when you enter the boot loader menu directly afterwards. Booting an operating system (Haiku definitely, others likely) destroys the information, though. So you have to enter the boot loader menu by holding down SHIFT while booting.
    +In the boot loader's Debug menu you should now find the entries Display syslog from previous session and Save syslog from previous session. The former displays the syslog on screen, the latter allows you to save it as a file to disk. Note that at the moment only FAT32 volumes are supported for saving the file. If you want to use a USB stick, but have plugged it in too late so that it isn't recognized yet, you can reset the machine and re-enter the boot loader menu. But again: Don't accidentally boot any operating system or the data will be lost.

    + +

    index +On screen debug output

    +

    The on-screen debug output is useful only for debugging very specific issues and is known to have (timing) issues. Don't use it, if you don't have to.
    +This is only relevant when Haiku fails to boot on your machine and the Debug syslog option doesn't work for some reason. Before the Haiku boot logo appears, hold SHIFT to enter the boot loader menu. Select Select safe mode options. Near the bottom, [ ] Enable on screen debug output will be listed. (Note: The other options could be enabled in an attempt to boot Haiku. If Haiku will boot only when one or more options are activated, be sure to mention which ones.)
    +Finally select Return to main menu and then Continue booting.
    +One or more pages of text will display on the screen, only the last few lines need to be included on your ticket. There's more information on the Boot Loader.

    + +

    index +Hardware/Driver bugs

    +

    When dealing with a hardware/driver related bug, you should attach the following information as text files:

    + + + + + + + + +
    - listdev A detailed listing of your hardware, including vendor and pci id's, similar to Linux' lshw and lspci.
    - listusb -v Assuming its a USB related issue, similar to lsusb.
    - open /var/log/syslog The primary system log used by Haiku, akin to on screen debugging during boot. With the open command you can crop down the relevant part of the syslog in a text editor.
    - listimage | grep drivers/ Lists all used drivers.
    - ints Only available within Kernel Debugging Land (see above). Shows interrupt usage. There shouldn't be too many that are shared by different devices.
    - On screen debug output (a safe mode boot time option).
    + +

    The first four commands are entered into Terminal. Add a > output.txt after a command, and it's piped into a text file called "output.txt" that you can attach to your bug report or email.

    + +

    index +

    +

    After the bug has been reported, a developer will look at your bug and try to classify it. Remember, we are all volunteers, and as such, sometimes a bug report might go unanswered for a while. Adding new information when it becomes available usually helps getting a bug picked up quicker, but do not try to 'bump' the bug up by adding +non-descriptive comments.

    +

    Remember, reporting a bug is not something you spend a little time on and then you are done. If you reported a bug, then you are part of the Haiku development process. Developers might come up with questions while they are trying to fix your bug. Please stay around to answer these. Consider your participation 'done' when the bug is marked +as 'fixed'.

    + +
    +
    + + + + + diff --git a/docs/welcome/pt_PT/bugreports.html b/docs/welcome/pt_PT/bugreports.html index fb6ee9d084..5a059bfa6e 100644 --- a/docs/welcome/pt_PT/bugreports.html +++ b/docs/welcome/pt_PT/bugreports.html @@ -4,7 +4,7 @@ - Welcome to Haiku! + Tervetuloa Haikuun!