| |
- Method resolution order:
- Test
- unittest.TestCase
- builtins.object
Methods defined here:
- setUp(self)
- tearDown(self)
- test_passing(self)
Methods inherited from unittest.TestCase:
- __call__(self, *args, **kwds)
- __eq__(self, other)
- __hash__(self)
- __init__(self, methodName='runTest')
- Create an instance of the class that will use the named test
method when executed. Raises a ValueError if the instance does
not have a method with the specified name.
- __ne__(self, other)
- __repr__(self)
- __str__(self)
- addCleanup(self, function, *args, **kwargs)
- Add a function, with arguments, to be called when the test is
completed. Functions added are called on a LIFO basis and are
called after tearDown on test failure or success.
Cleanup items are called even if setUp fails (unlike tearDown).
- addTypeEqualityFunc(self, typeobj, function)
- Add a type specific assertEqual sty
<?php
/**
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
*
* @author Wojciech Lichota <wojciech@lichota.pl>
*/
$lang['__background_site__'] = 'Kolor tła za polem zawartości';
$lang['__link__'] = 'Kolor łącza';
$lang['__existing__'] = 'Kolor łącza do istniejącej strony';
$lang['__missing__'] = 'Kolor łącza do nieistniejącej strony';
$lang['__site_width__'] = 'Szerokość pełnej strony (możliwa dowolna jednostka długości: %, px, em, ...)';
$lang['__sidebar_width__'] = 'Szerokość paska bocznego, jeśli istnieje (możliwa dowolna jednostka długości: %, px, em, ...)';
$lang['__tablet_width__'] = 'Szerokość ekrany poniżej której, strona przełączy się w tryb tabletu';
$lang['__phone_width__'] = 'Szerokość ekrany poniżej której, strona przełączy się w tryb telefonu';
|