├── .editorconfig ├── .gitattributes ├── .gitignore ├── .tx └── config ├── .woodpecker ├── .code_standards_check.yml ├── .continuous-deployment.yml ├── .messages.po_check.yml ├── .phpunit.yml └── .releaser.yml ├── INSTALL.txt ├── README.md ├── advancedcontentfilter ├── LICENSE ├── README.md ├── advancedcontentfilter.js ├── advancedcontentfilter.php ├── asset │ └── vue │ │ └── dist │ │ ├── vue.js │ │ └── vue.min.js ├── composer.json ├── composer.lock ├── doc │ └── advancedcontentfilter.md ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── en-gb │ │ ├── messages.po │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php ├── templates │ ├── advancedcontentfilter.vue │ └── settings.tpl └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php │ ├── nikic │ └── fast-route │ │ ├── .gitignore │ │ ├── .hhconfig │ │ ├── .travis.yml │ │ ├── FastRoute.hhi │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── psalm.xml │ │ ├── src │ │ ├── BadRouteException.php │ │ ├── DataGenerator.php │ │ ├── DataGenerator │ │ │ ├── CharCountBased.php │ │ │ ├── GroupCountBased.php │ │ │ ├── GroupPosBased.php │ │ │ ├── MarkBased.php │ │ │ └── RegexBasedAbstract.php │ │ ├── Dispatcher.php │ │ ├── Dispatcher │ │ │ ├── CharCountBased.php │ │ │ ├── GroupCountBased.php │ │ │ ├── GroupPosBased.php │ │ │ ├── MarkBased.php │ │ │ └── RegexBasedAbstract.php │ │ ├── Route.php │ │ ├── RouteCollector.php │ │ ├── RouteParser.php │ │ ├── RouteParser │ │ │ └── Std.php │ │ ├── bootstrap.php │ │ └── functions.php │ │ └── test │ │ ├── Dispatcher │ │ ├── CharCountBasedTest.php │ │ ├── DispatcherTest.php │ │ ├── GroupCountBasedTest.php │ │ ├── GroupPosBasedTest.php │ │ └── MarkBasedTest.php │ │ ├── HackTypechecker │ │ ├── HackTypecheckerTest.php │ │ └── fixtures │ │ │ ├── all_options.php │ │ │ ├── empty_options.php │ │ │ └── no_options.php │ │ ├── RouteCollectorTest.php │ │ ├── RouteParser │ │ └── StdTest.php │ │ └── bootstrap.php │ ├── psr │ ├── cache │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CacheException.php │ │ │ ├── CacheItemInterface.php │ │ │ ├── CacheItemPoolInterface.php │ │ │ └── InvalidArgumentException.php │ ├── container │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ContainerExceptionInterface.php │ │ │ ├── ContainerInterface.php │ │ │ └── NotFoundExceptionInterface.php │ ├── http-factory │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── RequestFactoryInterface.php │ │ │ ├── ResponseFactoryInterface.php │ │ │ ├── ServerRequestFactoryInterface.php │ │ │ ├── StreamFactoryInterface.php │ │ │ ├── UploadedFileFactoryInterface.php │ │ │ └── UriFactoryInterface.php │ ├── http-message │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ │ ├── PSR7-Interfaces.md │ │ │ └── PSR7-Usage.md │ │ └── src │ │ │ ├── MessageInterface.php │ │ │ ├── RequestInterface.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerRequestInterface.php │ │ │ ├── StreamInterface.php │ │ │ ├── UploadedFileInterface.php │ │ │ └── UriInterface.php │ ├── http-server-handler │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── RequestHandlerInterface.php │ ├── http-server-middleware │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── MiddlewareInterface.php │ └── log │ │ ├── LICENSE │ │ ├── Psr │ │ └── Log │ │ │ ├── AbstractLogger.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogLevel.php │ │ │ ├── LoggerAwareInterface.php │ │ │ ├── LoggerAwareTrait.php │ │ │ ├── LoggerInterface.php │ │ │ ├── LoggerTrait.php │ │ │ ├── NullLogger.php │ │ │ └── Test │ │ │ ├── DummyTest.php │ │ │ ├── LoggerInterfaceTest.php │ │ │ └── TestLogger.php │ │ ├── README.md │ │ └── composer.json │ ├── slim │ └── slim │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── MAINTAINERS.md │ │ ├── SECURITY.md │ │ ├── Slim │ │ ├── App.php │ │ ├── CallableResolver.php │ │ ├── Error │ │ │ ├── AbstractErrorRenderer.php │ │ │ └── Renderers │ │ │ │ ├── HtmlErrorRenderer.php │ │ │ │ ├── JsonErrorRenderer.php │ │ │ │ ├── PlainTextErrorRenderer.php │ │ │ │ └── XmlErrorRenderer.php │ │ ├── Exception │ │ │ ├── HttpBadRequestException.php │ │ │ ├── HttpException.php │ │ │ ├── HttpForbiddenException.php │ │ │ ├── HttpGoneException.php │ │ │ ├── HttpInternalServerErrorException.php │ │ │ ├── HttpMethodNotAllowedException.php │ │ │ ├── HttpNotFoundException.php │ │ │ ├── HttpNotImplementedException.php │ │ │ ├── HttpSpecializedException.php │ │ │ ├── HttpTooManyRequestsException.php │ │ │ └── HttpUnauthorizedException.php │ │ ├── Factory │ │ │ ├── AppFactory.php │ │ │ ├── Psr17 │ │ │ │ ├── GuzzlePsr17Factory.php │ │ │ │ ├── HttpSoftPsr17Factory.php │ │ │ │ ├── LaminasDiactorosPsr17Factory.php │ │ │ │ ├── NyholmPsr17Factory.php │ │ │ │ ├── Psr17Factory.php │ │ │ │ ├── Psr17FactoryProvider.php │ │ │ │ ├── ServerRequestCreator.php │ │ │ │ ├── SlimHttpPsr17Factory.php │ │ │ │ ├── SlimHttpServerRequestCreator.php │ │ │ │ └── SlimPsr17Factory.php │ │ │ └── ServerRequestCreatorFactory.php │ │ ├── Handlers │ │ │ ├── ErrorHandler.php │ │ │ └── Strategies │ │ │ │ ├── RequestHandler.php │ │ │ │ ├── RequestResponse.php │ │ │ │ ├── RequestResponseArgs.php │ │ │ │ └── RequestResponseNamedArgs.php │ │ ├── Interfaces │ │ │ ├── AdvancedCallableResolverInterface.php │ │ │ ├── CallableResolverInterface.php │ │ │ ├── DispatcherInterface.php │ │ │ ├── ErrorHandlerInterface.php │ │ │ ├── ErrorRendererInterface.php │ │ │ ├── InvocationStrategyInterface.php │ │ │ ├── MiddlewareDispatcherInterface.php │ │ │ ├── Psr17FactoryInterface.php │ │ │ ├── Psr17FactoryProviderInterface.php │ │ │ ├── RequestHandlerInvocationStrategyInterface.php │ │ │ ├── RouteCollectorInterface.php │ │ │ ├── RouteCollectorProxyInterface.php │ │ │ ├── RouteGroupInterface.php │ │ │ ├── RouteInterface.php │ │ │ ├── RouteParserInterface.php │ │ │ ├── RouteResolverInterface.php │ │ │ └── ServerRequestCreatorInterface.php │ │ ├── Logger.php │ │ ├── Middleware │ │ │ ├── BodyParsingMiddleware.php │ │ │ ├── ContentLengthMiddleware.php │ │ │ ├── ErrorMiddleware.php │ │ │ ├── MethodOverrideMiddleware.php │ │ │ ├── OutputBufferingMiddleware.php │ │ │ └── RoutingMiddleware.php │ │ ├── MiddlewareDispatcher.php │ │ ├── ResponseEmitter.php │ │ └── Routing │ │ │ ├── Dispatcher.php │ │ │ ├── FastRouteDispatcher.php │ │ │ ├── Route.php │ │ │ ├── RouteCollector.php │ │ │ ├── RouteCollectorProxy.php │ │ │ ├── RouteContext.php │ │ │ ├── RouteGroup.php │ │ │ ├── RouteParser.php │ │ │ ├── RouteResolver.php │ │ │ ├── RouteRunner.php │ │ │ └── RoutingResults.php │ │ └── composer.json │ └── symfony │ ├── cache-contracts │ ├── .gitignore │ ├── CHANGELOG.md │ ├── CacheInterface.php │ ├── CacheTrait.php │ ├── CallbackInterface.php │ ├── ItemInterface.php │ ├── LICENSE │ ├── README.md │ ├── TagAwareCacheInterface.php │ └── composer.json │ ├── cache │ ├── Adapter │ │ ├── AbstractAdapter.php │ │ ├── AbstractTagAwareAdapter.php │ │ ├── AdapterInterface.php │ │ ├── ApcuAdapter.php │ │ ├── ArrayAdapter.php │ │ ├── ChainAdapter.php │ │ ├── DoctrineAdapter.php │ │ ├── FilesystemAdapter.php │ │ ├── FilesystemTagAwareAdapter.php │ │ ├── MemcachedAdapter.php │ │ ├── NullAdapter.php │ │ ├── PdoAdapter.php │ │ ├── PhpArrayAdapter.php │ │ ├── PhpFilesAdapter.php │ │ ├── ProxyAdapter.php │ │ ├── Psr16Adapter.php │ │ ├── RedisAdapter.php │ │ ├── RedisTagAwareAdapter.php │ │ ├── SimpleCacheAdapter.php │ │ ├── TagAwareAdapter.php │ │ ├── TagAwareAdapterInterface.php │ │ ├── TraceableAdapter.php │ │ └── TraceableTagAwareAdapter.php │ ├── CHANGELOG.md │ ├── CacheItem.php │ ├── DataCollector │ │ └── CacheDataCollector.php │ ├── DependencyInjection │ │ ├── CacheCollectorPass.php │ │ ├── CachePoolClearerPass.php │ │ ├── CachePoolPass.php │ │ └── CachePoolPrunerPass.php │ ├── DoctrineProvider.php │ ├── Exception │ │ ├── CacheException.php │ │ ├── InvalidArgumentException.php │ │ └── LogicException.php │ ├── LICENSE │ ├── LockRegistry.php │ ├── Marshaller │ │ ├── DefaultMarshaller.php │ │ ├── DeflateMarshaller.php │ │ ├── MarshallerInterface.php │ │ └── TagAwareMarshaller.php │ ├── PruneableInterface.php │ ├── Psr16Cache.php │ ├── README.md │ ├── ResettableInterface.php │ ├── Simple │ │ ├── AbstractCache.php │ │ ├── ApcuCache.php │ │ ├── ArrayCache.php │ │ ├── ChainCache.php │ │ ├── DoctrineCache.php │ │ ├── FilesystemCache.php │ │ ├── MemcachedCache.php │ │ ├── NullCache.php │ │ ├── PdoCache.php │ │ ├── PhpArrayCache.php │ │ ├── PhpFilesCache.php │ │ ├── Psr6Cache.php │ │ ├── RedisCache.php │ │ └── TraceableCache.php │ ├── Traits │ │ ├── AbstractAdapterTrait.php │ │ ├── AbstractTrait.php │ │ ├── ApcuTrait.php │ │ ├── ArrayTrait.php │ │ ├── ContractsTrait.php │ │ ├── DoctrineTrait.php │ │ ├── FilesystemCommonTrait.php │ │ ├── FilesystemTrait.php │ │ ├── MemcachedTrait.php │ │ ├── PdoTrait.php │ │ ├── PhpArrayTrait.php │ │ ├── PhpFilesTrait.php │ │ ├── ProxyTrait.php │ │ ├── RedisClusterNodeProxy.php │ │ ├── RedisClusterProxy.php │ │ ├── RedisProxy.php │ │ └── RedisTrait.php │ └── composer.json │ ├── deprecation-contracts │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── function.php │ ├── expression-language │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Compiler.php │ ├── Expression.php │ ├── ExpressionFunction.php │ ├── ExpressionFunctionProviderInterface.php │ ├── ExpressionLanguage.php │ ├── LICENSE │ ├── Lexer.php │ ├── Node │ │ ├── ArgumentsNode.php │ │ ├── ArrayNode.php │ │ ├── BinaryNode.php │ │ ├── ConditionalNode.php │ │ ├── ConstantNode.php │ │ ├── FunctionNode.php │ │ ├── GetAttrNode.php │ │ ├── NameNode.php │ │ ├── Node.php │ │ └── UnaryNode.php │ ├── ParsedExpression.php │ ├── Parser.php │ ├── ParserCache │ │ ├── ArrayParserCache.php │ │ ├── ParserCacheAdapter.php │ │ └── ParserCacheInterface.php │ ├── README.md │ ├── Resources │ │ └── bin │ │ │ └── generate_operator_regex.php │ ├── SerializedParsedExpression.php │ ├── SyntaxError.php │ ├── Tests │ │ ├── ExpressionFunctionTest.php │ │ ├── ExpressionLanguageTest.php │ │ ├── ExpressionTest.php │ │ ├── Fixtures │ │ │ └── TestProvider.php │ │ ├── LexerTest.php │ │ ├── Node │ │ │ ├── AbstractNodeTest.php │ │ │ ├── ArgumentsNodeTest.php │ │ │ ├── ArrayNodeTest.php │ │ │ ├── BinaryNodeTest.php │ │ │ ├── ConditionalNodeTest.php │ │ │ ├── ConstantNodeTest.php │ │ │ ├── FunctionNodeTest.php │ │ │ ├── GetAttrNodeTest.php │ │ │ ├── NameNodeTest.php │ │ │ ├── NodeTest.php │ │ │ └── UnaryNodeTest.php │ │ ├── ParsedExpressionTest.php │ │ ├── ParserCache │ │ │ └── ParserCacheAdapterTest.php │ │ └── ParserTest.php │ ├── Token.php │ ├── TokenStream.php │ ├── composer.json │ └── phpunit.xml.dist │ ├── polyfill-php73 │ ├── LICENSE │ ├── Php73.php │ ├── README.md │ ├── Resources │ │ └── stubs │ │ │ └── JsonException.php │ ├── bootstrap.php │ └── composer.json │ ├── polyfill-php80 │ ├── LICENSE │ ├── Php80.php │ ├── PhpToken.php │ ├── README.md │ ├── Resources │ │ └── stubs │ │ │ ├── Attribute.php │ │ │ ├── PhpToken.php │ │ │ ├── Stringable.php │ │ │ ├── UnhandledMatchError.php │ │ │ └── ValueError.php │ ├── bootstrap.php │ └── composer.json │ ├── service-contracts │ ├── .gitignore │ ├── Attribute │ │ ├── Required.php │ │ └── SubscribedService.php │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── ResetInterface.php │ ├── ServiceLocatorTrait.php │ ├── ServiceProviderInterface.php │ ├── ServiceSubscriberInterface.php │ ├── ServiceSubscriberTrait.php │ ├── Test │ │ └── ServiceLocatorTest.php │ └── composer.json │ └── var-exporter │ ├── CHANGELOG.md │ ├── Exception │ ├── ClassNotFoundException.php │ ├── ExceptionInterface.php │ └── NotInstantiableTypeException.php │ ├── Instantiator.php │ ├── Internal │ ├── Exporter.php │ ├── Hydrator.php │ ├── Reference.php │ ├── Registry.php │ └── Values.php │ ├── LICENSE │ ├── README.md │ ├── VarExporter.php │ └── composer.json ├── audon ├── README.md ├── audon.php ├── lang │ └── C │ │ └── messages.po └── templates │ └── admin.tpl ├── birdavatar ├── README.md ├── avatars │ ├── accessorie_1.png │ ├── accessorie_10.png │ ├── accessorie_11.png │ ├── accessorie_12.png │ ├── accessorie_13.png │ ├── accessorie_14.png │ ├── accessorie_15.png │ ├── accessorie_16.png │ ├── accessorie_17.png │ ├── accessorie_18.png │ ├── accessorie_19.png │ ├── accessorie_2.png │ ├── accessorie_20.png │ ├── accessorie_3.png │ ├── accessorie_4.png │ ├── accessorie_5.png │ ├── accessorie_6.png │ ├── accessorie_7.png │ ├── accessorie_8.png │ ├── accessorie_9.png │ ├── bec_1.png │ ├── bec_2.png │ ├── bec_3.png │ ├── bec_4.png │ ├── bec_5.png │ ├── bec_6.png │ ├── bec_7.png │ ├── bec_8.png │ ├── bec_9.png │ ├── body_1.png │ ├── body_2.png │ ├── body_3.png │ ├── body_4.png │ ├── body_5.png │ ├── body_6.png │ ├── body_7.png │ ├── body_8.png │ ├── body_9.png │ ├── eyes_1.png │ ├── eyes_2.png │ ├── eyes_3.png │ ├── eyes_4.png │ ├── eyes_5.png │ ├── eyes_6.png │ ├── eyes_7.png │ ├── eyes_8.png │ ├── eyes_9.png │ ├── hoop_1.png │ ├── hoop_10.png │ ├── hoop_2.png │ ├── hoop_3.png │ ├── hoop_4.png │ ├── hoop_5.png │ ├── hoop_6.png │ ├── hoop_7.png │ ├── hoop_8.png │ ├── hoop_9.png │ ├── tail_1.png │ ├── tail_2.png │ ├── tail_3.png │ ├── tail_4.png │ ├── tail_5.png │ ├── tail_6.png │ ├── tail_7.png │ ├── tail_8.png │ ├── tail_9.png │ ├── wing_1.png │ ├── wing_2.png │ ├── wing_3.png │ ├── wing_4.png │ ├── wing_5.png │ ├── wing_6.png │ ├── wing_7.png │ ├── wing_8.png │ └── wing_9.png ├── bird_src.ora ├── birdavatar.php ├── lang │ └── C │ │ └── messages.po └── templates │ └── settings.tpl ├── blackout ├── LICENSE ├── README.md ├── blackout.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── en-gb │ │ ├── messages.po │ │ └── strings.php │ ├── en-us │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── ja │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php └── templates │ └── admin.tpl ├── blockbot ├── blockbot.php ├── composer.json ├── composer.lock ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── bg │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── en-gb │ │ ├── messages.po │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ └── ru │ │ ├── messages.po │ │ └── strings.php ├── templates │ └── admin.tpl └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json │ └── jaybizzle │ └── crawler-detect │ ├── .github │ └── workflows │ │ ├── php-cs-fixer.yml │ │ └── test.yml │ ├── .php_cs.dist │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── export.php │ ├── raw │ ├── Crawlers.json │ ├── Crawlers.txt │ ├── Exclusions.json │ ├── Exclusions.txt │ ├── Headers.json │ └── Headers.txt │ └── src │ ├── CrawlerDetect.php │ └── Fixtures │ ├── AbstractProvider.php │ ├── Crawlers.php │ ├── Exclusions.php │ └── Headers.php ├── bluesky ├── README.md ├── bluesky.php ├── bluesky_feed.php ├── bluesky_notifications.php ├── bluesky_timeline.php ├── lang │ ├── C │ │ └── messages.po │ ├── de │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php └── templates │ ├── admin.tpl │ └── connector_settings.tpl ├── buglink ├── bug-x.gif ├── buglink.php └── lang │ ├── C │ └── messages.po │ ├── ar │ ├── messages.po │ └── strings.php │ ├── ca │ ├── messages.po │ └── strings.php │ ├── cs │ ├── messages.po │ └── strings.php │ ├── da-dk │ ├── messages.po │ └── strings.php │ ├── de │ ├── messages.po │ └── strings.php │ ├── eo │ └── strings.php │ ├── es │ ├── messages.po │ └── strings.php │ ├── fi-fi │ ├── messages.po │ └── strings.php │ ├── fr │ ├── messages.po │ └── strings.php │ ├── gd │ ├── messages.po │ └── strings.php │ ├── hu │ ├── messages.po │ └── strings.php │ ├── is │ ├── messages.po │ └── strings.php │ ├── it │ ├── messages.po │ └── strings.php │ ├── nb-no │ ├── messages.po │ └── strings.php │ ├── nl │ ├── messages.po │ └── strings.php │ ├── pl │ ├── messages.po │ └── strings.php │ ├── pt-br │ └── strings.php │ ├── ro │ ├── messages.po │ └── strings.php │ ├── ru │ ├── messages.po │ └── strings.php │ ├── sv │ ├── messages.po │ └── strings.php │ └── zh-cn │ ├── messages.po │ └── strings.php ├── calc └── calc.php ├── catavatar ├── README.md ├── avatars │ ├── accessorie_1.png │ ├── accessorie_10.png │ ├── accessorie_11.png │ ├── accessorie_12.png │ ├── accessorie_13.png │ ├── accessorie_14.png │ ├── accessorie_15.png │ ├── accessorie_16.png │ ├── accessorie_17.png │ ├── accessorie_18.png │ ├── accessorie_19.png │ ├── accessorie_2.png │ ├── accessorie_20.png │ ├── accessorie_3.png │ ├── accessorie_4.png │ ├── accessorie_5.png │ ├── accessorie_6.png │ ├── accessorie_7.png │ ├── accessorie_8.png │ ├── accessorie_9.png │ ├── body_1.png │ ├── body_10.png │ ├── body_11.png │ ├── body_12.png │ ├── body_13.png │ ├── body_14.png │ ├── body_15.png │ ├── body_2.png │ ├── body_3.png │ ├── body_4.png │ ├── body_5.png │ ├── body_6.png │ ├── body_7.png │ ├── body_8.png │ ├── body_9.png │ ├── eyes_1.png │ ├── eyes_10.png │ ├── eyes_11.png │ ├── eyes_12.png │ ├── eyes_13.png │ ├── eyes_14.png │ ├── eyes_15.png │ ├── eyes_2.png │ ├── eyes_3.png │ ├── eyes_4.png │ ├── eyes_5.png │ ├── eyes_6.png │ ├── eyes_7.png │ ├── eyes_8.png │ ├── eyes_9.png │ ├── fur_1.png │ ├── fur_10.png │ ├── fur_2.png │ ├── fur_3.png │ ├── fur_4.png │ ├── fur_5.png │ ├── fur_6.png │ ├── fur_7.png │ ├── fur_8.png │ ├── fur_9.png │ ├── mouth_1.png │ ├── mouth_10.png │ ├── mouth_2.png │ ├── mouth_3.png │ ├── mouth_4.png │ ├── mouth_5.png │ ├── mouth_6.png │ ├── mouth_7.png │ ├── mouth_8.png │ ├── mouth_9.png │ ├── zz_1.png │ ├── zz_2.png │ └── zz_bg.png ├── cat_src.ora ├── catavatar.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── en-gb │ │ ├── messages.po │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ └── sv │ │ ├── messages.po │ │ └── strings.php └── templates │ └── settings.tpl ├── circle_text ├── group_text.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php └── templates │ └── settings.tpl ├── cld ├── README.md └── cld.php ├── convert ├── UnitConvertor.php └── convert.php ├── cookienotice ├── README ├── cookienotice.css ├── cookienotice.js ├── cookienotice.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── en-gb │ │ ├── messages.po │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php └── templates │ ├── admin.tpl │ └── cookienotice.tpl ├── curweather ├── README.md ├── curweather.css ├── curweather.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php └── templates │ ├── admin.tpl │ ├── settings.tpl │ ├── widget-error.tpl │ └── widget.tpl ├── diaspora ├── Diaspora_Connection.php ├── diasphp.php ├── diaspora.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── en-gb │ │ ├── messages.po │ │ └── strings.php │ ├── en-us │ │ ├── messages.po │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php └── templates │ └── connector_settings.tpl ├── discourse ├── README ├── discourse.php ├── lang │ └── C │ │ └── messages.po └── templates │ └── connector_settings.tpl ├── dwpost ├── dwpost.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── en-gb │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php └── templates │ └── connector_settings.tpl ├── fancybox ├── .gitignore ├── CHANGELOG.md ├── README.md ├── asset │ └── fancybox │ │ ├── README.md │ │ ├── fancybox.config.js │ │ ├── jquery.fancybox.css │ │ ├── jquery.fancybox.js │ │ ├── jquery.fancybox.min.css │ │ └── jquery.fancybox.min.js ├── createrelease └── fancybox.php ├── forumdirectory ├── forumdirectory.php └── lang │ ├── C │ └── messages.po │ ├── ar │ ├── messages.po │ └── strings.php │ ├── ca │ ├── messages.po │ └── strings.php │ ├── cs │ ├── messages.po │ └── strings.php │ ├── da-dk │ ├── messages.po │ └── strings.php │ ├── de │ ├── messages.po │ └── strings.php │ ├── eo │ └── strings.php │ ├── es │ ├── messages.po │ └── strings.php │ ├── fi-fi │ ├── messages.po │ └── strings.php │ ├── fr │ ├── messages.po │ └── strings.php │ ├── hu │ ├── messages.po │ └── strings.php │ ├── is │ └── strings.php │ ├── it │ ├── messages.po │ └── strings.php │ ├── nb-no │ └── strings.php │ ├── nl │ ├── messages.po │ └── strings.php │ ├── pl │ ├── messages.po │ └── strings.php │ ├── pt-br │ ├── messages.po │ └── strings.php │ ├── ro │ ├── messages.po │ └── strings.php │ ├── ru │ ├── messages.po │ └── strings.php │ ├── sv │ ├── messages.po │ └── strings.php │ └── zh-cn │ └── strings.php ├── fromapp ├── fromapp.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── en-gb │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php └── templates │ └── settings.tpl ├── geocoordinates ├── geocoordinates.php └── templates │ └── admin.tpl ├── geonames ├── README.md ├── config │ └── geonames.config.php ├── geonames.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php └── templates │ └── settings.tpl ├── gnot ├── gnot.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php └── templates │ └── settings.tpl ├── googlemaps └── googlemaps.php ├── gravatar ├── README.md ├── config │ └── gravatar.config.php ├── gravatar.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php └── templates │ └── admin.tpl ├── group_text ├── group_text.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php └── templates │ └── settings.tpl ├── groupdirectory ├── groupdirectory.php └── lang │ ├── C │ └── messages.po │ ├── ar │ ├── messages.po │ └── strings.php │ ├── ca │ ├── messages.po │ └── strings.php │ ├── cs │ ├── messages.po │ └── strings.php │ ├── da-dk │ ├── messages.po │ └── strings.php │ ├── de │ ├── messages.po │ └── strings.php │ ├── eo │ └── strings.php │ ├── es │ ├── messages.po │ └── strings.php │ ├── fi-fi │ ├── messages.po │ └── strings.php │ ├── fr │ ├── messages.po │ └── strings.php │ ├── hu │ ├── messages.po │ └── strings.php │ ├── is │ └── strings.php │ ├── it │ ├── messages.po │ └── strings.php │ ├── nb-no │ └── strings.php │ ├── nl │ ├── messages.po │ └── strings.php │ ├── pl │ ├── messages.po │ └── strings.php │ ├── pt-br │ ├── messages.po │ └── strings.php │ ├── ro │ ├── messages.po │ └── strings.php │ ├── ru │ ├── messages.po │ └── strings.php │ ├── sv │ ├── messages.po │ └── strings.php │ └── zh-cn │ └── strings.php ├── highlightjs ├── asset │ ├── CHANGES.md │ ├── LICENSE │ ├── README.md │ ├── README.ru.md │ ├── highlight.pack.js │ └── styles │ │ ├── agate.css │ │ ├── androidstudio.css │ │ ├── arduino-light.css │ │ ├── arta.css │ │ ├── ascetic.css │ │ ├── atelier-cave-dark.css │ │ ├── atelier-cave-light.css │ │ ├── atelier-dune-dark.css │ │ ├── atelier-dune-light.css │ │ ├── atelier-estuary-dark.css │ │ ├── atelier-estuary-light.css │ │ ├── atelier-forest-dark.css │ │ ├── atelier-forest-light.css │ │ ├── atelier-heath-dark.css │ │ ├── atelier-heath-light.css │ │ ├── atelier-lakeside-dark.css │ │ ├── atelier-lakeside-light.css │ │ ├── atelier-plateau-dark.css │ │ ├── atelier-plateau-light.css │ │ ├── atelier-savanna-dark.css │ │ ├── atelier-savanna-light.css │ │ ├── atelier-seaside-dark.css │ │ ├── atelier-seaside-light.css │ │ ├── atelier-sulphurpool-dark.css │ │ ├── atelier-sulphurpool-light.css │ │ ├── atom-one-dark.css │ │ ├── atom-one-light.css │ │ ├── bootstrap.css │ │ ├── brown-paper.css │ │ ├── brown-papersq.png │ │ ├── codepen-embed.css │ │ ├── color-brewer.css │ │ ├── darcula.css │ │ ├── dark.css │ │ ├── darkula.css │ │ ├── default.css │ │ ├── docco.css │ │ ├── dracula.css │ │ ├── far.css │ │ ├── foundation.css │ │ ├── github-gist.css │ │ ├── github.css │ │ ├── googlecode.css │ │ ├── grayscale.css │ │ ├── gruvbox-dark.css │ │ ├── gruvbox-light.css │ │ ├── hopscotch.css │ │ ├── hybrid.css │ │ ├── idea.css │ │ ├── ir-black.css │ │ ├── kimbie.dark.css │ │ ├── kimbie.light.css │ │ ├── magula.css │ │ ├── mono-blue.css │ │ ├── monokai-sublime.css │ │ ├── monokai.css │ │ ├── obsidian.css │ │ ├── ocean.css │ │ ├── paraiso-dark.css │ │ ├── paraiso-light.css │ │ ├── pojoaque.css │ │ ├── pojoaque.jpg │ │ ├── purebasic.css │ │ ├── qtcreator_dark.css │ │ ├── qtcreator_light.css │ │ ├── railscasts.css │ │ ├── rainbow.css │ │ ├── routeros.css │ │ ├── school-book.css │ │ ├── school-book.png │ │ ├── solarized-dark.css │ │ ├── solarized-light.css │ │ ├── sunburst.css │ │ ├── tomorrow-night-blue.css │ │ ├── tomorrow-night-bright.css │ │ ├── tomorrow-night-eighties.css │ │ ├── tomorrow-night.css │ │ ├── tomorrow.css │ │ ├── vs.css │ │ ├── vs2015.css │ │ ├── xcode.css │ │ ├── xt256.css │ │ └── zenburn.css ├── highlightjs.js └── highlightjs.php ├── ifttt ├── README.md ├── ifttt.php ├── ifttt.png ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── en-gb │ │ ├── messages.po │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php └── templates │ └── connector_settings.tpl ├── ijpost ├── ijpost.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php └── templates │ └── connector_settings.tpl ├── impressum ├── LICENSE ├── README.md ├── config │ └── impressum.config.php ├── impressum.css ├── impressum.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── en-gb │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php └── templates │ └── admin.tpl ├── infiniteimprobabilitydrive ├── infiniteimprobabilitydrive.css ├── infiniteimprobabilitydrive.php └── lang │ ├── C │ └── messages.po │ ├── ar │ ├── messages.po │ └── strings.php │ ├── ca │ ├── messages.po │ └── strings.php │ ├── cs │ ├── messages.po │ └── strings.php │ ├── da-dk │ ├── messages.po │ └── strings.php │ ├── de │ ├── messages.po │ └── strings.php │ ├── eo │ └── strings.php │ ├── es │ ├── messages.po │ └── strings.php │ ├── fr │ ├── messages.po │ └── strings.php │ ├── hu │ ├── messages.po │ └── strings.php │ ├── is │ └── strings.php │ ├── it │ ├── messages.po │ └── strings.php │ ├── nb-no │ └── strings.php │ ├── nl │ ├── messages.po │ └── strings.php │ ├── pl │ ├── messages.po │ └── strings.php │ ├── pt-br │ ├── messages.po │ └── strings.php │ ├── ro │ ├── messages.po │ └── strings.php │ ├── ru │ ├── messages.po │ └── strings.php │ ├── sv │ ├── messages.po │ └── strings.php │ └── zh-cn │ └── strings.php ├── invidious ├── README.md ├── invidious.php ├── lang │ └── C │ │ └── messages.po └── templates │ ├── admin.tpl │ └── settings.tpl ├── irc ├── README.md ├── irc.css ├── irc.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── ja │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php └── templates │ ├── admin.tpl │ └── settings.tpl ├── js_upload ├── file-uploader │ ├── client │ │ ├── demo.htm │ │ ├── do-nothing.htm │ │ ├── fileuploader.css │ │ ├── fileuploader.js │ │ └── loading.gif │ ├── gpl-2.0.txt │ ├── license.txt │ ├── readme.md │ ├── server │ │ ├── OctetStreamReader.java │ │ ├── coldfusion │ │ │ ├── coldfusion.cfc │ │ │ ├── demo.cfm │ │ │ └── readme.txt │ │ ├── perl.cgi │ │ ├── php.php │ │ ├── readme.txt │ │ └── uploads │ │ │ └── .gitignore │ └── tests │ │ ├── action-acceptance.php │ │ ├── action-handler-queue-test.php │ │ ├── action-handler-test.php │ │ ├── action-slow-response.php │ │ ├── browser-bugs │ │ ├── safari-bug1.htm │ │ └── safari-bug2.htm │ │ ├── iframe-content-tests │ │ ├── application-javascript.php │ │ ├── application-json.php │ │ ├── header-404.php │ │ ├── somepage.php │ │ ├── text-html-large.php │ │ ├── text-html.php │ │ ├── text-javascript.php │ │ └── text-plain.php │ │ ├── jquery-1.4.2.min.js │ │ ├── jquery-ui │ │ ├── jquery-ui-1.8.4.custom.min.js │ │ └── ui-lightness │ │ │ ├── images │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ └── jquery-ui-1.8.4.custom.css │ │ ├── qunit │ │ ├── package.json │ │ ├── qunit │ │ │ ├── qunit.css │ │ │ └── qunit.js │ │ └── test │ │ │ ├── index.html │ │ │ ├── same.js │ │ │ └── test.js │ │ ├── sample-files │ │ ├── 1imagelonglonglonglonglonglongname.gif │ │ ├── 2larger.txt │ │ ├── 3empty.txt │ │ ├── 4text.txt │ │ ├── 5text.txt │ │ ├── 6text.txt │ │ ├── 7small.txt │ │ └── 8text.txt │ │ ├── separate-file-list.htm │ │ ├── test-acceptance.htm │ │ ├── test-drop-zone.htm │ │ ├── test-handler-queue.htm │ │ └── test-upload-handlers.htm ├── js_upload.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php └── templates │ └── js_upload.tpl ├── keycloakpassword ├── README.md ├── keycloakpassword.php ├── lang │ ├── C │ │ └── messages.po │ ├── de │ │ ├── messages.po │ │ └── strings.php │ └── hu │ │ ├── messages.po │ │ └── strings.php └── templates │ └── admin.tpl ├── krynn ├── krynn.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php └── templates │ └── settings.tpl ├── langfilter ├── LICENSE ├── README.md ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ ├── messagespo.po │ │ └── strings.php │ ├── en-gb │ │ ├── messages.po │ │ └── strings.php │ ├── en-us │ │ ├── messages.po │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── et │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── ja │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ ├── messages.po │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php ├── langfilter.php └── templates │ └── settings.tpl ├── ldapauth ├── README.md ├── config │ └── ldapauth.config.php └── ldapauth.php ├── leistungsschutzrecht ├── README.md └── leistungsschutzrecht.php ├── libertree ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php ├── libertree.php └── templates │ └── connector_settings.tpl ├── libravatar ├── README.md ├── Services │ └── Libravatar.php ├── config │ └── libravatar.config.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php ├── libravatar.php └── templates │ └── admin.tpl ├── ljpost ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php ├── livejournal.png ├── ljpost.css ├── ljpost.php └── templates │ └── connector_settings.tpl ├── mailstream ├── database.sql ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── en-gb │ │ ├── messages.po │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ └── sv │ │ ├── messages.po │ │ └── strings.php ├── mailstream.php ├── phpmailer │ ├── LICENSE │ ├── VERSION │ └── class.phpmailer.php └── templates │ ├── admin.tpl │ ├── mail.tpl │ └── settings.tpl ├── markdown ├── README ├── lang │ ├── C │ │ └── messages.po │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── en-gb │ │ ├── messages.po │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── gd │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ └── ru │ │ ├── messages.po │ │ └── strings.php ├── markdown.php └── templates │ └── settings.tpl ├── mastodoncustomemojis ├── README.md └── mastodoncustomemojis.php ├── mathjax ├── LICENSE ├── README.md ├── asset │ ├── .gitignore │ ├── .npmignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── MathJax.js │ ├── README.md │ ├── bower.json │ ├── composer.json │ ├── config │ │ ├── Safe.js │ │ ├── TeX-MML-AM_CHTML.js │ │ ├── default.js │ │ └── local │ │ │ └── local.js │ ├── extensions │ │ ├── AssistiveMML.js │ │ ├── CHTML-preview.js │ │ ├── FontWarnings.js │ │ ├── HTML-CSS │ │ │ └── handle-floats.js │ │ ├── HelpDialog.js │ │ ├── MatchWebFonts.js │ │ ├── MathEvents.js │ │ ├── MathML │ │ │ ├── content-mathml.js │ │ │ └── mml3.js │ │ ├── MathMenu.js │ │ ├── MathZoom.js │ │ ├── Safe.js │ │ ├── TeX │ │ │ ├── AMScd.js │ │ │ ├── AMSmath.js │ │ │ ├── AMSsymbols.js │ │ │ ├── HTML.js │ │ │ ├── action.js │ │ │ ├── autobold.js │ │ │ ├── autoload-all.js │ │ │ ├── bbox.js │ │ │ ├── begingroup.js │ │ │ ├── boldsymbol.js │ │ │ ├── cancel.js │ │ │ ├── color.js │ │ │ ├── enclose.js │ │ │ ├── extpfeil.js │ │ │ ├── mathchoice.js │ │ │ ├── mediawiki-texvc.js │ │ │ ├── mhchem.js │ │ │ ├── mhchem3 │ │ │ │ └── mhchem.js │ │ │ ├── newcommand.js │ │ │ ├── noErrors.js │ │ │ ├── noUndefined.js │ │ │ ├── unicode.js │ │ │ └── verb.js │ │ ├── a11y │ │ │ ├── accessibility-menu.js │ │ │ ├── auto-collapse.js │ │ │ ├── collapsible.js │ │ │ ├── explorer.js │ │ │ ├── invalid_keypress.mp3 │ │ │ ├── invalid_keypress.ogg │ │ │ ├── mathjax-sre.js │ │ │ ├── mathmaps │ │ │ │ ├── en │ │ │ │ │ ├── functions │ │ │ │ │ │ ├── algebra.js │ │ │ │ │ │ ├── elementary.js │ │ │ │ │ │ ├── hyperbolic.js │ │ │ │ │ │ └── trigonometry.js │ │ │ │ │ ├── symbols │ │ │ │ │ │ ├── greek-capital.js │ │ │ │ │ │ ├── greek-mathfonts-bold.js │ │ │ │ │ │ ├── greek-mathfonts-italic.js │ │ │ │ │ │ ├── greek-mathfonts-sans-serif-bold.js │ │ │ │ │ │ ├── greek-scripts.js │ │ │ │ │ │ ├── greek-small.js │ │ │ │ │ │ ├── greek-symbols.js │ │ │ │ │ │ ├── hebrew_letters.js │ │ │ │ │ │ ├── latin-lower-double-accent.js │ │ │ │ │ │ ├── latin-lower-normal.js │ │ │ │ │ │ ├── latin-lower-phonetic.js │ │ │ │ │ │ ├── latin-lower-single-accent.js │ │ │ │ │ │ ├── latin-mathfonts-bold-fraktur.js │ │ │ │ │ │ ├── latin-mathfonts-bold-script.js │ │ │ │ │ │ ├── latin-mathfonts-bold.js │ │ │ │ │ │ ├── latin-mathfonts-double-struck.js │ │ │ │ │ │ ├── latin-mathfonts-fraktur.js │ │ │ │ │ │ ├── latin-mathfonts-italic.js │ │ │ │ │ │ ├── latin-mathfonts-monospace.js │ │ │ │ │ │ ├── latin-mathfonts-sans-serif-bold.js │ │ │ │ │ │ ├── latin-mathfonts-sans-serif-italic.js │ │ │ │ │ │ ├── latin-mathfonts-sans-serif.js │ │ │ │ │ │ ├── latin-mathfonts-script.js │ │ │ │ │ │ ├── latin-rest.js │ │ │ │ │ │ ├── latin-upper-double-accent.js │ │ │ │ │ │ ├── latin-upper-normal.js │ │ │ │ │ │ ├── latin-upper-single-accent.js │ │ │ │ │ │ ├── math_angles.js │ │ │ │ │ │ ├── math_arrows.js │ │ │ │ │ │ ├── math_characters.js │ │ │ │ │ │ ├── math_delimiters.js │ │ │ │ │ │ ├── math_digits.js │ │ │ │ │ │ ├── math_geometry.js │ │ │ │ │ │ ├── math_harpoons.js │ │ │ │ │ │ ├── math_non_characters.js │ │ │ │ │ │ ├── math_symbols.js │ │ │ │ │ │ ├── math_whitespace.js │ │ │ │ │ │ └── other_stars.js │ │ │ │ │ └── units │ │ │ │ │ │ ├── energy.js │ │ │ │ │ │ ├── length.js │ │ │ │ │ │ ├── memory.js │ │ │ │ │ │ ├── other.js │ │ │ │ │ │ ├── speed.js │ │ │ │ │ │ ├── temperature.js │ │ │ │ │ │ ├── time.js │ │ │ │ │ │ ├── volume.js │ │ │ │ │ │ └── weight.js │ │ │ │ ├── es │ │ │ │ │ ├── functions │ │ │ │ │ │ ├── algebra.js │ │ │ │ │ │ ├── elementary.js │ │ │ │ │ │ ├── hyperbolic.js │ │ │ │ │ │ └── trigonometry.js │ │ │ │ │ ├── symbols │ │ │ │ │ │ ├── greek-capital.js │ │ │ │ │ │ ├── greek-mathfonts-bold.js │ │ │ │ │ │ ├── greek-mathfonts-italic.js │ │ │ │ │ │ ├── greek-mathfonts-sans-serif-bold.js │ │ │ │ │ │ ├── greek-scripts.js │ │ │ │ │ │ ├── greek-small.js │ │ │ │ │ │ ├── greek-symbols.js │ │ │ │ │ │ ├── hebrew_letters.js │ │ │ │ │ │ ├── latin-lower-double-accent.js │ │ │ │ │ │ ├── latin-lower-normal.js │ │ │ │ │ │ ├── latin-lower-phonetic.js │ │ │ │ │ │ ├── latin-lower-single-accent.js │ │ │ │ │ │ ├── latin-mathfonts-bold-fraktur.js │ │ │ │ │ │ ├── latin-mathfonts-bold-script.js │ │ │ │ │ │ ├── latin-mathfonts-bold.js │ │ │ │ │ │ ├── latin-mathfonts-double-struck.js │ │ │ │ │ │ ├── latin-mathfonts-fraktur.js │ │ │ │ │ │ ├── latin-mathfonts-italic.js │ │ │ │ │ │ ├── latin-mathfonts-monospace.js │ │ │ │ │ │ ├── latin-mathfonts-sans-serif-bold.js │ │ │ │ │ │ ├── latin-mathfonts-sans-serif-italic.js │ │ │ │ │ │ ├── latin-mathfonts-sans-serif.js │ │ │ │ │ │ ├── latin-mathfonts-script.js │ │ │ │ │ │ ├── latin-rest.js │ │ │ │ │ │ ├── latin-upper-double-accent.js │ │ │ │ │ │ ├── latin-upper-normal.js │ │ │ │ │ │ ├── latin-upper-single-accent.js │ │ │ │ │ │ ├── math_angles.js │ │ │ │ │ │ ├── math_arrows.js │ │ │ │ │ │ ├── math_characters.js │ │ │ │ │ │ ├── math_delimiters.js │ │ │ │ │ │ ├── math_digits.js │ │ │ │ │ │ ├── math_geometry.js │ │ │ │ │ │ ├── math_harpoons.js │ │ │ │ │ │ ├── math_non_characters.js │ │ │ │ │ │ ├── math_symbols.js │ │ │ │ │ │ ├── math_whitespace.js │ │ │ │ │ │ └── other_stars.js │ │ │ │ │ └── units │ │ │ │ │ │ ├── energy.js │ │ │ │ │ │ ├── length.js │ │ │ │ │ │ ├── memory.js │ │ │ │ │ │ ├── other.js │ │ │ │ │ │ ├── speed.js │ │ │ │ │ │ ├── temperature.js │ │ │ │ │ │ ├── time.js │ │ │ │ │ │ ├── volume.js │ │ │ │ │ │ └── weight.js │ │ │ │ └── mathmaps_ie.js │ │ │ ├── semantic-enrich.js │ │ │ └── wgxpath.install.js │ │ ├── asciimath2jax.js │ │ ├── fast-preview.js │ │ ├── jsMath2jax.js │ │ ├── mml2jax.js │ │ ├── tex2jax.js │ │ └── toMathML.js │ ├── fonts │ │ └── HTML-CSS │ │ │ └── TeX │ │ │ └── woff │ │ │ ├── MathJax_AMS-Regular.woff │ │ │ ├── MathJax_Caligraphic-Bold.woff │ │ │ ├── MathJax_Caligraphic-Regular.woff │ │ │ ├── MathJax_Fraktur-Bold.woff │ │ │ ├── MathJax_Fraktur-Regular.woff │ │ │ ├── MathJax_Main-Bold.woff │ │ │ ├── MathJax_Main-Italic.woff │ │ │ ├── MathJax_Main-Regular.woff │ │ │ ├── MathJax_Math-BoldItalic.woff │ │ │ ├── MathJax_Math-Italic.woff │ │ │ ├── MathJax_Math-Regular.woff │ │ │ ├── MathJax_SansSerif-Bold.woff │ │ │ ├── MathJax_SansSerif-Italic.woff │ │ │ ├── MathJax_SansSerif-Regular.woff │ │ │ ├── MathJax_Script-Regular.woff │ │ │ ├── MathJax_Size1-Regular.woff │ │ │ ├── MathJax_Size2-Regular.woff │ │ │ ├── MathJax_Size3-Regular.woff │ │ │ ├── MathJax_Size4-Regular.woff │ │ │ ├── MathJax_Typewriter-Regular.woff │ │ │ ├── MathJax_Vector-Bold.woff │ │ │ └── MathJax_Vector-Regular.woff │ ├── jax │ │ ├── element │ │ │ └── mml │ │ │ │ ├── jax.js │ │ │ │ └── optable │ │ │ │ ├── Arrows.js │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ ├── Dingbats.js │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ ├── GeometricShapes.js │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ ├── Latin1Supplement.js │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ ├── MathOperators.js │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ ├── MiscSymbolsAndArrows.js │ │ │ │ ├── MiscTechnical.js │ │ │ │ ├── SpacingModLetters.js │ │ │ │ ├── SuppMathOperators.js │ │ │ │ ├── SupplementalArrowsA.js │ │ │ │ └── SupplementalArrowsB.js │ │ ├── input │ │ │ ├── AsciiMath │ │ │ │ ├── config.js │ │ │ │ └── jax.js │ │ │ ├── MathML │ │ │ │ ├── config.js │ │ │ │ ├── entities │ │ │ │ │ ├── a.js │ │ │ │ │ ├── b.js │ │ │ │ │ ├── c.js │ │ │ │ │ ├── d.js │ │ │ │ │ ├── e.js │ │ │ │ │ ├── f.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── g.js │ │ │ │ │ ├── h.js │ │ │ │ │ ├── i.js │ │ │ │ │ ├── j.js │ │ │ │ │ ├── k.js │ │ │ │ │ ├── l.js │ │ │ │ │ ├── m.js │ │ │ │ │ ├── n.js │ │ │ │ │ ├── o.js │ │ │ │ │ ├── opf.js │ │ │ │ │ ├── p.js │ │ │ │ │ ├── q.js │ │ │ │ │ ├── r.js │ │ │ │ │ ├── s.js │ │ │ │ │ ├── scr.js │ │ │ │ │ ├── t.js │ │ │ │ │ ├── u.js │ │ │ │ │ ├── v.js │ │ │ │ │ ├── w.js │ │ │ │ │ ├── x.js │ │ │ │ │ ├── y.js │ │ │ │ │ └── z.js │ │ │ │ └── jax.js │ │ │ └── TeX │ │ │ │ ├── config.js │ │ │ │ └── jax.js │ │ └── output │ │ │ ├── CommonHTML │ │ │ ├── autoload │ │ │ │ ├── annotation-xml.js │ │ │ │ ├── maction.js │ │ │ │ ├── menclose.js │ │ │ │ ├── mglyph.js │ │ │ │ ├── mmultiscripts.js │ │ │ │ ├── ms.js │ │ │ │ ├── mtable.js │ │ │ │ └── multiline.js │ │ │ ├── config.js │ │ │ ├── fonts │ │ │ │ └── TeX │ │ │ │ │ ├── AMS-Regular.js │ │ │ │ │ ├── Caligraphic-Bold.js │ │ │ │ │ ├── Fraktur-Bold.js │ │ │ │ │ ├── Fraktur-Regular.js │ │ │ │ │ ├── Main-Bold.js │ │ │ │ │ ├── Math-BoldItalic.js │ │ │ │ │ ├── SansSerif-Bold.js │ │ │ │ │ ├── SansSerif-Italic.js │ │ │ │ │ ├── SansSerif-Regular.js │ │ │ │ │ ├── Script-Regular.js │ │ │ │ │ ├── Typewriter-Regular.js │ │ │ │ │ ├── fontdata-extra.js │ │ │ │ │ └── fontdata.js │ │ │ └── jax.js │ │ │ └── PreviewHTML │ │ │ ├── config.js │ │ │ └── jax.js │ ├── latest.js │ ├── localization │ │ ├── ar │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── ar.js │ │ ├── ast │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── ast.js │ │ ├── bcc │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── bcc.js │ │ ├── bg │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── bg.js │ │ ├── br │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── br.js │ │ ├── ca │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── ca.js │ │ ├── cdo │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── cdo.js │ │ ├── ce │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── ce.js │ │ ├── cs │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── cs.js │ │ ├── cy │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── cy.js │ │ ├── da │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── da.js │ │ ├── de │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── de.js │ │ ├── diq │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── diq.js │ │ ├── en │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── en.js │ │ ├── eo │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── eo.js │ │ ├── es │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── es.js │ │ ├── fa │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── fa.js │ │ ├── fi │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── fi.js │ │ ├── fr │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── fr.js │ │ ├── gl │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── gl.js │ │ ├── he │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── he.js │ │ ├── ia │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── ia.js │ │ ├── it │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── it.js │ │ ├── ja │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── ja.js │ │ ├── kn │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── kn.js │ │ ├── ko │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── ko.js │ │ ├── lb │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── lb.js │ │ ├── lki │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── lki.js │ │ ├── lt │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── lt.js │ │ ├── mk │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── mk.js │ │ ├── nl │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── nl.js │ │ ├── oc │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── oc.js │ │ ├── pl │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── pl.js │ │ ├── pt-br │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── pt-br.js │ │ ├── pt │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── pt.js │ │ ├── qqq │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── qqq.js │ │ ├── ru │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── ru.js │ │ ├── scn │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── scn.js │ │ ├── sco │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── sco.js │ │ ├── sk │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── sk.js │ │ ├── sl │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── sl.js │ │ ├── sv │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── sv.js │ │ ├── th │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── th.js │ │ ├── tr │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── tr.js │ │ ├── uk │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── uk.js │ │ ├── vi │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── vi.js │ │ ├── zh-hans │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── zh-hans.js │ │ └── zh-hant │ │ │ ├── FontWarnings.js │ │ │ ├── HTML-CSS.js │ │ │ ├── HelpDialog.js │ │ │ ├── MathML.js │ │ │ ├── MathMenu.js │ │ │ ├── TeX.js │ │ │ └── zh-hant.js │ └── package.json ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php ├── mathjax.js ├── mathjax.php └── templates │ └── settings.tpl ├── membersince ├── lang │ ├── C │ │ └── messages.po │ ├── ca │ │ └── strings.php │ ├── cs │ │ └── strings.php │ ├── de │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ └── strings.php │ ├── fr │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── pl │ │ └── strings.php │ ├── pt-br │ │ └── strings.php │ ├── ru │ │ └── strings.php │ ├── sv │ │ └── strings.php │ └── zh-cn │ │ └── strings.php └── membersince.php ├── monolog ├── README.md ├── composer.json ├── composer.lock ├── monolog.php ├── src │ ├── Factory │ │ └── MonologFactory.php │ └── Monolog │ │ ├── DevelopHandler.php │ │ └── IntrospectionProcessor.php ├── static │ └── dependencies.config.php └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json │ ├── monolog │ └── monolog │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE.md │ │ ├── composer.json │ │ └── src │ │ └── Monolog │ │ ├── Attribute │ │ └── AsMonologProcessor.php │ │ ├── DateTimeImmutable.php │ │ ├── ErrorHandler.php │ │ ├── Formatter │ │ ├── ChromePHPFormatter.php │ │ ├── ElasticaFormatter.php │ │ ├── ElasticsearchFormatter.php │ │ ├── FlowdockFormatter.php │ │ ├── FluentdFormatter.php │ │ ├── FormatterInterface.php │ │ ├── GelfMessageFormatter.php │ │ ├── GoogleCloudLoggingFormatter.php │ │ ├── HtmlFormatter.php │ │ ├── JsonFormatter.php │ │ ├── LineFormatter.php │ │ ├── LogglyFormatter.php │ │ ├── LogmaticFormatter.php │ │ ├── LogstashFormatter.php │ │ ├── MongoDBFormatter.php │ │ ├── NormalizerFormatter.php │ │ ├── ScalarFormatter.php │ │ └── WildfireFormatter.php │ │ ├── Handler │ │ ├── AbstractHandler.php │ │ ├── AbstractProcessingHandler.php │ │ ├── AbstractSyslogHandler.php │ │ ├── AmqpHandler.php │ │ ├── BrowserConsoleHandler.php │ │ ├── BufferHandler.php │ │ ├── ChromePHPHandler.php │ │ ├── CouchDBHandler.php │ │ ├── CubeHandler.php │ │ ├── Curl │ │ │ └── Util.php │ │ ├── DeduplicationHandler.php │ │ ├── DoctrineCouchDBHandler.php │ │ ├── DynamoDbHandler.php │ │ ├── ElasticaHandler.php │ │ ├── ElasticsearchHandler.php │ │ ├── ErrorLogHandler.php │ │ ├── FallbackGroupHandler.php │ │ ├── FilterHandler.php │ │ ├── FingersCrossed │ │ │ ├── ActivationStrategyInterface.php │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ └── ErrorLevelActivationStrategy.php │ │ ├── FingersCrossedHandler.php │ │ ├── FirePHPHandler.php │ │ ├── FleepHookHandler.php │ │ ├── FlowdockHandler.php │ │ ├── FormattableHandlerInterface.php │ │ ├── FormattableHandlerTrait.php │ │ ├── GelfHandler.php │ │ ├── GroupHandler.php │ │ ├── Handler.php │ │ ├── HandlerInterface.php │ │ ├── HandlerWrapper.php │ │ ├── IFTTTHandler.php │ │ ├── InsightOpsHandler.php │ │ ├── LogEntriesHandler.php │ │ ├── LogglyHandler.php │ │ ├── LogmaticHandler.php │ │ ├── MailHandler.php │ │ ├── MandrillHandler.php │ │ ├── MissingExtensionException.php │ │ ├── MongoDBHandler.php │ │ ├── NativeMailerHandler.php │ │ ├── NewRelicHandler.php │ │ ├── NoopHandler.php │ │ ├── NullHandler.php │ │ ├── OverflowHandler.php │ │ ├── PHPConsoleHandler.php │ │ ├── ProcessHandler.php │ │ ├── ProcessableHandlerInterface.php │ │ ├── ProcessableHandlerTrait.php │ │ ├── PsrHandler.php │ │ ├── PushoverHandler.php │ │ ├── RedisHandler.php │ │ ├── RedisPubSubHandler.php │ │ ├── RollbarHandler.php │ │ ├── RotatingFileHandler.php │ │ ├── SamplingHandler.php │ │ ├── SendGridHandler.php │ │ ├── Slack │ │ │ └── SlackRecord.php │ │ ├── SlackHandler.php │ │ ├── SlackWebhookHandler.php │ │ ├── SocketHandler.php │ │ ├── SqsHandler.php │ │ ├── StreamHandler.php │ │ ├── SwiftMailerHandler.php │ │ ├── SymfonyMailerHandler.php │ │ ├── SyslogHandler.php │ │ ├── SyslogUdp │ │ │ └── UdpSocket.php │ │ ├── SyslogUdpHandler.php │ │ ├── TelegramBotHandler.php │ │ ├── TestHandler.php │ │ ├── WebRequestRecognizerTrait.php │ │ ├── WhatFailureGroupHandler.php │ │ └── ZendMonitorHandler.php │ │ ├── LogRecord.php │ │ ├── Logger.php │ │ ├── Processor │ │ ├── GitProcessor.php │ │ ├── HostnameProcessor.php │ │ ├── IntrospectionProcessor.php │ │ ├── MemoryPeakUsageProcessor.php │ │ ├── MemoryProcessor.php │ │ ├── MemoryUsageProcessor.php │ │ ├── MercurialProcessor.php │ │ ├── ProcessIdProcessor.php │ │ ├── ProcessorInterface.php │ │ ├── PsrLogMessageProcessor.php │ │ ├── TagProcessor.php │ │ ├── UidProcessor.php │ │ └── WebProcessor.php │ │ ├── Registry.php │ │ ├── ResettableInterface.php │ │ ├── SignalHandler.php │ │ ├── Test │ │ └── TestCase.php │ │ └── Utils.php │ └── psr │ └── log │ ├── LICENSE │ ├── README.md │ └── composer.json ├── morechoice └── morechoice.php ├── morepokes └── morepokes.php ├── newmemberwidget ├── README.md ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── et │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── message.po │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ └── sv │ │ ├── messages.po │ │ └── strings.php ├── newmemberwidget.php └── templates │ └── admin.tpl ├── nitter ├── LICENSE ├── README.md ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ └── ja │ │ ├── messages.po │ │ └── strings.php ├── nitter.php └── templates │ └── admin.tpl ├── nominatim ├── nominatim.php └── templates │ └── admin.tpl ├── notifyall ├── NotifyAllEmail.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ └── sv │ │ ├── messages.po │ │ └── strings.php ├── notifyall.php └── templates │ └── notifyall_form.tpl ├── notimeline └── templates │ └── settings.tpl ├── nsfw ├── README ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── en-gb │ │ ├── messages.po │ │ └── strings.php │ ├── en-us │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php ├── nsfw.php └── templates │ └── settings.tpl ├── numfriends ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php ├── numfriends.php └── templates │ └── settings.tpl ├── openstreetmap ├── README.md ├── config │ └── openstreetmap.config.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php ├── openstreetmap.js ├── openstreetmap.php └── templates │ └── admin.tpl ├── opmlexport ├── README.md ├── lang │ └── C │ │ └── messages.po └── opmlexport.php ├── pageheader ├── README ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── en-gb │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php ├── pageheader.css ├── pageheader.php └── templates │ └── admin.tpl ├── phpmailer ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── config │ └── phpmailer.config.php ├── phpmailer.php └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json │ └── phpmailer │ └── phpmailer │ ├── .editorconfig │ ├── COMMITMENT │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── VERSION │ ├── composer.json │ ├── get_oauth_token.php │ ├── language │ ├── phpmailer.lang-af.php │ ├── phpmailer.lang-ar.php │ ├── phpmailer.lang-as.php │ ├── phpmailer.lang-az.php │ ├── phpmailer.lang-ba.php │ ├── phpmailer.lang-be.php │ ├── phpmailer.lang-bg.php │ ├── phpmailer.lang-bn.php │ ├── phpmailer.lang-ca.php │ ├── phpmailer.lang-cs.php │ ├── phpmailer.lang-da.php │ ├── phpmailer.lang-de.php │ ├── phpmailer.lang-el.php │ ├── phpmailer.lang-eo.php │ ├── phpmailer.lang-es.php │ ├── phpmailer.lang-et.php │ ├── phpmailer.lang-fa.php │ ├── phpmailer.lang-fi.php │ ├── phpmailer.lang-fo.php │ ├── phpmailer.lang-fr.php │ ├── phpmailer.lang-gl.php │ ├── phpmailer.lang-he.php │ ├── phpmailer.lang-hi.php │ ├── phpmailer.lang-hr.php │ ├── phpmailer.lang-hu.php │ ├── phpmailer.lang-hy.php │ ├── phpmailer.lang-id.php │ ├── phpmailer.lang-it.php │ ├── phpmailer.lang-ja.php │ ├── phpmailer.lang-ka.php │ ├── phpmailer.lang-ko.php │ ├── phpmailer.lang-lt.php │ ├── phpmailer.lang-lv.php │ ├── phpmailer.lang-mg.php │ ├── phpmailer.lang-mn.php │ ├── phpmailer.lang-ms.php │ ├── phpmailer.lang-nb.php │ ├── phpmailer.lang-nl.php │ ├── phpmailer.lang-pl.php │ ├── phpmailer.lang-pt.php │ ├── phpmailer.lang-pt_br.php │ ├── phpmailer.lang-ro.php │ ├── phpmailer.lang-ru.php │ ├── phpmailer.lang-si.php │ ├── phpmailer.lang-sk.php │ ├── phpmailer.lang-sl.php │ ├── phpmailer.lang-sr.php │ ├── phpmailer.lang-sr_latn.php │ ├── phpmailer.lang-sv.php │ ├── phpmailer.lang-tl.php │ ├── phpmailer.lang-tr.php │ ├── phpmailer.lang-uk.php │ ├── phpmailer.lang-vi.php │ ├── phpmailer.lang-zh.php │ └── phpmailer.lang-zh_cn.php │ └── src │ ├── DSNConfigurator.php │ ├── Exception.php │ ├── OAuth.php │ ├── OAuthTokenProvider.php │ ├── PHPMailer.php │ ├── POP3.php │ └── SMTP.php ├── piwik ├── LICENSE ├── README.md ├── config │ └── piwik.config.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── en-gb │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php ├── piwik.css ├── piwik.php └── templates │ └── admin.tpl ├── planets ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php ├── planets.php └── templates │ └── settings.tpl ├── pnut ├── LICENSE ├── README.md ├── lang │ └── C │ │ └── messages.po ├── lib │ ├── LICENSE │ ├── phpnut.php │ └── phpnutException.php ├── pnut.php ├── pnut.svg └── templates │ ├── admin.tpl │ └── connector_settings.tpl ├── public_server ├── README.md ├── config │ └── public_server.config.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php ├── public_server.php └── templates │ └── admin.tpl ├── pumpio ├── README.md ├── config │ └── pumpio.config.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ └── sv │ │ ├── messages.po │ │ └── strings.php ├── oauth │ ├── LICENSE │ ├── LICENSE.txt │ ├── http.php │ ├── oauth_client.php │ └── oauth_client_class.html ├── pumpio.php ├── pumpio_sync.php └── templates │ └── connector_settings.tpl ├── qcomment ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php ├── qcomment.js ├── qcomment.php └── templates │ └── settings.tpl ├── randplace ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── gd │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php ├── randplace.php └── templates │ └── settings.tpl ├── ratioed ├── RatioedPanel.php ├── ratioed.php └── templates │ ├── help.tpl │ └── ratioed.tpl ├── rendertime ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php ├── rendertime.php └── templates │ └── admin.tpl ├── s3_storage ├── composer.json ├── composer.lock ├── lang │ └── C │ │ └── messages.po ├── s3_storage.php ├── src │ ├── S3Client.php │ └── S3Config.php └── vendor │ ├── akeeba │ └── s3 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── minitest │ │ ├── NOTES.md │ │ ├── Test │ │ │ ├── AbstractTest.php │ │ │ ├── BigFiles.php │ │ │ ├── BucketLocation.php │ │ │ ├── BucketsList.php │ │ │ ├── HeadObject.php │ │ │ ├── ListFiles.php │ │ │ ├── ListThousandsOfFiles.php │ │ │ ├── Multipart.php │ │ │ ├── SignedURLs.php │ │ │ ├── SingleSmallFile.php │ │ │ ├── SmallFiles.php │ │ │ ├── SmallFilesNoDelete.php │ │ │ ├── SmallFilesOnlyUpload.php │ │ │ ├── SmallInlineFiles.php │ │ │ ├── SmallInlineFilesNoDelete.php │ │ │ ├── SmallInlineFilesOnlyUpload.php │ │ │ ├── SmallInlineXMLFiles.php │ │ │ └── StorageClasses.php │ │ ├── config.dist.php │ │ └── minitest.php │ │ └── src │ │ ├── Acl.php │ │ ├── Configuration.php │ │ ├── Connector.php │ │ ├── Exception │ │ ├── CannotDeleteFile.php │ │ ├── CannotGetBucket.php │ │ ├── CannotGetFile.php │ │ ├── CannotListBuckets.php │ │ ├── CannotOpenFileForRead.php │ │ ├── CannotOpenFileForWrite.php │ │ ├── CannotPutFile.php │ │ ├── ConfigurationError.php │ │ ├── InvalidAccessKey.php │ │ ├── InvalidBody.php │ │ ├── InvalidEndpoint.php │ │ ├── InvalidFilePointer.php │ │ ├── InvalidRegion.php │ │ ├── InvalidSecretKey.php │ │ ├── InvalidSignatureMethod.php │ │ └── PropertyNotFound.php │ │ ├── Input.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Response │ │ └── Error.php │ │ ├── Signature.php │ │ ├── Signature │ │ ├── V2.php │ │ └── V4.php │ │ ├── StorageClass.php │ │ └── aliasing.php │ ├── autoload.php │ └── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json ├── saml ├── README.md ├── composer.json ├── composer.lock ├── lang │ ├── C │ │ └── messages.po │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ └── pl │ │ ├── messages.po │ │ └── strings.php ├── saml.php ├── templates │ └── admin.tpl └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php │ ├── onelogin │ └── php-saml │ │ ├── .github │ │ └── workflows │ │ │ └── php-package.yml │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _toolkit_loader.php │ │ ├── advanced_settings_example.php │ │ ├── certs │ │ └── README │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── settings_example.php │ │ └── src │ │ └── Saml2 │ │ ├── Auth.php │ │ ├── AuthnRequest.php │ │ ├── Constants.php │ │ ├── Error.php │ │ ├── IdPMetadataParser.php │ │ ├── LogoutRequest.php │ │ ├── LogoutResponse.php │ │ ├── Metadata.php │ │ ├── Response.php │ │ ├── Settings.php │ │ ├── Utils.php │ │ ├── ValidationError.php │ │ ├── schemas │ │ ├── saml-schema-assertion-2.0.xsd │ │ ├── saml-schema-authn-context-2.0.xsd │ │ ├── saml-schema-authn-context-types-2.0.xsd │ │ ├── saml-schema-metadata-2.0.xsd │ │ ├── saml-schema-protocol-2.0.xsd │ │ ├── sstc-metadata-attr.xsd │ │ ├── sstc-saml-attribute-ext.xsd │ │ ├── sstc-saml-metadata-algsupport-v1.0.xsd │ │ ├── sstc-saml-metadata-ui-v1.0.xsd │ │ ├── xenc-schema.xsd │ │ ├── xml.xsd │ │ └── xmldsig-core-schema.xsd │ │ └── version.json │ └── robrichards │ └── xmlseclibs │ ├── CHANGELOG.txt │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── src │ ├── Utils │ │ └── XPath.php │ ├── XMLSecEnc.php │ ├── XMLSecurityDSig.php │ └── XMLSecurityKey.php │ └── xmlseclibs.php ├── securemail ├── README.md ├── SecureTestEmail.php ├── composer.json ├── composer.lock ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── et │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php ├── securemail.php ├── templates │ └── settings.tpl └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json │ ├── paragonie │ └── constant_time_encoding │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Base32.php │ │ ├── Base32Hex.php │ │ ├── Base64.php │ │ ├── Base64DotSlash.php │ │ ├── Base64DotSlashOrdered.php │ │ ├── Base64UrlSafe.php │ │ ├── Binary.php │ │ ├── EncoderInterface.php │ │ ├── Encoding.php │ │ ├── Hex.php │ │ └── RFC4648.php │ ├── phpseclib │ └── phpseclib │ │ ├── AUTHORS │ │ ├── BACKERS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── phpseclib │ │ ├── Common │ │ └── Functions │ │ │ └── Strings.php │ │ ├── Crypt │ │ ├── AES.php │ │ ├── Blowfish.php │ │ ├── ChaCha20.php │ │ ├── Common │ │ │ ├── AsymmetricKey.php │ │ │ ├── BlockCipher.php │ │ │ ├── Formats │ │ │ │ ├── Keys │ │ │ │ │ ├── JWK.php │ │ │ │ │ ├── OpenSSH.php │ │ │ │ │ ├── PKCS.php │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ ├── PKCS8.php │ │ │ │ │ └── PuTTY.php │ │ │ │ └── Signature │ │ │ │ │ └── Raw.php │ │ │ ├── PrivateKey.php │ │ │ ├── PublicKey.php │ │ │ ├── StreamCipher.php │ │ │ ├── SymmetricKey.php │ │ │ └── Traits │ │ │ │ ├── Fingerprint.php │ │ │ │ └── PasswordProtected.php │ │ ├── DES.php │ │ ├── DH.php │ │ ├── DH │ │ │ ├── Formats │ │ │ │ └── Keys │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ └── PKCS8.php │ │ │ ├── Parameters.php │ │ │ ├── PrivateKey.php │ │ │ └── PublicKey.php │ │ ├── DSA.php │ │ ├── DSA │ │ │ ├── Formats │ │ │ │ ├── Keys │ │ │ │ │ ├── OpenSSH.php │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ ├── PKCS8.php │ │ │ │ │ ├── PuTTY.php │ │ │ │ │ ├── Raw.php │ │ │ │ │ └── XML.php │ │ │ │ └── Signature │ │ │ │ │ ├── ASN1.php │ │ │ │ │ ├── Raw.php │ │ │ │ │ └── SSH2.php │ │ │ ├── Parameters.php │ │ │ ├── PrivateKey.php │ │ │ └── PublicKey.php │ │ ├── EC.php │ │ ├── EC │ │ │ ├── BaseCurves │ │ │ │ ├── Base.php │ │ │ │ ├── Binary.php │ │ │ │ ├── KoblitzPrime.php │ │ │ │ ├── Montgomery.php │ │ │ │ ├── Prime.php │ │ │ │ └── TwistedEdwards.php │ │ │ ├── Curves │ │ │ │ ├── Curve25519.php │ │ │ │ ├── Curve448.php │ │ │ │ ├── Ed25519.php │ │ │ │ ├── Ed448.php │ │ │ │ ├── brainpoolP160r1.php │ │ │ │ ├── brainpoolP160t1.php │ │ │ │ ├── brainpoolP192r1.php │ │ │ │ ├── brainpoolP192t1.php │ │ │ │ ├── brainpoolP224r1.php │ │ │ │ ├── brainpoolP224t1.php │ │ │ │ ├── brainpoolP256r1.php │ │ │ │ ├── brainpoolP256t1.php │ │ │ │ ├── brainpoolP320r1.php │ │ │ │ ├── brainpoolP320t1.php │ │ │ │ ├── brainpoolP384r1.php │ │ │ │ ├── brainpoolP384t1.php │ │ │ │ ├── brainpoolP512r1.php │ │ │ │ ├── brainpoolP512t1.php │ │ │ │ ├── nistb233.php │ │ │ │ ├── nistb409.php │ │ │ │ ├── nistk163.php │ │ │ │ ├── nistk233.php │ │ │ │ ├── nistk283.php │ │ │ │ ├── nistk409.php │ │ │ │ ├── nistp192.php │ │ │ │ ├── nistp224.php │ │ │ │ ├── nistp256.php │ │ │ │ ├── nistp384.php │ │ │ │ ├── nistp521.php │ │ │ │ ├── nistt571.php │ │ │ │ ├── prime192v1.php │ │ │ │ ├── prime192v2.php │ │ │ │ ├── prime192v3.php │ │ │ │ ├── prime239v1.php │ │ │ │ ├── prime239v2.php │ │ │ │ ├── prime239v3.php │ │ │ │ ├── prime256v1.php │ │ │ │ ├── secp112r1.php │ │ │ │ ├── secp112r2.php │ │ │ │ ├── secp128r1.php │ │ │ │ ├── secp128r2.php │ │ │ │ ├── secp160k1.php │ │ │ │ ├── secp160r1.php │ │ │ │ ├── secp160r2.php │ │ │ │ ├── secp192k1.php │ │ │ │ ├── secp192r1.php │ │ │ │ ├── secp224k1.php │ │ │ │ ├── secp224r1.php │ │ │ │ ├── secp256k1.php │ │ │ │ ├── secp256r1.php │ │ │ │ ├── secp384r1.php │ │ │ │ ├── secp521r1.php │ │ │ │ ├── sect113r1.php │ │ │ │ ├── sect113r2.php │ │ │ │ ├── sect131r1.php │ │ │ │ ├── sect131r2.php │ │ │ │ ├── sect163k1.php │ │ │ │ ├── sect163r1.php │ │ │ │ ├── sect163r2.php │ │ │ │ ├── sect193r1.php │ │ │ │ ├── sect193r2.php │ │ │ │ ├── sect233k1.php │ │ │ │ ├── sect233r1.php │ │ │ │ ├── sect239k1.php │ │ │ │ ├── sect283k1.php │ │ │ │ ├── sect283r1.php │ │ │ │ ├── sect409k1.php │ │ │ │ ├── sect409r1.php │ │ │ │ ├── sect571k1.php │ │ │ │ └── sect571r1.php │ │ │ ├── Formats │ │ │ │ ├── Keys │ │ │ │ │ ├── Common.php │ │ │ │ │ ├── JWK.php │ │ │ │ │ ├── MontgomeryPrivate.php │ │ │ │ │ ├── MontgomeryPublic.php │ │ │ │ │ ├── OpenSSH.php │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ ├── PKCS8.php │ │ │ │ │ ├── PuTTY.php │ │ │ │ │ ├── XML.php │ │ │ │ │ └── libsodium.php │ │ │ │ └── Signature │ │ │ │ │ ├── ASN1.php │ │ │ │ │ ├── IEEE.php │ │ │ │ │ ├── Raw.php │ │ │ │ │ └── SSH2.php │ │ │ ├── Parameters.php │ │ │ ├── PrivateKey.php │ │ │ └── PublicKey.php │ │ ├── Hash.php │ │ ├── PublicKeyLoader.php │ │ ├── RC2.php │ │ ├── RC4.php │ │ ├── RSA.php │ │ ├── RSA │ │ │ ├── Formats │ │ │ │ └── Keys │ │ │ │ │ ├── JWK.php │ │ │ │ │ ├── MSBLOB.php │ │ │ │ │ ├── OpenSSH.php │ │ │ │ │ ├── PKCS1.php │ │ │ │ │ ├── PKCS8.php │ │ │ │ │ ├── PSS.php │ │ │ │ │ ├── PuTTY.php │ │ │ │ │ ├── Raw.php │ │ │ │ │ └── XML.php │ │ │ ├── PrivateKey.php │ │ │ └── PublicKey.php │ │ ├── Random.php │ │ ├── Rijndael.php │ │ ├── Salsa20.php │ │ ├── TripleDES.php │ │ └── Twofish.php │ │ ├── Exception │ │ ├── BadConfigurationException.php │ │ ├── BadDecryptionException.php │ │ ├── BadModeException.php │ │ ├── ConnectionClosedException.php │ │ ├── FileNotFoundException.php │ │ ├── InconsistentSetupException.php │ │ ├── InsufficientSetupException.php │ │ ├── NoKeyLoadedException.php │ │ ├── NoSupportedAlgorithmsException.php │ │ ├── UnableToConnectException.php │ │ ├── UnsupportedAlgorithmException.php │ │ ├── UnsupportedCurveException.php │ │ ├── UnsupportedFormatException.php │ │ └── UnsupportedOperationException.php │ │ ├── File │ │ ├── ANSI.php │ │ ├── ASN1.php │ │ ├── ASN1 │ │ │ ├── Element.php │ │ │ └── Maps │ │ │ │ ├── AccessDescription.php │ │ │ │ ├── AdministrationDomainName.php │ │ │ │ ├── AlgorithmIdentifier.php │ │ │ │ ├── AnotherName.php │ │ │ │ ├── Attribute.php │ │ │ │ ├── AttributeType.php │ │ │ │ ├── AttributeTypeAndValue.php │ │ │ │ ├── AttributeValue.php │ │ │ │ ├── Attributes.php │ │ │ │ ├── AuthorityInfoAccessSyntax.php │ │ │ │ ├── AuthorityKeyIdentifier.php │ │ │ │ ├── BaseDistance.php │ │ │ │ ├── BasicConstraints.php │ │ │ │ ├── BuiltInDomainDefinedAttribute.php │ │ │ │ ├── BuiltInDomainDefinedAttributes.php │ │ │ │ ├── BuiltInStandardAttributes.php │ │ │ │ ├── CPSuri.php │ │ │ │ ├── CRLDistributionPoints.php │ │ │ │ ├── CRLNumber.php │ │ │ │ ├── CRLReason.php │ │ │ │ ├── CertPolicyId.php │ │ │ │ ├── Certificate.php │ │ │ │ ├── CertificateIssuer.php │ │ │ │ ├── CertificateList.php │ │ │ │ ├── CertificatePolicies.php │ │ │ │ ├── CertificateSerialNumber.php │ │ │ │ ├── CertificationRequest.php │ │ │ │ ├── CertificationRequestInfo.php │ │ │ │ ├── Characteristic_two.php │ │ │ │ ├── CountryName.php │ │ │ │ ├── Curve.php │ │ │ │ ├── DHParameter.php │ │ │ │ ├── DSAParams.php │ │ │ │ ├── DSAPrivateKey.php │ │ │ │ ├── DSAPublicKey.php │ │ │ │ ├── DigestInfo.php │ │ │ │ ├── DirectoryString.php │ │ │ │ ├── DisplayText.php │ │ │ │ ├── DistributionPoint.php │ │ │ │ ├── DistributionPointName.php │ │ │ │ ├── DssSigValue.php │ │ │ │ ├── ECParameters.php │ │ │ │ ├── ECPoint.php │ │ │ │ ├── ECPrivateKey.php │ │ │ │ ├── EDIPartyName.php │ │ │ │ ├── EcdsaSigValue.php │ │ │ │ ├── EncryptedData.php │ │ │ │ ├── EncryptedPrivateKeyInfo.php │ │ │ │ ├── ExtKeyUsageSyntax.php │ │ │ │ ├── Extension.php │ │ │ │ ├── ExtensionAttribute.php │ │ │ │ ├── ExtensionAttributes.php │ │ │ │ ├── Extensions.php │ │ │ │ ├── FieldElement.php │ │ │ │ ├── FieldID.php │ │ │ │ ├── GeneralName.php │ │ │ │ ├── GeneralNames.php │ │ │ │ ├── GeneralSubtree.php │ │ │ │ ├── GeneralSubtrees.php │ │ │ │ ├── HashAlgorithm.php │ │ │ │ ├── HoldInstructionCode.php │ │ │ │ ├── InvalidityDate.php │ │ │ │ ├── IssuerAltName.php │ │ │ │ ├── IssuingDistributionPoint.php │ │ │ │ ├── KeyIdentifier.php │ │ │ │ ├── KeyPurposeId.php │ │ │ │ ├── KeyUsage.php │ │ │ │ ├── MaskGenAlgorithm.php │ │ │ │ ├── Name.php │ │ │ │ ├── NameConstraints.php │ │ │ │ ├── NetworkAddress.php │ │ │ │ ├── NoticeReference.php │ │ │ │ ├── NumericUserIdentifier.php │ │ │ │ ├── ORAddress.php │ │ │ │ ├── OneAsymmetricKey.php │ │ │ │ ├── OrganizationName.php │ │ │ │ ├── OrganizationalUnitNames.php │ │ │ │ ├── OtherPrimeInfo.php │ │ │ │ ├── OtherPrimeInfos.php │ │ │ │ ├── PBEParameter.php │ │ │ │ ├── PBES2params.php │ │ │ │ ├── PBKDF2params.php │ │ │ │ ├── PBMAC1params.php │ │ │ │ ├── PKCS9String.php │ │ │ │ ├── Pentanomial.php │ │ │ │ ├── PersonalName.php │ │ │ │ ├── PolicyInformation.php │ │ │ │ ├── PolicyMappings.php │ │ │ │ ├── PolicyQualifierId.php │ │ │ │ ├── PolicyQualifierInfo.php │ │ │ │ ├── PostalAddress.php │ │ │ │ ├── Prime_p.php │ │ │ │ ├── PrivateDomainName.php │ │ │ │ ├── PrivateKey.php │ │ │ │ ├── PrivateKeyInfo.php │ │ │ │ ├── PrivateKeyUsagePeriod.php │ │ │ │ ├── PublicKey.php │ │ │ │ ├── PublicKeyAndChallenge.php │ │ │ │ ├── PublicKeyInfo.php │ │ │ │ ├── RC2CBCParameter.php │ │ │ │ ├── RDNSequence.php │ │ │ │ ├── RSAPrivateKey.php │ │ │ │ ├── RSAPublicKey.php │ │ │ │ ├── RSASSA_PSS_params.php │ │ │ │ ├── ReasonFlags.php │ │ │ │ ├── RelativeDistinguishedName.php │ │ │ │ ├── RevokedCertificate.php │ │ │ │ ├── SignedPublicKeyAndChallenge.php │ │ │ │ ├── SpecifiedECDomain.php │ │ │ │ ├── SubjectAltName.php │ │ │ │ ├── SubjectDirectoryAttributes.php │ │ │ │ ├── SubjectInfoAccessSyntax.php │ │ │ │ ├── SubjectPublicKeyInfo.php │ │ │ │ ├── TBSCertList.php │ │ │ │ ├── TBSCertificate.php │ │ │ │ ├── TerminalIdentifier.php │ │ │ │ ├── Time.php │ │ │ │ ├── Trinomial.php │ │ │ │ ├── UniqueIdentifier.php │ │ │ │ ├── UserNotice.php │ │ │ │ ├── Validity.php │ │ │ │ ├── netscape_ca_policy_url.php │ │ │ │ ├── netscape_cert_type.php │ │ │ │ └── netscape_comment.php │ │ └── X509.php │ │ ├── Math │ │ ├── BigInteger.php │ │ ├── BigInteger │ │ │ └── Engines │ │ │ │ ├── BCMath.php │ │ │ │ ├── BCMath │ │ │ │ ├── Base.php │ │ │ │ ├── BuiltIn.php │ │ │ │ ├── DefaultEngine.php │ │ │ │ ├── OpenSSL.php │ │ │ │ └── Reductions │ │ │ │ │ ├── Barrett.php │ │ │ │ │ └── EvalBarrett.php │ │ │ │ ├── Engine.php │ │ │ │ ├── GMP.php │ │ │ │ ├── GMP │ │ │ │ └── DefaultEngine.php │ │ │ │ ├── OpenSSL.php │ │ │ │ ├── PHP.php │ │ │ │ ├── PHP │ │ │ │ ├── Base.php │ │ │ │ ├── DefaultEngine.php │ │ │ │ ├── Montgomery.php │ │ │ │ ├── OpenSSL.php │ │ │ │ └── Reductions │ │ │ │ │ ├── Barrett.php │ │ │ │ │ ├── Classic.php │ │ │ │ │ ├── EvalBarrett.php │ │ │ │ │ ├── Montgomery.php │ │ │ │ │ ├── MontgomeryMult.php │ │ │ │ │ └── PowerOfTwo.php │ │ │ │ ├── PHP32.php │ │ │ │ └── PHP64.php │ │ ├── BinaryField.php │ │ ├── BinaryField │ │ │ └── Integer.php │ │ ├── Common │ │ │ ├── FiniteField.php │ │ │ └── FiniteField │ │ │ │ └── Integer.php │ │ ├── PrimeField.php │ │ └── PrimeField │ │ │ └── Integer.php │ │ ├── Net │ │ ├── SFTP.php │ │ ├── SFTP │ │ │ └── Stream.php │ │ └── SSH2.php │ │ ├── System │ │ └── SSH │ │ │ ├── Agent.php │ │ │ ├── Agent │ │ │ └── Identity.php │ │ │ └── Common │ │ │ └── Traits │ │ │ └── ReadBytes.php │ │ ├── bootstrap.php │ │ └── openssl.cnf │ └── singpolyma │ └── openpgp-php │ ├── .github │ └── FUNDING.yml │ ├── .gitignore │ ├── .travis.dhall │ ├── .travis.yml │ ├── AUTHORS │ ├── Doxyfile │ ├── README │ ├── README.md │ ├── UNLICENSE │ ├── VERSION │ ├── composer.json │ ├── examples │ ├── README.md │ ├── armorEncryptSignCompress.php │ ├── clearsign.php │ ├── deASCIIdeCrypt.php │ ├── encryptDecrypt.php │ ├── keygen.php │ ├── keygenEncrypted.php │ ├── keygenSubkeys.php │ ├── sign.php │ └── verify.php │ ├── lib │ ├── openpgp.php │ ├── openpgp_crypt_rsa.php │ ├── openpgp_crypt_symmetric.php │ ├── openpgp_mcrypt_wrapper.php │ ├── openpgp_openssl_wrapper.php │ └── openpgp_sodium.php │ ├── phpunit.xml │ └── tests │ ├── bootstrap.php │ ├── data │ ├── 000001-006.public_key │ ├── 000002-013.user_id │ ├── 000003-002.sig │ ├── 000004-012.ring_trust │ ├── 000005-002.sig │ ├── 000006-012.ring_trust │ ├── 000007-002.sig │ ├── 000008-012.ring_trust │ ├── 000009-002.sig │ ├── 000010-012.ring_trust │ ├── 000011-002.sig │ ├── 000012-012.ring_trust │ ├── 000013-014.public_subkey │ ├── 000014-002.sig │ ├── 000015-012.ring_trust │ ├── 000016-006.public_key │ ├── 000017-002.sig │ ├── 000018-012.ring_trust │ ├── 000019-013.user_id │ ├── 000020-002.sig │ ├── 000021-012.ring_trust │ ├── 000022-002.sig │ ├── 000023-012.ring_trust │ ├── 000024-014.public_subkey │ ├── 000025-002.sig │ ├── 000026-012.ring_trust │ ├── 000027-006.public_key │ ├── 000028-002.sig │ ├── 000029-012.ring_trust │ ├── 000030-013.user_id │ ├── 000031-002.sig │ ├── 000032-012.ring_trust │ ├── 000033-002.sig │ ├── 000034-012.ring_trust │ ├── 000035-006.public_key │ ├── 000036-013.user_id │ ├── 000037-002.sig │ ├── 000038-012.ring_trust │ ├── 000039-002.sig │ ├── 000040-012.ring_trust │ ├── 000041-017.attribute │ ├── 000042-002.sig │ ├── 000043-012.ring_trust │ ├── 000044-014.public_subkey │ ├── 000045-002.sig │ ├── 000046-012.ring_trust │ ├── 000047-005.secret_key │ ├── 000048-013.user_id │ ├── 000049-002.sig │ ├── 000050-012.ring_trust │ ├── 000051-007.secret_subkey │ ├── 000052-002.sig │ ├── 000053-012.ring_trust │ ├── 000054-005.secret_key │ ├── 000055-002.sig │ ├── 000056-012.ring_trust │ ├── 000057-013.user_id │ ├── 000058-002.sig │ ├── 000059-012.ring_trust │ ├── 000060-007.secret_subkey │ ├── 000061-002.sig │ ├── 000062-012.ring_trust │ ├── 000063-005.secret_key │ ├── 000064-002.sig │ ├── 000065-012.ring_trust │ ├── 000066-013.user_id │ ├── 000067-002.sig │ ├── 000068-012.ring_trust │ ├── 000069-005.secret_key │ ├── 000070-013.user_id │ ├── 000071-002.sig │ ├── 000072-012.ring_trust │ ├── 000073-017.attribute │ ├── 000074-002.sig │ ├── 000075-012.ring_trust │ ├── 000076-007.secret_subkey │ ├── 000077-002.sig │ ├── 000078-012.ring_trust │ ├── 000079-002.sig │ ├── 000080-006.public_key │ ├── 000081-002.sig │ ├── 000082-006.public_key │ ├── 000083-002.sig │ ├── 002182-002.sig │ ├── compressedsig-bzip2.gpg │ ├── compressedsig-zlib.gpg │ ├── compressedsig.gpg │ ├── ed25519.public_key │ ├── ed25519.secret_key │ ├── ed25519.sig │ ├── encryptedSecretKey.gpg │ ├── hello.gpg │ ├── helloKey.gpg │ ├── onepass_sig │ ├── pubring.gpg │ ├── secring.gpg │ ├── symmetric-3des.gpg │ ├── symmetric-aes.gpg │ ├── symmetric-blowfish.gpg │ ├── symmetric-cast5.gpg │ ├── symmetric-no-mdc.gpg │ ├── symmetric-twofish.gpg │ ├── symmetric-with-session-key.gpg │ ├── symmetrically_encrypted │ ├── uncompressed-ops-dsa-sha384.txt.gpg │ ├── uncompressed-ops-dsa.gpg │ └── uncompressed-ops-rsa.gpg │ ├── phpseclib_suite.php │ ├── sodium_suite.php │ └── suite.php ├── showmore ├── README ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── en-gb │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── et │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php ├── showmore.css ├── showmore.php └── templates │ └── settings.tpl ├── showmore_dyn ├── lang │ └── C │ │ └── messages.po ├── showmore_dyn.css ├── showmore_dyn.js ├── showmore_dyn.php └── templates │ └── settings.tpl ├── smiley_pack ├── README.md ├── icons │ ├── animals │ │ ├── bee.gif │ │ ├── bigspider.gif │ │ ├── bunny.gif │ │ ├── bunnyflowers.gif │ │ ├── cat.gif │ │ ├── chick.gif │ │ ├── cow.gif │ │ ├── crab.gif │ │ ├── dog.gif │ │ ├── dolphin.gif │ │ ├── dragonfly.gif │ │ ├── elephant.gif │ │ ├── fish.gif │ │ ├── frog.gif │ │ ├── giraffe.gif │ │ ├── hamster.gif │ │ ├── horse.gif │ │ ├── ladybird.gif │ │ ├── monkey.gif │ │ ├── parrot.gif │ │ ├── pig.gif │ │ ├── sheep.gif │ │ ├── snail.gif │ │ └── tux.gif │ ├── babies │ │ ├── baby.gif │ │ ├── babycot.gif │ │ ├── pregnant.gif │ │ └── stork.gif │ ├── ccc │ │ └── ccc.gif │ ├── commercial │ │ ├── facebook.gif │ │ ├── github.png │ │ ├── google.gif │ │ ├── instagram.gif │ │ ├── signal.gif │ │ ├── spotify.gif │ │ ├── telegram.gif │ │ ├── threads.png │ │ ├── threema.png │ │ ├── tiktok.gif │ │ ├── twitch.gif │ │ ├── twitter.gif │ │ ├── whatsapp.gif │ │ ├── windows.png │ │ └── youtube.gif │ ├── confused │ │ ├── confused.gif │ │ ├── dazed.gif │ │ ├── shrug.gif │ │ └── stupid.gif │ ├── cool │ │ ├── affro.gif │ │ └── cool.gif │ ├── devilangel │ │ ├── angel.gif │ │ ├── blondedevil.gif │ │ ├── catdevil.gif │ │ ├── cherub.gif │ │ ├── daseesaw.gif │ │ ├── devil.gif │ │ ├── graveside.gif │ │ ├── saint.gif │ │ └── turnevil.gif │ ├── diaspora.gif │ ├── disgust │ │ ├── fartblush.gif │ │ ├── fartinbed.gif │ │ ├── toilet.gif │ │ └── vomit.gif │ ├── drink │ │ └── tea.gif │ ├── drool │ │ └── drool.gif │ ├── fantasy │ │ ├── alienmonster.gif │ │ ├── barbarian.gif │ │ ├── dinosaur.gif │ │ ├── dragon.gif │ │ ├── dragonwhelp.gif │ │ ├── ghost.gif │ │ └── mummy.gif │ ├── fediverse │ │ ├── ap.gif │ │ ├── diaspora.gif │ │ ├── diaspora.png │ │ ├── fediverse.gif │ │ ├── friendica.gif │ │ ├── friendica.png │ │ ├── funkwhale.gif │ │ ├── gnusocial.gif │ │ ├── hubzilla.gif │ │ ├── hubzilla.png │ │ ├── lemmy.gif │ │ ├── mastodon.gif │ │ ├── misskey.gif │ │ ├── nextcloud.gif │ │ ├── peertube.gif │ │ ├── pixelfed.gif │ │ ├── pleroma.gif │ │ ├── plume.gif │ │ └── writefreely.gif │ ├── fight │ │ ├── 2guns.gif │ │ ├── acid.gif │ │ ├── alienfight.gif │ │ ├── alpha.png │ │ ├── army.gif │ │ ├── arrowhead.gif │ │ ├── bfg.gif │ │ ├── bowman.gif │ │ ├── chainsaw.gif │ │ ├── crossbow.gif │ │ ├── crusader.gif │ │ ├── dead.gif │ │ ├── gangs.gif │ │ ├── hammersplat.gif │ │ ├── lasergun.gif │ │ ├── machinegun.gif │ │ ├── marine.gif │ │ ├── sabre.gif │ │ ├── samurai.gif │ │ ├── tank.gif │ │ └── viking.gif │ ├── food │ │ ├── apple.gif │ │ ├── banana.gif │ │ ├── birthdaycake.gif │ │ ├── broccoli.gif │ │ ├── cake.gif │ │ ├── carrot.gif │ │ ├── cooking.gif │ │ ├── fryegg.gif │ │ ├── popcorn.gif │ │ └── tomato.gif │ ├── friendica.gif │ ├── happy │ │ ├── cloud9.gif │ │ └── tearsofjoy.gif │ ├── hubzilla.gif │ ├── laugh │ │ ├── hahaha.gif │ │ ├── loltv.gif │ │ └── rofl.gif │ ├── love │ │ ├── iloveyou.gif │ │ ├── inlove.gif │ │ ├── love.gif │ │ ├── lovebear.gif │ │ ├── lovebed.gif │ │ └── loveheart.gif │ ├── mastodon.gif │ ├── misskey.gif │ ├── music │ │ ├── dj.gif │ │ ├── drums.gif │ │ ├── elvis.gif │ │ ├── guitar.gif │ │ ├── trumpet.gif │ │ └── violin.gif │ ├── nextcloud.gif │ ├── noncommercial │ │ ├── bluesky.png │ │ ├── invidious.gif │ │ └── vivaldi.png │ ├── oldcore │ │ ├── beard.png │ │ ├── headbang.gif │ │ ├── laughing.gif │ │ ├── shaka.gif │ │ ├── surprised.gif │ │ └── whitebeard.png │ ├── opensource │ │ ├── archlinux.png │ │ ├── debian.png │ │ ├── fdroid.png │ │ ├── fedora.png │ │ ├── firefox.png │ │ ├── firefoxnightly.png │ │ ├── foss.png │ │ ├── jabber.png │ │ ├── kde.png │ │ ├── linux.png │ │ ├── matrix.png │ │ ├── mint.png │ │ ├── opensuse.png │ │ ├── raspi.png │ │ ├── thunderbird.png │ │ ├── tutanota.png │ │ ├── ubuntu.png │ │ └── xmpp.png │ ├── pixelfed.gif │ ├── pleroma.gif │ ├── respect │ │ ├── bow.gif │ │ ├── bravo.gif │ │ ├── cc.png │ │ ├── cc0.png │ │ ├── ccby.png │ │ ├── ccsa.png │ │ ├── hailking.gif │ │ └── number1.gif │ ├── sad │ │ ├── crying.png │ │ ├── prisoner.gif │ │ └── sigh.gif │ ├── smoking │ │ └── smoking.gif │ ├── sport │ │ ├── archery.gif │ │ ├── basketball.gif │ │ ├── bowling.gif │ │ ├── cycling.gif │ │ ├── darts.gif │ │ ├── fencing.gif │ │ ├── football.gif │ │ ├── golf.gif │ │ ├── horseriding.gif │ │ ├── juggling.gif │ │ ├── skipping.gif │ │ ├── snooker.gif │ │ ├── surfing.gif │ │ └── tennis.gif │ └── tired │ │ ├── countsheep.gif │ │ ├── hammock.gif │ │ ├── pillow.gif │ │ └── yawn.gif ├── lang │ ├── smiley_pack_es │ │ └── smiley_pack_es.php │ └── smiley_pack_fr │ │ └── smiley_pack_fr.php └── smiley_pack.php ├── smileybutton ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── bg │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── et │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php ├── smileybutton.php └── view │ ├── default.css │ ├── default.png │ ├── default.svg │ ├── duepuntozero.css │ ├── duepuntozero.png │ ├── frio.css │ ├── smoothly.css │ ├── smoothly.png │ ├── smoothly.svg │ ├── vier.css │ ├── vier.png │ └── vier.svg ├── smilies_adult ├── icons │ ├── bong.gif │ ├── drunk.gif │ ├── finger.gif │ ├── sperm.gif │ └── tits.gif └── smilies_adult.php ├── startpage ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php ├── startpage.php └── templates │ └── settings.tpl ├── statusnet ├── LICENSE ├── README.md ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php ├── library │ ├── codebirdsn.php │ ├── statusnetoauth.php │ └── twitteroauth.php ├── signinwithstatusnet.png ├── statusnet.css ├── statusnet.php └── templates │ ├── admin.tpl │ └── connector_settings.tpl ├── tesseract ├── README.md ├── composer.json ├── composer.lock ├── tesseract.php └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json │ └── thiagoalessio │ └── tesseract_ocr │ ├── .appveyor.yml │ ├── MIT-LICENSE │ ├── README.md │ ├── codecov.yml │ ├── composer.json │ └── src │ ├── Command.php │ ├── FeatureNotAvailableException.php │ ├── FriendlyErrors.php │ ├── ImageNotFoundException.php │ ├── NoWritePermissionsForOutputFile.php │ ├── Option.php │ ├── Process.php │ ├── TesseractNotFoundException.php │ ├── TesseractOCR.php │ ├── TesseractOcrException.php │ └── UnsuccessfulCommandException.php ├── testdrive ├── README.md ├── config │ └── testdrive.config.php ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php └── testdrive.php ├── tictac ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php └── tictac.php ├── tumblr ├── README.md ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ └── strings.php ├── templates │ ├── admin.tpl │ └── connector_settings.tpl └── tumblr.php ├── twitter ├── LICENSE ├── README.md ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── en-gb │ │ ├── messages.po │ │ └── strings.php │ ├── en-us │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── ja │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php ├── templates │ └── connector_settings.tpl └── twitter.php ├── unicode_smilies ├── README.md └── unicode_smilies.php ├── url_replace ├── LICENSE.md ├── README.md ├── lang │ └── C │ │ └── messages.po ├── templates │ └── admin.tpl └── url_replace.php ├── viewsrc ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── ca │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── eo │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── is │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nb-no │ │ ├── messages.po │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── pt-br │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php └── viewsrc.php ├── webdav_storage ├── composer.json ├── lang │ └── C │ │ └── messages.po ├── src │ ├── WebDav.php │ └── WebDavConfig.php ├── tests │ └── WebDavTest.php.bak └── webdav_storage.php ├── webrtc ├── README.md ├── lang │ ├── C │ │ └── messages.po │ ├── ar │ │ ├── messages.po │ │ └── strings.php │ ├── cs │ │ ├── messages.po │ │ └── strings.php │ ├── da-dk │ │ ├── messages.po │ │ └── strings.php │ ├── de │ │ ├── messages.po │ │ └── strings.php │ ├── es │ │ ├── messages.po │ │ └── strings.php │ ├── fi-fi │ │ ├── messages.po │ │ └── strings.php │ ├── fr │ │ ├── messages.po │ │ └── strings.php │ ├── hu │ │ ├── messages.po │ │ └── strings.php │ ├── it │ │ ├── messages.po │ │ └── strings.php │ ├── nl │ │ ├── messages.po │ │ └── strings.php │ ├── pl │ │ ├── messages.po │ │ └── strings.php │ ├── ro │ │ ├── messages.po │ │ └── strings.php │ ├── ru │ │ ├── messages.po │ │ └── strings.php │ ├── sv │ │ ├── messages.po │ │ └── strings.php │ └── zh-cn │ │ ├── messages.po │ │ └── strings.php ├── templates │ └── admin.tpl └── webrtc.php └── wppost ├── lang ├── C │ └── messages.po ├── ar │ ├── messages.po │ └── strings.php ├── ca │ └── strings.php ├── cs │ ├── messages.po │ └── strings.php ├── da-dk │ ├── messages.po │ └── strings.php ├── de │ ├── messages.po │ └── strings.php ├── eo │ └── strings.php ├── es │ ├── messages.po │ └── strings.php ├── fi-fi │ ├── messages.po │ └── strings.php ├── fr │ ├── messages.po │ └── strings.php ├── hu │ ├── messages.po │ └── strings.php ├── is │ └── strings.php ├── it │ ├── messages.po │ └── strings.php ├── nb-no │ └── strings.php ├── nl │ ├── messages.po │ └── strings.php ├── pl │ ├── messages.po │ └── strings.php ├── pt-br │ ├── messages.po │ └── strings.php ├── ro │ ├── messages.po │ └── strings.php ├── ru │ └── strings.php ├── sv │ ├── messages.po │ └── strings.php └── zh-cn │ ├── messages.po │ └── strings.php ├── templates └── connector_settings.tpl └── wppost.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Disable LF normalization for all files 2 | * -text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/.gitignore -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/.tx/config -------------------------------------------------------------------------------- /.woodpecker/.phpunit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/.woodpecker/.phpunit.yml -------------------------------------------------------------------------------- /.woodpecker/.releaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/.woodpecker/.releaser.yml -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/README.md -------------------------------------------------------------------------------- /advancedcontentfilter/vendor/nikic/fast-route/.hhconfig: -------------------------------------------------------------------------------- 1 | assume_php=false 2 | -------------------------------------------------------------------------------- /advancedcontentfilter/vendor/symfony/cache-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /advancedcontentfilter/vendor/symfony/deprecation-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /advancedcontentfilter/vendor/symfony/expression-language/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /advancedcontentfilter/vendor/symfony/service-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /audon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/audon/README.md -------------------------------------------------------------------------------- /audon/audon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/audon/audon.php -------------------------------------------------------------------------------- /audon/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/audon/lang/C/messages.po -------------------------------------------------------------------------------- /audon/templates/admin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/audon/templates/admin.tpl -------------------------------------------------------------------------------- /birdavatar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/birdavatar/README.md -------------------------------------------------------------------------------- /birdavatar/avatars/bec_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/birdavatar/avatars/bec_1.png -------------------------------------------------------------------------------- /birdavatar/avatars/bec_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/birdavatar/avatars/bec_2.png -------------------------------------------------------------------------------- /birdavatar/avatars/bec_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/birdavatar/avatars/bec_3.png -------------------------------------------------------------------------------- /birdavatar/avatars/bec_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/birdavatar/avatars/bec_4.png -------------------------------------------------------------------------------- /birdavatar/avatars/bec_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/birdavatar/avatars/bec_5.png -------------------------------------------------------------------------------- /birdavatar/avatars/bec_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/birdavatar/avatars/bec_6.png -------------------------------------------------------------------------------- /birdavatar/avatars/bec_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/birdavatar/avatars/bec_7.png -------------------------------------------------------------------------------- /birdavatar/avatars/bec_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/birdavatar/avatars/bec_8.png -------------------------------------------------------------------------------- /birdavatar/avatars/bec_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/birdavatar/avatars/bec_9.png -------------------------------------------------------------------------------- /birdavatar/bird_src.ora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/birdavatar/bird_src.ora -------------------------------------------------------------------------------- /birdavatar/birdavatar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/birdavatar/birdavatar.php -------------------------------------------------------------------------------- /blackout/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/LICENSE -------------------------------------------------------------------------------- /blackout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/README.md -------------------------------------------------------------------------------- /blackout/blackout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/blackout.php -------------------------------------------------------------------------------- /blackout/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/C/messages.po -------------------------------------------------------------------------------- /blackout/lang/ar/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/ar/messages.po -------------------------------------------------------------------------------- /blackout/lang/ar/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/ar/strings.php -------------------------------------------------------------------------------- /blackout/lang/ca/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/ca/messages.po -------------------------------------------------------------------------------- /blackout/lang/ca/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/ca/strings.php -------------------------------------------------------------------------------- /blackout/lang/cs/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/cs/messages.po -------------------------------------------------------------------------------- /blackout/lang/cs/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/cs/strings.php -------------------------------------------------------------------------------- /blackout/lang/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/de/messages.po -------------------------------------------------------------------------------- /blackout/lang/de/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/de/strings.php -------------------------------------------------------------------------------- /blackout/lang/eo/strings.php: -------------------------------------------------------------------------------- 1 | strings["Submit"] = "Sendi"; 4 | -------------------------------------------------------------------------------- /blackout/lang/es/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/es/messages.po -------------------------------------------------------------------------------- /blackout/lang/es/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/es/strings.php -------------------------------------------------------------------------------- /blackout/lang/fr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/fr/messages.po -------------------------------------------------------------------------------- /blackout/lang/fr/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/fr/strings.php -------------------------------------------------------------------------------- /blackout/lang/hu/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/hu/messages.po -------------------------------------------------------------------------------- /blackout/lang/hu/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/hu/strings.php -------------------------------------------------------------------------------- /blackout/lang/is/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/is/messages.po -------------------------------------------------------------------------------- /blackout/lang/is/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/is/strings.php -------------------------------------------------------------------------------- /blackout/lang/it/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/it/messages.po -------------------------------------------------------------------------------- /blackout/lang/it/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/it/strings.php -------------------------------------------------------------------------------- /blackout/lang/ja/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/ja/messages.po -------------------------------------------------------------------------------- /blackout/lang/ja/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/ja/strings.php -------------------------------------------------------------------------------- /blackout/lang/nb-no/strings.php: -------------------------------------------------------------------------------- 1 | strings["Submit"] = "Lagre"; 4 | -------------------------------------------------------------------------------- /blackout/lang/nl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/nl/messages.po -------------------------------------------------------------------------------- /blackout/lang/nl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/nl/strings.php -------------------------------------------------------------------------------- /blackout/lang/pl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/pl/messages.po -------------------------------------------------------------------------------- /blackout/lang/pl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/pl/strings.php -------------------------------------------------------------------------------- /blackout/lang/pt-br/strings.php: -------------------------------------------------------------------------------- 1 | strings["Submit"] = "Enviar"; 4 | -------------------------------------------------------------------------------- /blackout/lang/ro/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/ro/messages.po -------------------------------------------------------------------------------- /blackout/lang/ro/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/ro/strings.php -------------------------------------------------------------------------------- /blackout/lang/ru/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/ru/messages.po -------------------------------------------------------------------------------- /blackout/lang/ru/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/ru/strings.php -------------------------------------------------------------------------------- /blackout/lang/sv/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/sv/messages.po -------------------------------------------------------------------------------- /blackout/lang/sv/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/lang/sv/strings.php -------------------------------------------------------------------------------- /blackout/templates/admin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blackout/templates/admin.tpl -------------------------------------------------------------------------------- /blockbot/blockbot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/blockbot.php -------------------------------------------------------------------------------- /blockbot/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/composer.json -------------------------------------------------------------------------------- /blockbot/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/composer.lock -------------------------------------------------------------------------------- /blockbot/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/C/messages.po -------------------------------------------------------------------------------- /blockbot/lang/ar/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/ar/messages.po -------------------------------------------------------------------------------- /blockbot/lang/ar/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/ar/strings.php -------------------------------------------------------------------------------- /blockbot/lang/bg/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/bg/messages.po -------------------------------------------------------------------------------- /blockbot/lang/bg/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/bg/strings.php -------------------------------------------------------------------------------- /blockbot/lang/ca/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/ca/messages.po -------------------------------------------------------------------------------- /blockbot/lang/ca/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/ca/strings.php -------------------------------------------------------------------------------- /blockbot/lang/cs/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/cs/messages.po -------------------------------------------------------------------------------- /blockbot/lang/cs/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/cs/strings.php -------------------------------------------------------------------------------- /blockbot/lang/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/de/messages.po -------------------------------------------------------------------------------- /blockbot/lang/de/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/de/strings.php -------------------------------------------------------------------------------- /blockbot/lang/es/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/es/messages.po -------------------------------------------------------------------------------- /blockbot/lang/es/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/es/strings.php -------------------------------------------------------------------------------- /blockbot/lang/fr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/fr/messages.po -------------------------------------------------------------------------------- /blockbot/lang/fr/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/fr/strings.php -------------------------------------------------------------------------------- /blockbot/lang/hu/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/hu/messages.po -------------------------------------------------------------------------------- /blockbot/lang/hu/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/hu/strings.php -------------------------------------------------------------------------------- /blockbot/lang/it/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/it/messages.po -------------------------------------------------------------------------------- /blockbot/lang/it/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/it/strings.php -------------------------------------------------------------------------------- /blockbot/lang/nl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/nl/messages.po -------------------------------------------------------------------------------- /blockbot/lang/nl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/nl/strings.php -------------------------------------------------------------------------------- /blockbot/lang/pl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/pl/messages.po -------------------------------------------------------------------------------- /blockbot/lang/pl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/pl/strings.php -------------------------------------------------------------------------------- /blockbot/lang/ru/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/ru/messages.po -------------------------------------------------------------------------------- /blockbot/lang/ru/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/lang/ru/strings.php -------------------------------------------------------------------------------- /blockbot/templates/admin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/templates/admin.tpl -------------------------------------------------------------------------------- /blockbot/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/blockbot/vendor/autoload.php -------------------------------------------------------------------------------- /bluesky/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/bluesky/README.md -------------------------------------------------------------------------------- /bluesky/bluesky.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/bluesky/bluesky.php -------------------------------------------------------------------------------- /bluesky/bluesky_feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/bluesky/bluesky_feed.php -------------------------------------------------------------------------------- /bluesky/bluesky_timeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/bluesky/bluesky_timeline.php -------------------------------------------------------------------------------- /bluesky/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/bluesky/lang/C/messages.po -------------------------------------------------------------------------------- /bluesky/lang/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/bluesky/lang/de/messages.po -------------------------------------------------------------------------------- /bluesky/lang/de/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/bluesky/lang/de/strings.php -------------------------------------------------------------------------------- /bluesky/templates/admin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/bluesky/templates/admin.tpl -------------------------------------------------------------------------------- /buglink/bug-x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/bug-x.gif -------------------------------------------------------------------------------- /buglink/buglink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/buglink.php -------------------------------------------------------------------------------- /buglink/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/C/messages.po -------------------------------------------------------------------------------- /buglink/lang/ar/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/ar/messages.po -------------------------------------------------------------------------------- /buglink/lang/ar/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/ar/strings.php -------------------------------------------------------------------------------- /buglink/lang/ca/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/ca/messages.po -------------------------------------------------------------------------------- /buglink/lang/ca/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/ca/strings.php -------------------------------------------------------------------------------- /buglink/lang/cs/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/cs/messages.po -------------------------------------------------------------------------------- /buglink/lang/cs/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/cs/strings.php -------------------------------------------------------------------------------- /buglink/lang/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/de/messages.po -------------------------------------------------------------------------------- /buglink/lang/de/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/de/strings.php -------------------------------------------------------------------------------- /buglink/lang/eo/strings.php: -------------------------------------------------------------------------------- 1 | strings["Report Bug"] = "Skribi cimraporton"; 4 | -------------------------------------------------------------------------------- /buglink/lang/es/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/es/messages.po -------------------------------------------------------------------------------- /buglink/lang/es/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/es/strings.php -------------------------------------------------------------------------------- /buglink/lang/fr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/fr/messages.po -------------------------------------------------------------------------------- /buglink/lang/fr/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/fr/strings.php -------------------------------------------------------------------------------- /buglink/lang/gd/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/gd/messages.po -------------------------------------------------------------------------------- /buglink/lang/gd/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/gd/strings.php -------------------------------------------------------------------------------- /buglink/lang/hu/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/hu/messages.po -------------------------------------------------------------------------------- /buglink/lang/hu/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/hu/strings.php -------------------------------------------------------------------------------- /buglink/lang/is/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/is/messages.po -------------------------------------------------------------------------------- /buglink/lang/is/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/is/strings.php -------------------------------------------------------------------------------- /buglink/lang/it/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/it/messages.po -------------------------------------------------------------------------------- /buglink/lang/it/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/it/strings.php -------------------------------------------------------------------------------- /buglink/lang/nl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/nl/messages.po -------------------------------------------------------------------------------- /buglink/lang/nl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/nl/strings.php -------------------------------------------------------------------------------- /buglink/lang/pl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/pl/messages.po -------------------------------------------------------------------------------- /buglink/lang/pl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/pl/strings.php -------------------------------------------------------------------------------- /buglink/lang/ro/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/ro/messages.po -------------------------------------------------------------------------------- /buglink/lang/ro/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/ro/strings.php -------------------------------------------------------------------------------- /buglink/lang/ru/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/ru/messages.po -------------------------------------------------------------------------------- /buglink/lang/ru/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/ru/strings.php -------------------------------------------------------------------------------- /buglink/lang/sv/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/sv/messages.po -------------------------------------------------------------------------------- /buglink/lang/sv/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/buglink/lang/sv/strings.php -------------------------------------------------------------------------------- /calc/calc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/calc/calc.php -------------------------------------------------------------------------------- /catavatar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/README.md -------------------------------------------------------------------------------- /catavatar/avatars/body_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/body_1.png -------------------------------------------------------------------------------- /catavatar/avatars/body_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/body_2.png -------------------------------------------------------------------------------- /catavatar/avatars/body_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/body_3.png -------------------------------------------------------------------------------- /catavatar/avatars/body_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/body_4.png -------------------------------------------------------------------------------- /catavatar/avatars/body_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/body_5.png -------------------------------------------------------------------------------- /catavatar/avatars/body_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/body_6.png -------------------------------------------------------------------------------- /catavatar/avatars/body_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/body_7.png -------------------------------------------------------------------------------- /catavatar/avatars/body_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/body_8.png -------------------------------------------------------------------------------- /catavatar/avatars/body_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/body_9.png -------------------------------------------------------------------------------- /catavatar/avatars/eyes_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/eyes_1.png -------------------------------------------------------------------------------- /catavatar/avatars/eyes_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/eyes_2.png -------------------------------------------------------------------------------- /catavatar/avatars/eyes_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/eyes_3.png -------------------------------------------------------------------------------- /catavatar/avatars/eyes_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/eyes_4.png -------------------------------------------------------------------------------- /catavatar/avatars/eyes_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/eyes_5.png -------------------------------------------------------------------------------- /catavatar/avatars/eyes_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/eyes_6.png -------------------------------------------------------------------------------- /catavatar/avatars/eyes_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/eyes_7.png -------------------------------------------------------------------------------- /catavatar/avatars/eyes_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/eyes_8.png -------------------------------------------------------------------------------- /catavatar/avatars/eyes_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/eyes_9.png -------------------------------------------------------------------------------- /catavatar/avatars/fur_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/fur_1.png -------------------------------------------------------------------------------- /catavatar/avatars/fur_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/fur_10.png -------------------------------------------------------------------------------- /catavatar/avatars/fur_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/fur_2.png -------------------------------------------------------------------------------- /catavatar/avatars/fur_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/fur_3.png -------------------------------------------------------------------------------- /catavatar/avatars/fur_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/fur_4.png -------------------------------------------------------------------------------- /catavatar/avatars/fur_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/fur_5.png -------------------------------------------------------------------------------- /catavatar/avatars/fur_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/fur_6.png -------------------------------------------------------------------------------- /catavatar/avatars/fur_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/fur_7.png -------------------------------------------------------------------------------- /catavatar/avatars/fur_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/fur_8.png -------------------------------------------------------------------------------- /catavatar/avatars/fur_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/fur_9.png -------------------------------------------------------------------------------- /catavatar/avatars/zz_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/zz_1.png -------------------------------------------------------------------------------- /catavatar/avatars/zz_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/zz_2.png -------------------------------------------------------------------------------- /catavatar/avatars/zz_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/avatars/zz_bg.png -------------------------------------------------------------------------------- /catavatar/cat_src.ora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/cat_src.ora -------------------------------------------------------------------------------- /catavatar/catavatar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/catavatar.php -------------------------------------------------------------------------------- /catavatar/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/catavatar/lang/C/messages.po -------------------------------------------------------------------------------- /circle_text/group_text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/circle_text/group_text.php -------------------------------------------------------------------------------- /cld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/cld/README.md -------------------------------------------------------------------------------- /cld/cld.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/cld/cld.php -------------------------------------------------------------------------------- /convert/UnitConvertor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/convert/UnitConvertor.php -------------------------------------------------------------------------------- /convert/convert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/convert/convert.php -------------------------------------------------------------------------------- /cookienotice/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/cookienotice/README -------------------------------------------------------------------------------- /cookienotice/cookienotice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/cookienotice/cookienotice.js -------------------------------------------------------------------------------- /curweather/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/curweather/README.md -------------------------------------------------------------------------------- /curweather/curweather.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/curweather/curweather.css -------------------------------------------------------------------------------- /curweather/curweather.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/curweather/curweather.php -------------------------------------------------------------------------------- /curweather/lang/eo/strings.php: -------------------------------------------------------------------------------- 1 | strings["Submit"] = "Sendi"; 4 | -------------------------------------------------------------------------------- /curweather/lang/is/strings.php: -------------------------------------------------------------------------------- 1 | strings["Submit"] = "Senda inn"; 4 | -------------------------------------------------------------------------------- /curweather/lang/nb-no/strings.php: -------------------------------------------------------------------------------- 1 | strings["Submit"] = "Lagre"; 4 | -------------------------------------------------------------------------------- /curweather/lang/zh-cn/strings.php: -------------------------------------------------------------------------------- 1 | strings["Submit"] = "提交"; 4 | -------------------------------------------------------------------------------- /diaspora/diasphp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/diasphp.php -------------------------------------------------------------------------------- /diaspora/diaspora.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/diaspora.php -------------------------------------------------------------------------------- /diaspora/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/C/messages.po -------------------------------------------------------------------------------- /diaspora/lang/ar/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/ar/messages.po -------------------------------------------------------------------------------- /diaspora/lang/ar/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/ar/strings.php -------------------------------------------------------------------------------- /diaspora/lang/ca/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/ca/messages.po -------------------------------------------------------------------------------- /diaspora/lang/ca/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/ca/strings.php -------------------------------------------------------------------------------- /diaspora/lang/cs/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/cs/messages.po -------------------------------------------------------------------------------- /diaspora/lang/cs/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/cs/strings.php -------------------------------------------------------------------------------- /diaspora/lang/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/de/messages.po -------------------------------------------------------------------------------- /diaspora/lang/de/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/de/strings.php -------------------------------------------------------------------------------- /diaspora/lang/es/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/es/messages.po -------------------------------------------------------------------------------- /diaspora/lang/es/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/es/strings.php -------------------------------------------------------------------------------- /diaspora/lang/fr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/fr/messages.po -------------------------------------------------------------------------------- /diaspora/lang/fr/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/fr/strings.php -------------------------------------------------------------------------------- /diaspora/lang/hu/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/hu/messages.po -------------------------------------------------------------------------------- /diaspora/lang/hu/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/hu/strings.php -------------------------------------------------------------------------------- /diaspora/lang/is/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/is/messages.po -------------------------------------------------------------------------------- /diaspora/lang/is/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/is/strings.php -------------------------------------------------------------------------------- /diaspora/lang/it/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/it/messages.po -------------------------------------------------------------------------------- /diaspora/lang/it/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/it/strings.php -------------------------------------------------------------------------------- /diaspora/lang/nl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/nl/messages.po -------------------------------------------------------------------------------- /diaspora/lang/nl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/nl/strings.php -------------------------------------------------------------------------------- /diaspora/lang/pl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/pl/messages.po -------------------------------------------------------------------------------- /diaspora/lang/pl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/pl/strings.php -------------------------------------------------------------------------------- /diaspora/lang/ro/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/ro/messages.po -------------------------------------------------------------------------------- /diaspora/lang/ro/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/ro/strings.php -------------------------------------------------------------------------------- /diaspora/lang/ru/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/ru/messages.po -------------------------------------------------------------------------------- /diaspora/lang/ru/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/ru/strings.php -------------------------------------------------------------------------------- /diaspora/lang/sv/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/sv/messages.po -------------------------------------------------------------------------------- /diaspora/lang/sv/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/diaspora/lang/sv/strings.php -------------------------------------------------------------------------------- /discourse/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/discourse/README -------------------------------------------------------------------------------- /discourse/discourse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/discourse/discourse.php -------------------------------------------------------------------------------- /discourse/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/discourse/lang/C/messages.po -------------------------------------------------------------------------------- /dwpost/dwpost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/dwpost.php -------------------------------------------------------------------------------- /dwpost/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/C/messages.po -------------------------------------------------------------------------------- /dwpost/lang/ar/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/ar/messages.po -------------------------------------------------------------------------------- /dwpost/lang/ar/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/ar/strings.php -------------------------------------------------------------------------------- /dwpost/lang/ca/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/ca/messages.po -------------------------------------------------------------------------------- /dwpost/lang/ca/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/ca/strings.php -------------------------------------------------------------------------------- /dwpost/lang/cs/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/cs/messages.po -------------------------------------------------------------------------------- /dwpost/lang/cs/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/cs/strings.php -------------------------------------------------------------------------------- /dwpost/lang/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/de/messages.po -------------------------------------------------------------------------------- /dwpost/lang/de/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/de/strings.php -------------------------------------------------------------------------------- /dwpost/lang/eo/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/eo/strings.php -------------------------------------------------------------------------------- /dwpost/lang/es/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/es/messages.po -------------------------------------------------------------------------------- /dwpost/lang/es/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/es/strings.php -------------------------------------------------------------------------------- /dwpost/lang/fr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/fr/messages.po -------------------------------------------------------------------------------- /dwpost/lang/fr/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/fr/strings.php -------------------------------------------------------------------------------- /dwpost/lang/hu/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/hu/messages.po -------------------------------------------------------------------------------- /dwpost/lang/hu/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/hu/strings.php -------------------------------------------------------------------------------- /dwpost/lang/is/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/is/strings.php -------------------------------------------------------------------------------- /dwpost/lang/it/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/it/messages.po -------------------------------------------------------------------------------- /dwpost/lang/it/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/it/strings.php -------------------------------------------------------------------------------- /dwpost/lang/nl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/nl/messages.po -------------------------------------------------------------------------------- /dwpost/lang/nl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/nl/strings.php -------------------------------------------------------------------------------- /dwpost/lang/pl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/pl/messages.po -------------------------------------------------------------------------------- /dwpost/lang/pl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/pl/strings.php -------------------------------------------------------------------------------- /dwpost/lang/ro/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/ro/messages.po -------------------------------------------------------------------------------- /dwpost/lang/ro/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/ro/strings.php -------------------------------------------------------------------------------- /dwpost/lang/ru/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/ru/messages.po -------------------------------------------------------------------------------- /dwpost/lang/ru/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/ru/strings.php -------------------------------------------------------------------------------- /dwpost/lang/sv/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/sv/messages.po -------------------------------------------------------------------------------- /dwpost/lang/sv/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/dwpost/lang/sv/strings.php -------------------------------------------------------------------------------- /fancybox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fancybox/.gitignore -------------------------------------------------------------------------------- /fancybox/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fancybox/CHANGELOG.md -------------------------------------------------------------------------------- /fancybox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fancybox/README.md -------------------------------------------------------------------------------- /fancybox/createrelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fancybox/createrelease -------------------------------------------------------------------------------- /fancybox/fancybox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fancybox/fancybox.php -------------------------------------------------------------------------------- /fromapp/fromapp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/fromapp.php -------------------------------------------------------------------------------- /fromapp/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/C/messages.po -------------------------------------------------------------------------------- /fromapp/lang/ar/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/ar/messages.po -------------------------------------------------------------------------------- /fromapp/lang/ar/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/ar/strings.php -------------------------------------------------------------------------------- /fromapp/lang/ca/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/ca/messages.po -------------------------------------------------------------------------------- /fromapp/lang/ca/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/ca/strings.php -------------------------------------------------------------------------------- /fromapp/lang/cs/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/cs/messages.po -------------------------------------------------------------------------------- /fromapp/lang/cs/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/cs/strings.php -------------------------------------------------------------------------------- /fromapp/lang/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/de/messages.po -------------------------------------------------------------------------------- /fromapp/lang/de/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/de/strings.php -------------------------------------------------------------------------------- /fromapp/lang/eo/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/eo/strings.php -------------------------------------------------------------------------------- /fromapp/lang/es/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/es/messages.po -------------------------------------------------------------------------------- /fromapp/lang/es/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/es/strings.php -------------------------------------------------------------------------------- /fromapp/lang/fr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/fr/messages.po -------------------------------------------------------------------------------- /fromapp/lang/fr/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/fr/strings.php -------------------------------------------------------------------------------- /fromapp/lang/hu/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/hu/messages.po -------------------------------------------------------------------------------- /fromapp/lang/hu/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/hu/strings.php -------------------------------------------------------------------------------- /fromapp/lang/is/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/is/strings.php -------------------------------------------------------------------------------- /fromapp/lang/it/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/it/messages.po -------------------------------------------------------------------------------- /fromapp/lang/it/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/it/strings.php -------------------------------------------------------------------------------- /fromapp/lang/nl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/nl/messages.po -------------------------------------------------------------------------------- /fromapp/lang/nl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/nl/strings.php -------------------------------------------------------------------------------- /fromapp/lang/pl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/pl/messages.po -------------------------------------------------------------------------------- /fromapp/lang/pl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/pl/strings.php -------------------------------------------------------------------------------- /fromapp/lang/ro/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/ro/messages.po -------------------------------------------------------------------------------- /fromapp/lang/ro/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/ro/strings.php -------------------------------------------------------------------------------- /fromapp/lang/ru/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/ru/messages.po -------------------------------------------------------------------------------- /fromapp/lang/ru/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/ru/strings.php -------------------------------------------------------------------------------- /fromapp/lang/sv/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/sv/messages.po -------------------------------------------------------------------------------- /fromapp/lang/sv/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/fromapp/lang/sv/strings.php -------------------------------------------------------------------------------- /geonames/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/README.md -------------------------------------------------------------------------------- /geonames/geonames.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/geonames.php -------------------------------------------------------------------------------- /geonames/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/C/messages.po -------------------------------------------------------------------------------- /geonames/lang/ar/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/ar/messages.po -------------------------------------------------------------------------------- /geonames/lang/ar/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/ar/strings.php -------------------------------------------------------------------------------- /geonames/lang/ca/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/ca/strings.php -------------------------------------------------------------------------------- /geonames/lang/cs/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/cs/messages.po -------------------------------------------------------------------------------- /geonames/lang/cs/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/cs/strings.php -------------------------------------------------------------------------------- /geonames/lang/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/de/messages.po -------------------------------------------------------------------------------- /geonames/lang/de/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/de/strings.php -------------------------------------------------------------------------------- /geonames/lang/eo/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/eo/strings.php -------------------------------------------------------------------------------- /geonames/lang/es/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/es/messages.po -------------------------------------------------------------------------------- /geonames/lang/es/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/es/strings.php -------------------------------------------------------------------------------- /geonames/lang/fr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/fr/messages.po -------------------------------------------------------------------------------- /geonames/lang/fr/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/fr/strings.php -------------------------------------------------------------------------------- /geonames/lang/hu/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/hu/messages.po -------------------------------------------------------------------------------- /geonames/lang/hu/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/hu/strings.php -------------------------------------------------------------------------------- /geonames/lang/is/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/is/messages.po -------------------------------------------------------------------------------- /geonames/lang/is/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/is/strings.php -------------------------------------------------------------------------------- /geonames/lang/it/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/it/messages.po -------------------------------------------------------------------------------- /geonames/lang/it/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/it/strings.php -------------------------------------------------------------------------------- /geonames/lang/nl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/nl/messages.po -------------------------------------------------------------------------------- /geonames/lang/nl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/nl/strings.php -------------------------------------------------------------------------------- /geonames/lang/pl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/pl/messages.po -------------------------------------------------------------------------------- /geonames/lang/pl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/pl/strings.php -------------------------------------------------------------------------------- /geonames/lang/ro/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/ro/messages.po -------------------------------------------------------------------------------- /geonames/lang/ro/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/ro/strings.php -------------------------------------------------------------------------------- /geonames/lang/ru/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/ru/messages.po -------------------------------------------------------------------------------- /geonames/lang/ru/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/ru/strings.php -------------------------------------------------------------------------------- /geonames/lang/sv/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/sv/messages.po -------------------------------------------------------------------------------- /geonames/lang/sv/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/geonames/lang/sv/strings.php -------------------------------------------------------------------------------- /gnot/gnot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/gnot.php -------------------------------------------------------------------------------- /gnot/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/C/messages.po -------------------------------------------------------------------------------- /gnot/lang/ar/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/ar/messages.po -------------------------------------------------------------------------------- /gnot/lang/ar/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/ar/strings.php -------------------------------------------------------------------------------- /gnot/lang/ca/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/ca/messages.po -------------------------------------------------------------------------------- /gnot/lang/ca/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/ca/strings.php -------------------------------------------------------------------------------- /gnot/lang/cs/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/cs/messages.po -------------------------------------------------------------------------------- /gnot/lang/cs/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/cs/strings.php -------------------------------------------------------------------------------- /gnot/lang/da-dk/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/da-dk/messages.po -------------------------------------------------------------------------------- /gnot/lang/da-dk/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/da-dk/strings.php -------------------------------------------------------------------------------- /gnot/lang/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/de/messages.po -------------------------------------------------------------------------------- /gnot/lang/de/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/de/strings.php -------------------------------------------------------------------------------- /gnot/lang/eo/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/eo/strings.php -------------------------------------------------------------------------------- /gnot/lang/es/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/es/messages.po -------------------------------------------------------------------------------- /gnot/lang/es/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/es/strings.php -------------------------------------------------------------------------------- /gnot/lang/fi-fi/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/fi-fi/messages.po -------------------------------------------------------------------------------- /gnot/lang/fi-fi/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/fi-fi/strings.php -------------------------------------------------------------------------------- /gnot/lang/fr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/fr/messages.po -------------------------------------------------------------------------------- /gnot/lang/fr/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/fr/strings.php -------------------------------------------------------------------------------- /gnot/lang/hu/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/hu/messages.po -------------------------------------------------------------------------------- /gnot/lang/hu/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/hu/strings.php -------------------------------------------------------------------------------- /gnot/lang/is/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/is/strings.php -------------------------------------------------------------------------------- /gnot/lang/it/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/it/messages.po -------------------------------------------------------------------------------- /gnot/lang/it/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/it/strings.php -------------------------------------------------------------------------------- /gnot/lang/nb-no/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/nb-no/strings.php -------------------------------------------------------------------------------- /gnot/lang/nl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/nl/messages.po -------------------------------------------------------------------------------- /gnot/lang/nl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/nl/strings.php -------------------------------------------------------------------------------- /gnot/lang/pl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/pl/messages.po -------------------------------------------------------------------------------- /gnot/lang/pl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/pl/strings.php -------------------------------------------------------------------------------- /gnot/lang/pt-br/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/pt-br/strings.php -------------------------------------------------------------------------------- /gnot/lang/ro/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/ro/messages.po -------------------------------------------------------------------------------- /gnot/lang/ro/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/ro/strings.php -------------------------------------------------------------------------------- /gnot/lang/ru/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/ru/messages.po -------------------------------------------------------------------------------- /gnot/lang/ru/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/ru/strings.php -------------------------------------------------------------------------------- /gnot/lang/sv/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/sv/messages.po -------------------------------------------------------------------------------- /gnot/lang/sv/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/sv/strings.php -------------------------------------------------------------------------------- /gnot/lang/zh-cn/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/lang/zh-cn/strings.php -------------------------------------------------------------------------------- /gnot/templates/settings.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gnot/templates/settings.tpl -------------------------------------------------------------------------------- /googlemaps/googlemaps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/googlemaps/googlemaps.php -------------------------------------------------------------------------------- /gravatar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/README.md -------------------------------------------------------------------------------- /gravatar/gravatar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/gravatar.php -------------------------------------------------------------------------------- /gravatar/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/C/messages.po -------------------------------------------------------------------------------- /gravatar/lang/ar/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/ar/messages.po -------------------------------------------------------------------------------- /gravatar/lang/ar/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/ar/strings.php -------------------------------------------------------------------------------- /gravatar/lang/ca/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/ca/messages.po -------------------------------------------------------------------------------- /gravatar/lang/ca/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/ca/strings.php -------------------------------------------------------------------------------- /gravatar/lang/cs/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/cs/messages.po -------------------------------------------------------------------------------- /gravatar/lang/cs/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/cs/strings.php -------------------------------------------------------------------------------- /gravatar/lang/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/de/messages.po -------------------------------------------------------------------------------- /gravatar/lang/de/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/de/strings.php -------------------------------------------------------------------------------- /gravatar/lang/eo/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/eo/strings.php -------------------------------------------------------------------------------- /gravatar/lang/es/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/es/messages.po -------------------------------------------------------------------------------- /gravatar/lang/es/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/es/strings.php -------------------------------------------------------------------------------- /gravatar/lang/fr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/fr/messages.po -------------------------------------------------------------------------------- /gravatar/lang/fr/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/fr/strings.php -------------------------------------------------------------------------------- /gravatar/lang/hu/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/hu/messages.po -------------------------------------------------------------------------------- /gravatar/lang/hu/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/hu/strings.php -------------------------------------------------------------------------------- /gravatar/lang/is/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/is/strings.php -------------------------------------------------------------------------------- /gravatar/lang/it/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/it/messages.po -------------------------------------------------------------------------------- /gravatar/lang/it/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/it/strings.php -------------------------------------------------------------------------------- /gravatar/lang/nl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/nl/messages.po -------------------------------------------------------------------------------- /gravatar/lang/nl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/nl/strings.php -------------------------------------------------------------------------------- /gravatar/lang/pl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/pl/messages.po -------------------------------------------------------------------------------- /gravatar/lang/pl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/pl/strings.php -------------------------------------------------------------------------------- /gravatar/lang/ro/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/ro/messages.po -------------------------------------------------------------------------------- /gravatar/lang/ro/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/ro/strings.php -------------------------------------------------------------------------------- /gravatar/lang/ru/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/ru/messages.po -------------------------------------------------------------------------------- /gravatar/lang/ru/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/ru/strings.php -------------------------------------------------------------------------------- /gravatar/lang/sv/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/sv/messages.po -------------------------------------------------------------------------------- /gravatar/lang/sv/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/lang/sv/strings.php -------------------------------------------------------------------------------- /gravatar/templates/admin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/gravatar/templates/admin.tpl -------------------------------------------------------------------------------- /group_text/group_text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/group_text/group_text.php -------------------------------------------------------------------------------- /highlightjs/asset/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/highlightjs/asset/CHANGES.md -------------------------------------------------------------------------------- /highlightjs/asset/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/highlightjs/asset/LICENSE -------------------------------------------------------------------------------- /highlightjs/asset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/highlightjs/asset/README.md -------------------------------------------------------------------------------- /highlightjs/highlightjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/highlightjs/highlightjs.js -------------------------------------------------------------------------------- /highlightjs/highlightjs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/highlightjs/highlightjs.php -------------------------------------------------------------------------------- /ifttt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/README.md -------------------------------------------------------------------------------- /ifttt/ifttt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/ifttt.php -------------------------------------------------------------------------------- /ifttt/ifttt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/ifttt.png -------------------------------------------------------------------------------- /ifttt/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/C/messages.po -------------------------------------------------------------------------------- /ifttt/lang/ar/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/ar/messages.po -------------------------------------------------------------------------------- /ifttt/lang/ar/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/ar/strings.php -------------------------------------------------------------------------------- /ifttt/lang/cs/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/cs/messages.po -------------------------------------------------------------------------------- /ifttt/lang/cs/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/cs/strings.php -------------------------------------------------------------------------------- /ifttt/lang/da-dk/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/da-dk/messages.po -------------------------------------------------------------------------------- /ifttt/lang/da-dk/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/da-dk/strings.php -------------------------------------------------------------------------------- /ifttt/lang/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/de/messages.po -------------------------------------------------------------------------------- /ifttt/lang/de/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/de/strings.php -------------------------------------------------------------------------------- /ifttt/lang/en-gb/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/en-gb/messages.po -------------------------------------------------------------------------------- /ifttt/lang/en-gb/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/en-gb/strings.php -------------------------------------------------------------------------------- /ifttt/lang/es/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/es/messages.po -------------------------------------------------------------------------------- /ifttt/lang/es/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/es/strings.php -------------------------------------------------------------------------------- /ifttt/lang/fi-fi/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/fi-fi/messages.po -------------------------------------------------------------------------------- /ifttt/lang/fi-fi/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/fi-fi/strings.php -------------------------------------------------------------------------------- /ifttt/lang/fr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/fr/messages.po -------------------------------------------------------------------------------- /ifttt/lang/fr/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/fr/strings.php -------------------------------------------------------------------------------- /ifttt/lang/hu/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/hu/messages.po -------------------------------------------------------------------------------- /ifttt/lang/hu/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/hu/strings.php -------------------------------------------------------------------------------- /ifttt/lang/pl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/pl/messages.po -------------------------------------------------------------------------------- /ifttt/lang/pl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/pl/strings.php -------------------------------------------------------------------------------- /ifttt/lang/sv/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/sv/messages.po -------------------------------------------------------------------------------- /ifttt/lang/sv/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/sv/strings.php -------------------------------------------------------------------------------- /ifttt/lang/zh-cn/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/zh-cn/messages.po -------------------------------------------------------------------------------- /ifttt/lang/zh-cn/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ifttt/lang/zh-cn/strings.php -------------------------------------------------------------------------------- /ijpost/ijpost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/ijpost.php -------------------------------------------------------------------------------- /ijpost/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/C/messages.po -------------------------------------------------------------------------------- /ijpost/lang/ar/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/ar/messages.po -------------------------------------------------------------------------------- /ijpost/lang/ar/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/ar/strings.php -------------------------------------------------------------------------------- /ijpost/lang/ca/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/ca/messages.po -------------------------------------------------------------------------------- /ijpost/lang/ca/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/ca/strings.php -------------------------------------------------------------------------------- /ijpost/lang/cs/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/cs/messages.po -------------------------------------------------------------------------------- /ijpost/lang/cs/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/cs/strings.php -------------------------------------------------------------------------------- /ijpost/lang/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/de/messages.po -------------------------------------------------------------------------------- /ijpost/lang/de/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/de/strings.php -------------------------------------------------------------------------------- /ijpost/lang/eo/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/eo/strings.php -------------------------------------------------------------------------------- /ijpost/lang/es/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/es/messages.po -------------------------------------------------------------------------------- /ijpost/lang/es/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/es/strings.php -------------------------------------------------------------------------------- /ijpost/lang/fr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/fr/messages.po -------------------------------------------------------------------------------- /ijpost/lang/fr/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/fr/strings.php -------------------------------------------------------------------------------- /ijpost/lang/hu/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/hu/messages.po -------------------------------------------------------------------------------- /ijpost/lang/hu/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/hu/strings.php -------------------------------------------------------------------------------- /ijpost/lang/is/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/is/strings.php -------------------------------------------------------------------------------- /ijpost/lang/it/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/it/messages.po -------------------------------------------------------------------------------- /ijpost/lang/it/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/it/strings.php -------------------------------------------------------------------------------- /ijpost/lang/nl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/nl/messages.po -------------------------------------------------------------------------------- /ijpost/lang/nl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/nl/strings.php -------------------------------------------------------------------------------- /ijpost/lang/pl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/pl/messages.po -------------------------------------------------------------------------------- /ijpost/lang/pl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/pl/strings.php -------------------------------------------------------------------------------- /ijpost/lang/ro/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/ro/messages.po -------------------------------------------------------------------------------- /ijpost/lang/ro/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/ro/strings.php -------------------------------------------------------------------------------- /ijpost/lang/ru/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/ru/messages.po -------------------------------------------------------------------------------- /ijpost/lang/ru/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/ru/strings.php -------------------------------------------------------------------------------- /ijpost/lang/sv/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/sv/messages.po -------------------------------------------------------------------------------- /ijpost/lang/sv/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ijpost/lang/sv/strings.php -------------------------------------------------------------------------------- /impressum/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/impressum/LICENSE -------------------------------------------------------------------------------- /impressum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/impressum/README.md -------------------------------------------------------------------------------- /impressum/impressum.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/impressum/impressum.css -------------------------------------------------------------------------------- /impressum/impressum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/impressum/impressum.php -------------------------------------------------------------------------------- /impressum/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/impressum/lang/C/messages.po -------------------------------------------------------------------------------- /infiniteimprobabilitydrive/infiniteimprobabilitydrive.css: -------------------------------------------------------------------------------- 1 | section {padding-left: 0px;} 2 | 3 | iframe {border: none;} -------------------------------------------------------------------------------- /infiniteimprobabilitydrive/lang/is/strings.php: -------------------------------------------------------------------------------- 1 | strings["Infinite Improbability Drive"] = ""; 4 | -------------------------------------------------------------------------------- /invidious/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/invidious/README.md -------------------------------------------------------------------------------- /invidious/invidious.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/invidious/invidious.php -------------------------------------------------------------------------------- /invidious/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/invidious/lang/C/messages.po -------------------------------------------------------------------------------- /irc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/README.md -------------------------------------------------------------------------------- /irc/irc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/irc.css -------------------------------------------------------------------------------- /irc/irc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/irc.php -------------------------------------------------------------------------------- /irc/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/C/messages.po -------------------------------------------------------------------------------- /irc/lang/ar/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/ar/messages.po -------------------------------------------------------------------------------- /irc/lang/ar/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/ar/strings.php -------------------------------------------------------------------------------- /irc/lang/ca/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/ca/strings.php -------------------------------------------------------------------------------- /irc/lang/cs/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/cs/messages.po -------------------------------------------------------------------------------- /irc/lang/cs/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/cs/strings.php -------------------------------------------------------------------------------- /irc/lang/da-dk/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/da-dk/messages.po -------------------------------------------------------------------------------- /irc/lang/da-dk/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/da-dk/strings.php -------------------------------------------------------------------------------- /irc/lang/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/de/messages.po -------------------------------------------------------------------------------- /irc/lang/de/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/de/strings.php -------------------------------------------------------------------------------- /irc/lang/eo/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/eo/strings.php -------------------------------------------------------------------------------- /irc/lang/es/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/es/messages.po -------------------------------------------------------------------------------- /irc/lang/es/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/es/strings.php -------------------------------------------------------------------------------- /irc/lang/fi-fi/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/fi-fi/messages.po -------------------------------------------------------------------------------- /irc/lang/fi-fi/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/fi-fi/strings.php -------------------------------------------------------------------------------- /irc/lang/fr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/fr/messages.po -------------------------------------------------------------------------------- /irc/lang/fr/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/fr/strings.php -------------------------------------------------------------------------------- /irc/lang/hu/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/hu/messages.po -------------------------------------------------------------------------------- /irc/lang/hu/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/hu/strings.php -------------------------------------------------------------------------------- /irc/lang/is/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/is/strings.php -------------------------------------------------------------------------------- /irc/lang/it/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/it/messages.po -------------------------------------------------------------------------------- /irc/lang/it/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/it/strings.php -------------------------------------------------------------------------------- /irc/lang/ja/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/ja/messages.po -------------------------------------------------------------------------------- /irc/lang/ja/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/ja/strings.php -------------------------------------------------------------------------------- /irc/lang/nb-no/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/nb-no/strings.php -------------------------------------------------------------------------------- /irc/lang/nl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/nl/messages.po -------------------------------------------------------------------------------- /irc/lang/nl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/nl/strings.php -------------------------------------------------------------------------------- /irc/lang/pl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/pl/messages.po -------------------------------------------------------------------------------- /irc/lang/pl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/pl/strings.php -------------------------------------------------------------------------------- /irc/lang/pt-br/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/pt-br/messages.po -------------------------------------------------------------------------------- /irc/lang/pt-br/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/pt-br/strings.php -------------------------------------------------------------------------------- /irc/lang/ro/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/ro/messages.po -------------------------------------------------------------------------------- /irc/lang/ro/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/ro/strings.php -------------------------------------------------------------------------------- /irc/lang/ru/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/ru/strings.php -------------------------------------------------------------------------------- /irc/lang/sv/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/sv/messages.po -------------------------------------------------------------------------------- /irc/lang/sv/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/sv/strings.php -------------------------------------------------------------------------------- /irc/lang/zh-cn/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/zh-cn/messages.po -------------------------------------------------------------------------------- /irc/lang/zh-cn/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/lang/zh-cn/strings.php -------------------------------------------------------------------------------- /irc/templates/admin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/templates/admin.tpl -------------------------------------------------------------------------------- /irc/templates/settings.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/irc/templates/settings.tpl -------------------------------------------------------------------------------- /js_upload/file-uploader/client/do-nothing.htm: -------------------------------------------------------------------------------- 1 | {success:true} 2 | -------------------------------------------------------------------------------- /js_upload/file-uploader/server/uploads/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /js_upload/file-uploader/tests/action-slow-response.php: -------------------------------------------------------------------------------- 1 | strings["Member since:"] = "Členem od:"; 4 | -------------------------------------------------------------------------------- /membersince/lang/de/strings.php: -------------------------------------------------------------------------------- 1 | strings["Member since:"] = "Mitglied seit:"; 4 | -------------------------------------------------------------------------------- /membersince/lang/is/strings.php: -------------------------------------------------------------------------------- 1 | strings["Member since:"] = ""; 4 | -------------------------------------------------------------------------------- /membersince/lang/nb-no/strings.php: -------------------------------------------------------------------------------- 1 | strings["Member since:"] = ""; 4 | -------------------------------------------------------------------------------- /membersince/lang/pl/strings.php: -------------------------------------------------------------------------------- 1 | strings["Member since:"] = "Data dołączenia:"; 4 | -------------------------------------------------------------------------------- /membersince/lang/ru/strings.php: -------------------------------------------------------------------------------- 1 | strings["Member since:"] = "Зарегистрирован с:"; 4 | -------------------------------------------------------------------------------- /membersince/lang/sv/strings.php: -------------------------------------------------------------------------------- 1 | strings["Member since:"] = "客人从:"; 4 | -------------------------------------------------------------------------------- /membersince/membersince.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/membersince/membersince.php -------------------------------------------------------------------------------- /monolog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/monolog/README.md -------------------------------------------------------------------------------- /monolog/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/monolog/composer.json -------------------------------------------------------------------------------- /monolog/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/monolog/composer.lock -------------------------------------------------------------------------------- /monolog/monolog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/monolog/monolog.php -------------------------------------------------------------------------------- /monolog/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/monolog/vendor/autoload.php -------------------------------------------------------------------------------- /morechoice/morechoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/morechoice/morechoice.php -------------------------------------------------------------------------------- /morepokes/morepokes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/morepokes/morepokes.php -------------------------------------------------------------------------------- /newmemberwidget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/newmemberwidget/README.md -------------------------------------------------------------------------------- /nitter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nitter/LICENSE -------------------------------------------------------------------------------- /nitter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nitter/README.md -------------------------------------------------------------------------------- /nitter/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nitter/lang/C/messages.po -------------------------------------------------------------------------------- /nitter/lang/ar/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nitter/lang/ar/messages.po -------------------------------------------------------------------------------- /nitter/lang/ar/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nitter/lang/ar/strings.php -------------------------------------------------------------------------------- /nitter/lang/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nitter/lang/de/messages.po -------------------------------------------------------------------------------- /nitter/lang/de/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nitter/lang/de/strings.php -------------------------------------------------------------------------------- /nitter/lang/hu/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nitter/lang/hu/messages.po -------------------------------------------------------------------------------- /nitter/lang/hu/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nitter/lang/hu/strings.php -------------------------------------------------------------------------------- /nitter/lang/ja/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nitter/lang/ja/messages.po -------------------------------------------------------------------------------- /nitter/lang/ja/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nitter/lang/ja/strings.php -------------------------------------------------------------------------------- /nitter/nitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nitter/nitter.php -------------------------------------------------------------------------------- /nitter/templates/admin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nitter/templates/admin.tpl -------------------------------------------------------------------------------- /nominatim/nominatim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nominatim/nominatim.php -------------------------------------------------------------------------------- /notifyall/NotifyAllEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/notifyall/NotifyAllEmail.php -------------------------------------------------------------------------------- /notifyall/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/notifyall/lang/C/messages.po -------------------------------------------------------------------------------- /notifyall/notifyall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/notifyall/notifyall.php -------------------------------------------------------------------------------- /nsfw/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/README -------------------------------------------------------------------------------- /nsfw/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/C/messages.po -------------------------------------------------------------------------------- /nsfw/lang/ar/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/ar/messages.po -------------------------------------------------------------------------------- /nsfw/lang/ar/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/ar/strings.php -------------------------------------------------------------------------------- /nsfw/lang/ca/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/ca/strings.php -------------------------------------------------------------------------------- /nsfw/lang/cs/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/cs/messages.po -------------------------------------------------------------------------------- /nsfw/lang/cs/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/cs/strings.php -------------------------------------------------------------------------------- /nsfw/lang/da-dk/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/da-dk/messages.po -------------------------------------------------------------------------------- /nsfw/lang/da-dk/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/da-dk/strings.php -------------------------------------------------------------------------------- /nsfw/lang/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/de/messages.po -------------------------------------------------------------------------------- /nsfw/lang/de/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/de/strings.php -------------------------------------------------------------------------------- /nsfw/lang/en-gb/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/en-gb/messages.po -------------------------------------------------------------------------------- /nsfw/lang/en-gb/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/en-gb/strings.php -------------------------------------------------------------------------------- /nsfw/lang/en-us/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/en-us/messages.po -------------------------------------------------------------------------------- /nsfw/lang/en-us/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/en-us/strings.php -------------------------------------------------------------------------------- /nsfw/lang/eo/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/eo/strings.php -------------------------------------------------------------------------------- /nsfw/lang/es/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/es/messages.po -------------------------------------------------------------------------------- /nsfw/lang/es/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/es/strings.php -------------------------------------------------------------------------------- /nsfw/lang/fi-fi/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/fi-fi/messages.po -------------------------------------------------------------------------------- /nsfw/lang/fi-fi/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/fi-fi/strings.php -------------------------------------------------------------------------------- /nsfw/lang/fr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/fr/messages.po -------------------------------------------------------------------------------- /nsfw/lang/fr/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/fr/strings.php -------------------------------------------------------------------------------- /nsfw/lang/hu/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/hu/messages.po -------------------------------------------------------------------------------- /nsfw/lang/hu/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/hu/strings.php -------------------------------------------------------------------------------- /nsfw/lang/is/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/is/strings.php -------------------------------------------------------------------------------- /nsfw/lang/it/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/it/messages.po -------------------------------------------------------------------------------- /nsfw/lang/it/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/it/strings.php -------------------------------------------------------------------------------- /nsfw/lang/nb-no/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/nb-no/strings.php -------------------------------------------------------------------------------- /nsfw/lang/nl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/nl/messages.po -------------------------------------------------------------------------------- /nsfw/lang/nl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/nl/strings.php -------------------------------------------------------------------------------- /nsfw/lang/pl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/pl/messages.po -------------------------------------------------------------------------------- /nsfw/lang/pl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/pl/strings.php -------------------------------------------------------------------------------- /nsfw/lang/pt-br/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/pt-br/messages.po -------------------------------------------------------------------------------- /nsfw/lang/pt-br/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/pt-br/strings.php -------------------------------------------------------------------------------- /nsfw/lang/ro/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/ro/messages.po -------------------------------------------------------------------------------- /nsfw/lang/ro/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/ro/strings.php -------------------------------------------------------------------------------- /nsfw/lang/ru/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/ru/messages.po -------------------------------------------------------------------------------- /nsfw/lang/ru/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/ru/strings.php -------------------------------------------------------------------------------- /nsfw/lang/sv/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/sv/messages.po -------------------------------------------------------------------------------- /nsfw/lang/sv/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/sv/strings.php -------------------------------------------------------------------------------- /nsfw/lang/zh-cn/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/zh-cn/messages.po -------------------------------------------------------------------------------- /nsfw/lang/zh-cn/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/lang/zh-cn/strings.php -------------------------------------------------------------------------------- /nsfw/nsfw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/nsfw.php -------------------------------------------------------------------------------- /nsfw/templates/settings.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/nsfw/templates/settings.tpl -------------------------------------------------------------------------------- /numfriends/numfriends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/numfriends/numfriends.php -------------------------------------------------------------------------------- /openstreetmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/openstreetmap/README.md -------------------------------------------------------------------------------- /opmlexport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/opmlexport/README.md -------------------------------------------------------------------------------- /opmlexport/opmlexport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/opmlexport/opmlexport.php -------------------------------------------------------------------------------- /pageheader/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/pageheader/README -------------------------------------------------------------------------------- /pageheader/pageheader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/pageheader/pageheader.css -------------------------------------------------------------------------------- /pageheader/pageheader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/pageheader/pageheader.php -------------------------------------------------------------------------------- /phpmailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/phpmailer/LICENSE -------------------------------------------------------------------------------- /phpmailer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/phpmailer/README.md -------------------------------------------------------------------------------- /phpmailer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/phpmailer/composer.json -------------------------------------------------------------------------------- /phpmailer/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/phpmailer/composer.lock -------------------------------------------------------------------------------- /phpmailer/phpmailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/phpmailer/phpmailer.php -------------------------------------------------------------------------------- /phpmailer/vendor/phpmailer/phpmailer/VERSION: -------------------------------------------------------------------------------- 1 | 6.9.1 2 | -------------------------------------------------------------------------------- /piwik/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/LICENSE -------------------------------------------------------------------------------- /piwik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/README.md -------------------------------------------------------------------------------- /piwik/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/C/messages.po -------------------------------------------------------------------------------- /piwik/lang/ar/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/ar/messages.po -------------------------------------------------------------------------------- /piwik/lang/ar/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/ar/strings.php -------------------------------------------------------------------------------- /piwik/lang/ca/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/ca/strings.php -------------------------------------------------------------------------------- /piwik/lang/cs/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/cs/messages.po -------------------------------------------------------------------------------- /piwik/lang/cs/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/cs/strings.php -------------------------------------------------------------------------------- /piwik/lang/da-dk/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/da-dk/messages.po -------------------------------------------------------------------------------- /piwik/lang/da-dk/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/da-dk/strings.php -------------------------------------------------------------------------------- /piwik/lang/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/de/messages.po -------------------------------------------------------------------------------- /piwik/lang/de/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/de/strings.php -------------------------------------------------------------------------------- /piwik/lang/en-gb/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/en-gb/messages.po -------------------------------------------------------------------------------- /piwik/lang/en-gb/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/en-gb/strings.php -------------------------------------------------------------------------------- /piwik/lang/eo/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/eo/strings.php -------------------------------------------------------------------------------- /piwik/lang/es/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/es/messages.po -------------------------------------------------------------------------------- /piwik/lang/es/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/es/strings.php -------------------------------------------------------------------------------- /piwik/lang/fi-fi/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/fi-fi/messages.po -------------------------------------------------------------------------------- /piwik/lang/fi-fi/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/fi-fi/strings.php -------------------------------------------------------------------------------- /piwik/lang/fr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/fr/messages.po -------------------------------------------------------------------------------- /piwik/lang/fr/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/fr/strings.php -------------------------------------------------------------------------------- /piwik/lang/hu/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/hu/messages.po -------------------------------------------------------------------------------- /piwik/lang/hu/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/hu/strings.php -------------------------------------------------------------------------------- /piwik/lang/is/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/is/strings.php -------------------------------------------------------------------------------- /piwik/lang/it/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/it/messages.po -------------------------------------------------------------------------------- /piwik/lang/it/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/it/strings.php -------------------------------------------------------------------------------- /piwik/lang/nb-no/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/nb-no/strings.php -------------------------------------------------------------------------------- /piwik/lang/nl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/nl/messages.po -------------------------------------------------------------------------------- /piwik/lang/nl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/nl/strings.php -------------------------------------------------------------------------------- /piwik/lang/pl/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/pl/messages.po -------------------------------------------------------------------------------- /piwik/lang/pl/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/pl/strings.php -------------------------------------------------------------------------------- /piwik/lang/pt-br/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/pt-br/strings.php -------------------------------------------------------------------------------- /piwik/lang/ro/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/ro/messages.po -------------------------------------------------------------------------------- /piwik/lang/ro/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/ro/strings.php -------------------------------------------------------------------------------- /piwik/lang/ru/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/ru/strings.php -------------------------------------------------------------------------------- /piwik/lang/sv/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/sv/messages.po -------------------------------------------------------------------------------- /piwik/lang/sv/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/sv/strings.php -------------------------------------------------------------------------------- /piwik/lang/zh-cn/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/zh-cn/messages.po -------------------------------------------------------------------------------- /piwik/lang/zh-cn/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/lang/zh-cn/strings.php -------------------------------------------------------------------------------- /piwik/piwik.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/piwik.css -------------------------------------------------------------------------------- /piwik/piwik.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/piwik.php -------------------------------------------------------------------------------- /piwik/templates/admin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/piwik/templates/admin.tpl -------------------------------------------------------------------------------- /planets/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/planets/lang/C/messages.po -------------------------------------------------------------------------------- /planets/planets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/planets/planets.php -------------------------------------------------------------------------------- /pnut/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/pnut/LICENSE -------------------------------------------------------------------------------- /pnut/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/pnut/README.md -------------------------------------------------------------------------------- /pnut/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/pnut/lang/C/messages.po -------------------------------------------------------------------------------- /pnut/lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/pnut/lib/LICENSE -------------------------------------------------------------------------------- /pnut/lib/phpnut.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/pnut/lib/phpnut.php -------------------------------------------------------------------------------- /pnut/pnut.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/pnut/pnut.php -------------------------------------------------------------------------------- /pnut/pnut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/pnut/pnut.svg -------------------------------------------------------------------------------- /pnut/templates/admin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/pnut/templates/admin.tpl -------------------------------------------------------------------------------- /public_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/public_server/README.md -------------------------------------------------------------------------------- /pumpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/pumpio/README.md -------------------------------------------------------------------------------- /pumpio/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/pumpio/lang/C/messages.po -------------------------------------------------------------------------------- /pumpio/oauth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/pumpio/oauth/LICENSE -------------------------------------------------------------------------------- /pumpio/oauth/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/pumpio/oauth/LICENSE.txt -------------------------------------------------------------------------------- /pumpio/oauth/http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/pumpio/oauth/http.php -------------------------------------------------------------------------------- /pumpio/pumpio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/pumpio/pumpio.php -------------------------------------------------------------------------------- /pumpio/pumpio_sync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/pumpio/pumpio_sync.php -------------------------------------------------------------------------------- /qcomment/qcomment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/qcomment/qcomment.js -------------------------------------------------------------------------------- /qcomment/qcomment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/qcomment/qcomment.php -------------------------------------------------------------------------------- /randplace/randplace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/randplace/randplace.php -------------------------------------------------------------------------------- /ratioed/RatioedPanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ratioed/RatioedPanel.php -------------------------------------------------------------------------------- /ratioed/ratioed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/ratioed/ratioed.php -------------------------------------------------------------------------------- /rendertime/lang/ca/strings.php: -------------------------------------------------------------------------------- 1 | strings["View Source"] = "Veure les Fonts"; 4 | -------------------------------------------------------------------------------- /viewsrc/lang/eo/strings.php: -------------------------------------------------------------------------------- 1 | strings["View Source"] = "Vidi Fonton"; 4 | -------------------------------------------------------------------------------- /viewsrc/lang/pt-br/strings.php: -------------------------------------------------------------------------------- 1 | strings["View Source"] = "Ver Fonte"; 4 | -------------------------------------------------------------------------------- /viewsrc/viewsrc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/viewsrc/viewsrc.php -------------------------------------------------------------------------------- /webrtc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/webrtc/README.md -------------------------------------------------------------------------------- /webrtc/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/webrtc/lang/C/messages.po -------------------------------------------------------------------------------- /webrtc/webrtc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/webrtc/webrtc.php -------------------------------------------------------------------------------- /wppost/lang/C/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/wppost/lang/C/messages.po -------------------------------------------------------------------------------- /wppost/wppost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendica/friendica-addons/HEAD/wppost/wppost.php --------------------------------------------------------------------------------