The www/sogo port
sogo-5.11.0 – web based groupware server (cvsweb github mirror)
Description
SOGo is a groupware server built around OpenGroupware.org (OGo) and the SOPE application server, with a focus on scalability. It provides the usual groupware functionality as E-Mail, Calendaring, and Contacts management.WWW: https://sogo.nu/
Readme
+----------------------------------------------------------------------- | Running ${PKGSTEM} on OpenBSD +----------------------------------------------------------------------- General setup and configuration information about SOGo can be found in ${TRUEPREFIX}/share/doc/sogo/. SOGo is designed with scalability in mind. All of the dependent components like mail-, database-, or web server can run on different hosts, and you can even choose to install your preferred software to fulfill those tasks. You have to install those components manually on the servers where you want to run them. An overview is given in the list below. For your SOGo installation you would need the following components installed somewhere. Either on the same host where you install SOGo, or distributed over multiple systems, related to your needs: - Memcached to speed up SOGo: * install the memcached package - Web Server: * install the nginx or the apache-httpd package - Database Server: * install postgresql-server package - or install mariadb-server package - LDAP Server for user authentication shared addressbooks: * install openldap-server package - or use ldapd from base - IMAP Server: * install cyrus-imapd package - or install dovecot package - or install courier-imap package - or install imap-uw package - SMTP Server or local sendmail compatible binary: * install postfix package - or use smtpd from base - or install sendmail package The alternatives marked with * are recommended. They are tested and verified to work together by the SOGo port maintainer. For the configuration of those components you should take a look at their respective documentation. The SOGo system user ==================== The system user and group intended to run the SOGo application server is called _sogo. The users home directory is ${LOCALSTATEDIR}/sogo. The SOPE database adaptor ========================= The SOPE PostgreSQL database adaptor is automatically installed. If you want to use a MySQL database as backend, you have to install the sope-mysql package on the host where SOPE and SOGo are installed. SOGo with nginx =============== Since nginx configuration is not explained in the SOGo Manual, here is an example. It's assumed that nginx(8) and SOGo run on the same host. Nginx(8) listens on port 80, and SOGo is listening on its default port 20000. Nginx runs in a chroot environment on OpenBSD, therefore you have to copy some files into the server's chroot environment: # mkdir -p ${LOCALSTATEDIR}/www/lib/sogo # cp -R ${TRUEPREFIX}/lib/GNUstep/SOGo/WebServerResources ${LOCALSTATEDIR}/www/lib/sogo/www Edit /etc/nginx/nginx.conf server { listen 80; root ${LOCALSTATEDIR}/www/lib/sogo/www/; proxy_http_version 1.1; location = / { rewrite ^ http://$server_name/SOGo; allow all; } # For IOS 7 location = /principals/ { rewrite ^ http://$server_name/SOGo/dav; allow all; } location = /.well-known/caldav/ { rewrite ^ http://$server_name/SOGo/dav; } location = /.well-known/carddav/ { rewrite ^ http://$server_name/SOGo/dav; allow all; } location ^~/SOGo { proxy_pass http://127.0.0.1:20000; proxy_redirect http://127.0.0.1:20000 default; # forward user's IP address proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $host; proxy_set_header x-webobjects-server-protocol HTTP/1.0; proxy_set_header x-webobjects-remote-host 127.0.0.1; proxy_set_header x-webobjects-server-name $server_name; proxy_set_header x-webobjects-server-url $scheme://$host; proxy_set_header x-webobjects-server-port $server_port; proxy_connect_timeout 90; proxy_send_timeout 90; proxy_read_timeout 90; proxy_buffer_size 64k; proxy_buffers 8 64k; proxy_busy_buffers_size 64k; proxy_temp_file_write_size 64k; client_max_body_size 50m; client_body_buffer_size 128k; break; } location /SOGo.woa/WebServerResources/ { alias ${LOCALSTATEDIR}/www/lib/sogo/www/; allow all; } location /SOGo/WebServerResources/ { alias ${LOCALSTATEDIR}/www/lib/sogo/www/; allow all; } location ^/SOGo/so/ControlPanel/Products/([^/]*)/Resources/(.*)$ { alias ${LOCALSTATEDIR}/www/lib/sogo/$1.SOGo/Resources/$2; } location ^/SOGo/so/ControlPanel/Products/[^/]*UI/Resources/.*\.(jpg|png|gif|css|js)$ { alias ${LOCALSTATEDIR}/www/lib/sogo/$1.SOGo/Resources/$2; } } SOGo with apache-httpd package ============================== The configuration of SOGo behind Apache is described in the manual. A note on using CAS =================== Using CAS is not tested by the maintainer. You have to copy ${TRUEPREFIX}/share/doc/sogo/cas-proxy-validate.py to ${LOCALSTATEDIR}/www/cgi-bin. Within the script, you have to edit the config array and the path to your python to fit your configurtaion. The script also requires Python memcached, provided by the py-memcached package. A note on using Thunderbird integrator ====================================== If you are going to use Thunderbird integrator you will need the php script installed on ${TRUEPREFIX}/share/doc/sogo/updates.php. You should copy it under ${LOCALSTATEDIR}/www/htdocs, install the php package and follow the instuctions in the SOGo manual. SOGo configuration example ========================== Below you see an example SOGo configuration. The example assumes you have the recommended server components installed as mentioned above. You have to apply them as user _sogo using the defaults command, i.e: defaults write sogodIn the example below it is assumed that all components run on the same host. For details to each of the defaults consult the SOGo Administration manual. sogod SOGoUserSources '( { CNFieldName = cn; IDFieldName = uid; IMAPHostFieldName = mailHost; UIDFieldName = uid; baseDN = "ou=people,dc=intern"; bindDN = "cn=Manager,dc=intern"; bindPassword = ManagerLDAPPassword; canAuthenticate = YES; displayName = "SOGo Accounts"; hostname = localhost; id = public; isAddressBook = YES; port = 389; } )' sogod SOGoSMTPServer localhost sogod SOGoIMAPServer localhost sogod SOGoLanguage English sogod SOGoTimeZone Europe/Berlin sogod SOGoFoldersSendEMailNotifications YES sogod SOGoMemcachedHost localhost sogod SOGoMailingMechanism smtp sogod WOLogFile ${LOCALSTATEDIR}/log/sogo/sogod.log sogod WOPidFile ${LOCALSTATEDIR}/sogo/sogod.pid sogod SOGoMailDomain my-domain.com sogod OCSFolderInfoURL postgresql://_sogo:sogo@localhost:5432/sogo/sogo_folder_info sogod SOGoProfileURL postgresql://_sogo:sogo@localhost:5432/sogo/sogo_user_profile sogod OCSSessionsFolderURL postgresql://_sogo:sogo@localhost:5432/sogo/sogo_sessions_folder sogod SOGoACLsSendEMailNotifications YES sogod SOGoAppointmentSendEMailNotifications YES sogod WOWorkersCount 4 sogod WOPort 127.0.0.1:20000 sogod SOGoDraftsFolderName INBOX.Drafts sogod SOGoTrashFolderName INBOX.Trash sogod SOGoSentFolderName INBOX.Sent sogod SOGoZipPath ${LOCALBASE}/bin/zip Upgrading from older SOGo versions ================================== Update the files in the chroot environment of apache as root: # rm -rf ${LOCALSTATEDIR}/www/lib/sogo # mkdir -p ${LOCALSTATEDIR}/www/lib/sogo # cp -R ${TRUEPREFIX}/lib/GNUstep/SOGo/WebServerResources ${LOCALSTATEDIR}/www/lib/sogo/www Upgrade SOGo from < 2.3.0 ========================== With version 2.3.0, the database schema needs to be extended. Run one of the following scripts as the SOGo system user _sogo. Choose the script based on your database backend. The scripts will ask you for the database credentials. # su _sogo "${TRUEPREFIX}/share/doc/sogo/sql-update-2.2.17_to_2.3.0.sh" # su _sogo "${TRUEPREFIX}/share/doc/sogo/sql-update-2.2.17_to_2.3.0-mysql.sh" Upgrade SOGo from < 3.0.0 ========================= With version 3.X you can update the database schema to the optional 9-table model. The conversion is not required, and you should only do it when you are sure you know what you are doing. The scripts require you have configured sogo via /etc/sogo/sogo.conf. Use at your own risk. # su _sogo "${TRUEPREFIX}/share/doc/sogo/sql-update-3.0.0-to-combined.sh" # su _sogo "${TRUEPREFIX}/share/doc/sogo/sql-update-3.0.0-to-combined-mysql.sh" Upgrade SOGo from < 4.0.0 ========================= Updating SOGo from version 3.X to 4.X requires an update of the database schema. Run one of the following scripts as the SOGo system user _sogo. Choose the script based on your database backend. The scripts will ask you for the database credentials. # su _sogo "${TRUEPREFIX}/share/doc/sogo/sql-update-3.2.10_to_4.0.0.sh" # su _sogo "${TRUEPREFIX}/share/doc/sogo/sql-update-3.2.10_to_4.0.0-mysql.sh" Upgrade SOGo from < 5.7.1 ========================= With version 5.7.1, the WOPort default has to be set, as it now tries to listen on IPv4 and IPv6 in parallel, which fails on OpenBSD. The prior default was to listen on 127.0.0.1:20000. To get back the old behaviour, run the following command: # su _sogo "defaults write sogod WOPort 127.0.0.1:20000"
Maintainer
Sebastian Reitenbach
Only for arches
aarch64 amd64 arm i386 powerpc powerpc64 riscv64
Categories
Library dependencies
Build dependencies
Run dependencies
Files
- /etc/login.conf.d/sogod
- /etc/rc.d/sogod
- /usr/local/include/GDLContentStore/
- /usr/local/include/GDLContentStore/EOAdaptorChannel+GCS.h
- /usr/local/include/GDLContentStore/GCSAdminFolder.h
- /usr/local/include/GDLContentStore/GCSAlarmsFolder.h
- /usr/local/include/GDLContentStore/GCSChannelManager.h
- /usr/local/include/GDLContentStore/GCSContext.h
- /usr/local/include/GDLContentStore/GCSFieldInfo.h
- /usr/local/include/GDLContentStore/GCSFolder.h
- /usr/local/include/GDLContentStore/GCSFolderManager.h
- /usr/local/include/GDLContentStore/GCSFolderType.h
- /usr/local/include/GDLContentStore/GCSSessionsFolder.h
- /usr/local/include/GDLContentStore/GCSSpecialQueries.h
- /usr/local/include/GDLContentStore/GCSStringFormatter.h
- /usr/local/include/GDLContentStore/NSURL+GCS.h
- /usr/local/include/NGCards/
- /usr/local/include/NGCards/CardElement.h
- /usr/local/include/NGCards/CardGroup.h
- /usr/local/include/NGCards/CardVersitRenderer.h
- /usr/local/include/NGCards/NGCards.h
- /usr/local/include/NGCards/NGVCard.h
- /usr/local/include/NGCards/NGVCardPhoto.h
- /usr/local/include/NGCards/NGVCardReference.h
- /usr/local/include/NGCards/NGVList.h
- /usr/local/include/NGCards/NSArray+NGCards.h
- /usr/local/include/NGCards/NSCalendarDate+ICal.h
- /usr/local/include/NGCards/NSCalendarDate+NGCards.h
- /usr/local/include/NGCards/NSDictionary+NGCards.h
- /usr/local/include/NGCards/NSString+NGCards.h
- /usr/local/include/NGCards/iCalAlarm.h
- /usr/local/include/NGCards/iCalAttachment.h
- /usr/local/include/NGCards/iCalByDayMask.h
- /usr/local/include/NGCards/iCalCalendar.h
- /usr/local/include/NGCards/iCalDataSource.h
- /usr/local/include/NGCards/iCalDateTime.h
- /usr/local/include/NGCards/iCalEntityObject.h
- /usr/local/include/NGCards/iCalEvent.h
- /usr/local/include/NGCards/iCalEventChanges.h
- /usr/local/include/NGCards/iCalFreeBusy.h
- /usr/local/include/NGCards/iCalJournal.h
- /usr/local/include/NGCards/iCalObject.h
- /usr/local/include/NGCards/iCalPerson.h
- /usr/local/include/NGCards/iCalRecurrenceCalculator.h
- /usr/local/include/NGCards/iCalRecurrenceRule.h
- /usr/local/include/NGCards/iCalRepeatableEntityObject.h
- /usr/local/include/NGCards/iCalTimeZone.h
- /usr/local/include/NGCards/iCalTimeZonePeriod.h
- /usr/local/include/NGCards/iCalToDo.h
- /usr/local/include/NGCards/iCalTrigger.h
- /usr/local/include/NGCards/iCalUTCOffset.h
- /usr/local/include/NGCards/iCalXMLRenderer.h
- /usr/local/include/SOGo
- /usr/local/include/SOGoUI/
- /usr/local/include/SOGoUI/SOGoAptFormatter.h
- /usr/local/include/SOGoUI/SOGoDirectAction.h
- /usr/local/include/SOGoUI/UIxComponent.h
- /usr/local/lib/GNUstep/Frameworks/
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Headers
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Resources
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/BSONCodec.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/CardElement+SOGo.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/DOMNode+SOGo.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/EOBitmaskQualifier.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/EOQualifier+SOGoCacheObject.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/GCSSpecialQueries+SOGoCacheObject.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/JWT.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/LDAPSource.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/LDAPSourceSchema.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/NGMimeBodyPart+SOGo.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/NGMimeFileData+SOGo.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/NSArray+DAV.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/NSArray+Utilities.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/NSCalendarDate+SOGo.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/NSData+Crypto.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/NSDictionary+DAV.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/NSDictionary+URL.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/NSDictionary+Utilities.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/NSNull+Utilities.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/NSNumber+Utilities.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/NSObject+DAV.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/NSObject+Utilities.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/NSString+Crypto.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/NSString+DAV.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/NSString+Utilities.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/NSURL+DAV.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/RTFHandler.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoAdmin.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoAuthenticator.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoBuild.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoCASSession.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoCache.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoCacheGCSFolder.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoCacheGCSObject.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoCacheObject.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoConstants.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoContentObject.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoCredentialsFile.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoDAVAuthenticator.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoDateFormatter.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoDefaultsSource.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoDomainDefaults.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoEmptyAuthenticator.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoFolder.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoGCSFolder.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoLDAPDefaults.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoMailer.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoMobileProvision.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoObject.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoParentFolder.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoPermissions.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoProductLoader.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoProxyAuthenticator.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoSession.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoSieveManager.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoSource.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoStartupLogger.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoStaticAuthenticator.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoSystemDefaults.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoTextTemplateFile.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoUser.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoUserDefaults.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoUserFolder.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoUserManager.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoUserProfile.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoWebAuthenticator.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoWebDAVAclManager.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoWebDAVValue.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SOGoZipArchiver.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/SQLSource.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/WOContext+SOGo.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/WORequest+SOGo.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/WOResourceManager+SOGo.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Headers/WOResponse+SOGo.h
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Resources/
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Resources/CASLogoutRequestMap.plist
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Resources/DAVReportMap.plist
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Resources/Info-gnustep.plist
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/Resources/SOGoDefaults.plist
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/sogo/
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/sogo/SOGo
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/5.2/sogo/libSOGo.so.5.2
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/Versions/Current
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/sogo/
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/sogo/SOGo
- /usr/local/lib/GNUstep/Frameworks/SOGo.framework/sogo/libSOGo.so.5.2
- /usr/local/lib/GNUstep/Libraries/Resources/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Abidjan.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Accra.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Addis_Ababa.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Algiers.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Asmara.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Asmera.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Bamako.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Bangui.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Banjul.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Bissau.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Blantyre.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Brazzaville.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Bujumbura.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Cairo.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Casablanca.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Ceuta.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Conakry.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Dakar.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Dar_es_Salaam.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Djibouti.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Douala.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/El_Aaiun.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Freetown.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Gaborone.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Harare.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Johannesburg.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Juba.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Kampala.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Khartoum.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Kigali.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Kinshasa.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Lagos.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Libreville.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Lome.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Luanda.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Lubumbashi.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Lusaka.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Malabo.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Maputo.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Maseru.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Mbabane.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Mogadishu.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Monrovia.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Nairobi.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Ndjamena.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Niamey.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Nouakchott.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Ouagadougou.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Porto-Novo.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Sao_Tome.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Timbuktu.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Tripoli.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Tunis.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Africa/Windhoek.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Adak.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Anchorage.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Anguilla.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Antigua.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Araguaina.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/Buenos_Aires.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/Catamarca.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/ComodRivadavia.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/Cordoba.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/Jujuy.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/La_Rioja.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/Mendoza.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/Rio_Gallegos.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/Salta.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/San_Juan.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/San_Luis.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/Tucuman.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Argentina/Ushuaia.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Aruba.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Asuncion.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Atikokan.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Atka.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Bahia.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Bahia_Banderas.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Barbados.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Belem.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Belize.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Blanc-Sablon.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Boa_Vista.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Bogota.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Boise.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Buenos_Aires.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cambridge_Bay.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Campo_Grande.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cancun.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Caracas.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Catamarca.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cayenne.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cayman.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Chicago.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Chihuahua.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Ciudad_Juarez.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Coral_Harbour.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cordoba.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Costa_Rica.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Creston.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Cuiaba.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Curacao.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Danmarkshavn.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Dawson.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Dawson_Creek.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Denver.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Detroit.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Dominica.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Edmonton.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Eirunepe.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/El_Salvador.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Ensenada.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Fort_Nelson.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Fort_Wayne.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Fortaleza.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Glace_Bay.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Godthab.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Goose_Bay.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Grand_Turk.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Grenada.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Guadeloupe.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Guatemala.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Guayaquil.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Guyana.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Halifax.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Havana.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Hermosillo.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Indianapolis.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Knox.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Marengo.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Petersburg.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Tell_City.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Vevay.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Vincennes.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indiana/Winamac.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Indianapolis.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Inuvik.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Iqaluit.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Jamaica.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Jujuy.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Juneau.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Kentucky/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Kentucky/Louisville.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Kentucky/Monticello.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Knox_IN.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Kralendijk.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/La_Paz.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Lima.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Los_Angeles.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Louisville.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Lower_Princes.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Maceio.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Managua.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Manaus.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Marigot.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Martinique.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Matamoros.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Mazatlan.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Mendoza.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Menominee.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Merida.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Metlakatla.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Mexico_City.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Miquelon.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Moncton.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Monterrey.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Montevideo.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Montreal.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Montserrat.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Nassau.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/New_York.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Nipigon.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Nome.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Noronha.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/North_Dakota/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/North_Dakota/Beulah.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/North_Dakota/Center.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/North_Dakota/New_Salem.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Nuuk.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Ojinaga.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Panama.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Pangnirtung.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Paramaribo.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Phoenix.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Port-au-Prince.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Port_of_Spain.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Porto_Acre.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Porto_Velho.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Puerto_Rico.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Punta_Arenas.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Rainy_River.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Rankin_Inlet.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Recife.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Regina.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Resolute.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Rio_Branco.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Rosario.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Santa_Isabel.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Santarem.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Santiago.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Santo_Domingo.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Sao_Paulo.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Scoresbysund.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Shiprock.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Sitka.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Barthelemy.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Johns.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Kitts.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Lucia.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Thomas.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/St_Vincent.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Swift_Current.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Tegucigalpa.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Thule.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Thunder_Bay.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Tijuana.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Toronto.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Tortola.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Vancouver.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Virgin.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Whitehorse.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Winnipeg.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Yakutat.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/America/Yellowknife.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/Casey.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/Davis.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/DumontDUrville.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/Macquarie.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/Mawson.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/McMurdo.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/Palmer.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/Rothera.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/South_Pole.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/Syowa.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/Troll.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Antarctica/Vostok.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Arctic/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Arctic/Longyearbyen.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Aden.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Almaty.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Amman.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Anadyr.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Aqtau.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Aqtobe.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Ashgabat.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Ashkhabad.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Atyrau.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Baghdad.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Bahrain.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Baku.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Bangkok.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Barnaul.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Beirut.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Bishkek.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Brunei.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Calcutta.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Chita.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Choibalsan.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Chongqing.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Chungking.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Colombo.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Dacca.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Damascus.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Dhaka.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Dili.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Dubai.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Dushanbe.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Famagusta.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Gaza.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Harbin.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Hebron.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Ho_Chi_Minh.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Hong_Kong.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Hovd.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Irkutsk.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Istanbul.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Jakarta.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Jayapura.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Jerusalem.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kabul.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kamchatka.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Karachi.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kashgar.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kathmandu.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Katmandu.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Khandyga.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kolkata.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Krasnoyarsk.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kuala_Lumpur.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kuching.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Kuwait.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Macao.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Macau.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Magadan.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Makassar.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Manila.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Muscat.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Nicosia.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Novokuznetsk.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Novosibirsk.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Omsk.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Oral.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Phnom_Penh.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Pontianak.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Pyongyang.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Qatar.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Qostanay.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Qyzylorda.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Rangoon.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Riyadh.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Saigon.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Sakhalin.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Samarkand.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Seoul.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Shanghai.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Singapore.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Srednekolymsk.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Taipei.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Tashkent.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Tbilisi.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Tehran.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Tel_Aviv.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Thimbu.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Thimphu.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Tokyo.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Tomsk.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Ujung_Pandang.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Ulaanbaatar.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Ulan_Bator.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Urumqi.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Ust-Nera.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Vientiane.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Vladivostok.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Yakutsk.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Yangon.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Yekaterinburg.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Asia/Yerevan.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/Azores.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/Bermuda.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/Canary.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/Cape_Verde.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/Faeroe.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/Faroe.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/Jan_Mayen.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/Madeira.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/Reykjavik.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/South_Georgia.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/St_Helena.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Atlantic/Stanley.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/ACT.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Adelaide.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Brisbane.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Broken_Hill.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Canberra.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Currie.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Darwin.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Eucla.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Hobart.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/LHI.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Lindeman.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Lord_Howe.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Melbourne.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/NSW.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/North.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Perth.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Queensland.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/South.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Sydney.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Tasmania.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Victoria.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/West.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Australia/Yancowinna.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Brazil/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Brazil/Acre.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Brazil/DeNoronha.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Brazil/East.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Brazil/West.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/CET.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/CST6CDT.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Canada/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Canada/Atlantic.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Canada/Central.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Canada/Eastern.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Canada/Mountain.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Canada/Newfoundland.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Canada/Pacific.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Canada/Saskatchewan.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Canada/Yukon.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Chile/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Chile/Continental.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Chile/EasterIsland.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Cuba.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/EET.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/EST.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/EST5EDT.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Egypt.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Eire.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT+0.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT+1.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT+10.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT+11.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT+12.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT+2.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT+3.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT+4.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT+5.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT+6.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT+7.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT+8.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT+9.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT-0.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT-1.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT-10.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT-11.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT-12.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT-13.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT-14.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT-2.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT-3.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT-4.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT-5.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT-6.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT-7.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT-8.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT-9.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/GMT0.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/Greenwich.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/UCT.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/UTC.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/Universal.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Etc/Zulu.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Amsterdam.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Andorra.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Astrakhan.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Athens.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Belfast.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Belgrade.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Berlin.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Bratislava.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Brussels.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Bucharest.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Budapest.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Busingen.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Chisinau.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Copenhagen.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Dublin.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Gibraltar.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Guernsey.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Helsinki.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Isle_of_Man.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Istanbul.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Jersey.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Kaliningrad.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Kiev.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Kirov.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Kyiv.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Lisbon.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Ljubljana.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/London.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Luxembourg.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Madrid.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Malta.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Mariehamn.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Minsk.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Monaco.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Moscow.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Nicosia.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Oslo.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Paris.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Podgorica.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Prague.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Riga.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Rome.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Samara.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/San_Marino.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Sarajevo.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Saratov.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Simferopol.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Skopje.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Sofia.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Stockholm.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Tallinn.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Tirane.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Tiraspol.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Ulyanovsk.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Uzhgorod.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Vaduz.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Vatican.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Vienna.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Vilnius.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Volgograd.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Warsaw.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Zagreb.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Zaporozhye.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Europe/Zurich.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/GB-Eire.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/GB.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/GMT+0.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/GMT-0.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/GMT.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/GMT0.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Greenwich.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/HST.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Hongkong.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Iceland.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Antananarivo.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Chagos.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Christmas.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Cocos.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Comoro.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Kerguelen.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Mahe.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Maldives.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Mauritius.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Mayotte.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Indian/Reunion.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Iran.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Israel.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Jamaica.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Japan.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Kwajalein.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Libya.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/MET.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/MST.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/MST7MDT.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Mexico/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Mexico/BajaNorte.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Mexico/BajaSur.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Mexico/General.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/NZ-CHAT.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/NZ.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Navajo.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/PRC.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/PST8PDT.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Apia.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Auckland.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Bougainville.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Chatham.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Chuuk.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Easter.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Efate.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Enderbury.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Fakaofo.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Fiji.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Funafuti.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Galapagos.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Gambier.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Guadalcanal.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Guam.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Honolulu.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Johnston.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Kanton.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Kiritimati.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Kosrae.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Kwajalein.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Majuro.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Marquesas.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Midway.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Nauru.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Niue.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Norfolk.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Noumea.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Pago_Pago.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Palau.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Pitcairn.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Pohnpei.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Ponape.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Port_Moresby.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Rarotonga.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Saipan.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Samoa.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Tahiti.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Tarawa.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Tongatapu.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Truk.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Wake.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Wallis.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Pacific/Yap.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Poland.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Portugal.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/ROC.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/ROK.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Singapore.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Turkey.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/UCT.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/UPDATING
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/US/
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/US/Alaska.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/US/Aleutian.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/US/Arizona.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/US/Central.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/US/East-Indiana.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/US/Eastern.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/US/Hawaii.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/US/Indiana-Starke.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/US/Michigan.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/US/Mountain.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/US/Pacific.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/US/Samoa.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/UTC.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Universal.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/W-SU.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/WET.ics
- /usr/local/lib/GNUstep/Libraries/Resources/NGCards/TimeZones/Zulu.ics
- /usr/local/lib/GNUstep/OCSTypeModels/
- /usr/local/lib/GNUstep/OCSTypeModels/appointment-oracle.ocs
- /usr/local/lib/GNUstep/OCSTypeModels/appointment.ocs
- /usr/local/lib/GNUstep/OCSTypeModels/contact-oracle.ocs
- /usr/local/lib/GNUstep/OCSTypeModels/contact.ocs
- /usr/local/lib/GNUstep/SOGo/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/AdministrationUI
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Arabic.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Arabic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Basque.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Basque.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Bosnian.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Bosnian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/BrazilianPortuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Bulgarian.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Bulgarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Catalan.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Catalan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/ChineseChina.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/ChineseChina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/ChineseTaiwan.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Croatian.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Croatian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Czech.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Czech.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Danish.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Danish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Dutch.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Dutch.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/English.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/English.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Finnish.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Finnish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/French.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/French.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Galician.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Galician.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/German.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/German.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Hebrew.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Hebrew.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Hungarian.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Icelandic.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Indonesian.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Indonesian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Info-gnustep.plist
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Italian.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Italian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Japanese.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Japanese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Kazakh.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Kazakh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Latvian.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Latvian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Lithuanian.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Lithuanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Macedonian.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Macedonian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Montenegrin.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Montenegrin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/NorwegianBokmal.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/NorwegianNynorsk.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Polish.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Polish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Portuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Portuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Romanian.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Romanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Russian.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Russian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Serbian.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Serbian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/SerbianLatin.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/SerbianLatin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Slovak.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Slovak.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Slovenian.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Slovenian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/SpanishArgentina.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/SpanishSpain.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Swedish.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Swedish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/TurkishTurkey.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/TurkishTurkey.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Ukrainian.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Welsh.lproj/
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/Welsh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/Resources/product.plist
- /usr/local/lib/GNUstep/SOGo/AdministrationUI.SOGo/stamp.make
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Appointments
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Arabic.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Arabic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Basque.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Basque.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Bosnian.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Bosnian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/BrazilianPortuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Bulgarian.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Bulgarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Catalan.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Catalan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/ChineseChina.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/ChineseChina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/ChineseTaiwan.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Croatian.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Croatian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Czech.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Czech.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Danish.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Danish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Dutch.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Dutch.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/English.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/English.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Finnish.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Finnish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/French.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/French.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Galician.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Galician.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/German.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/German.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Hebrew.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Hebrew.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Hungarian.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Hungarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Icelandic.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Icelandic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Indonesian.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Indonesian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Info-gnustep.plist
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Italian.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Italian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Japanese.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Japanese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Kazakh.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Kazakh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Latvian.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Latvian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Lithuanian.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Lithuanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/MSExchangeFreeBusySOAPRequest.wo/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/MSExchangeFreeBusySOAPRequest.wo/MSExchangeFreeBusySOAPRequest.html
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/MSExchangeFreeBusySOAPRequest.wo/MSExchangeFreeBusySOAPRequest.wod
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/MSExchangeFreeBusySOAPResponseMap.plist
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Macedonian.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Macedonian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Montenegrin.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Montenegrin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/NorwegianBokmal.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/NorwegianNynorsk.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Polish.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Polish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Portuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Portuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Romanian.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Romanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Russian.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Russian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Serbian.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Serbian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/SerbianLatin.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/SerbianLatin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Slovak.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Slovak.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Slovenian.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Slovenian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/SpanishArgentina.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/SpanishSpain.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Swedish.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Swedish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/TurkishTurkey.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/TurkishTurkey.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Ukrainian.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Ukrainian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/WebServer/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Welsh.lproj/
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/Welsh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/Resources/product.plist
- /usr/local/lib/GNUstep/SOGo/Appointments.SOGo/bundle-info.plist
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/CommonUI
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Arabic.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Arabic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Basque.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Basque.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Bosnian.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Bosnian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/BrazilianPortuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Bulgarian.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Bulgarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Catalan.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Catalan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/ChineseChina.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/ChineseChina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/ChineseTaiwan.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Croatian.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Croatian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Czech.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Czech.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Danish.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Danish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Dutch.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Dutch.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/English.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/English.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Finnish.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Finnish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/French.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/French.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Galician.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Galician.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/German.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/German.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Hebrew.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Hebrew.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Hungarian.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Icelandic.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Indonesian.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Indonesian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Info-gnustep.plist
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Italian.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Italian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Japanese.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Japanese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Kazakh.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Kazakh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Latvian.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Latvian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Lithuanian.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Lithuanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Macedonian.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Macedonian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Montenegrin.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Montenegrin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/NorwegianBokmal.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/NorwegianNynorsk.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Polish.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Polish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Portuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Portuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Romanian.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Romanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Russian.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Russian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Serbian.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Serbian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/SerbianLatin.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/SerbianLatin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Slovak.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Slovak.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Slovenian.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Slovenian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/SpanishArgentina.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/SpanishSpain.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Swedish.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Swedish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/TurkishTurkey.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/TurkishTurkey.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Ukrainian.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Welsh.lproj/
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/Welsh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/Resources/product.plist
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/bundle-info.plist
- /usr/local/lib/GNUstep/SOGo/CommonUI.SOGo/stamp.make
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Contacts
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Arabic.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Arabic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Basque.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Basque.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Bosnian.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Bosnian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/BrazilianPortuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Bulgarian.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Bulgarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Catalan.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Catalan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/ChineseChina.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/ChineseChina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/ChineseTaiwan.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Croatian.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Croatian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Czech.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Czech.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Danish.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Danish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Dutch.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Dutch.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/English.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/English.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Finnish.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Finnish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/French.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/French.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Galician.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Galician.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/German.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/German.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Hebrew.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Hebrew.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Hungarian.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Hungarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Icelandic.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Icelandic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Indonesian.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Indonesian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Info-gnustep.plist
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Italian.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Italian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Japanese.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Japanese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Kazakh.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Kazakh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Latvian.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Latvian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Lithuanian.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Lithuanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Macedonian.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Macedonian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Montenegrin.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Montenegrin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/NorwegianBokmal.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/NorwegianNynorsk.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Polish.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Polish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Portuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Portuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Romanian.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Romanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Russian.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Russian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Serbian.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Serbian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/SerbianLatin.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/SerbianLatin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Slovak.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Slovak.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Slovenian.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Slovenian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/SpanishArgentina.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/SpanishSpain.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Swedish.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Swedish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/TurkishTurkey.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/TurkishTurkey.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Ukrainian.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Ukrainian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Welsh.lproj/
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/Welsh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/Resources/product.plist
- /usr/local/lib/GNUstep/SOGo/Contacts.SOGo/stamp.make
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/ContactsUI
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Arabic.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Arabic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Basque.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Basque.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Bosnian.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Bosnian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/BrazilianPortuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Bulgarian.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Bulgarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Catalan.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Catalan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/ChineseChina.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/ChineseChina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/ChineseTaiwan.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Croatian.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Croatian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Czech.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Czech.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Danish.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Danish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Dutch.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Dutch.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/English.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/English.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Finnish.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Finnish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/French.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/French.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Galician.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Galician.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/German.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/German.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Hebrew.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Hebrew.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Hungarian.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Icelandic.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Indonesian.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Indonesian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Info-gnustep.plist
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Italian.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Italian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Japanese.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Japanese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Kazakh.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Kazakh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Latvian.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Latvian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Lithuanian.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Lithuanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Macedonian.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Macedonian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Montenegrin.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Montenegrin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/NorwegianBokmal.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/NorwegianNynorsk.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Polish.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Polish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Portuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Portuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Romanian.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Romanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Russian.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Russian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Serbian.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Serbian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/SerbianLatin.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/SerbianLatin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Slovak.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Slovak.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Slovenian.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Slovenian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/SpanishArgentina.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/SpanishSpain.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Swedish.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Swedish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/TurkishTurkey.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/TurkishTurkey.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Ukrainian.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Welsh.lproj/
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/Welsh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/Resources/product.plist
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/bundle-info.plist
- /usr/local/lib/GNUstep/SOGo/ContactsUI.SOGo/stamp.make
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/MailPartViewers
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Arabic.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Arabic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Basque.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Basque.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Bosnian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Bosnian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/BrazilianPortuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Bulgarian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Bulgarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Catalan.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Catalan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/ChineseChina.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/ChineseChina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/ChineseTaiwan.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Croatian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Croatian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Czech.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Czech.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Danish.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Danish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Dutch.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Dutch.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/English.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/English.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Finnish.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Finnish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/French.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/French.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Galician.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Galician.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/German.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/German.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Hebrew.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Hebrew.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Hungarian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Hungarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Icelandic.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Icelandic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Indonesian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Indonesian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Info-gnustep.plist
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Italian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Italian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Japanese.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Japanese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Kazakh.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Kazakh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Latvian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Latvian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Lithuanian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Lithuanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Macedonian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Macedonian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Montenegrin.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Montenegrin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/NorwegianBokmal.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/NorwegianNynorsk.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Polish.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Polish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Portuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Portuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Romanian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Romanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Russian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Russian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Serbian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Serbian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/SerbianLatin.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/SerbianLatin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Slovak.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Slovak.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Slovenian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Slovenian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/SpanishArgentina.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/SpanishSpain.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Swedish.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Swedish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/TurkishTurkey.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/TurkishTurkey.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Ukrainian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Ukrainian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Welsh.lproj/
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/Welsh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/Resources/product.plist
- /usr/local/lib/GNUstep/SOGo/MailPartViewers.SOGo/stamp.make
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Mailer
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Arabic.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Arabic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Basque.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Basque.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Bosnian.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Bosnian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/BrazilianPortuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Bulgarian.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Bulgarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Catalan.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Catalan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/ChineseChina.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/ChineseChina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/ChineseTaiwan.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Croatian.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Croatian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Czech.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Czech.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Danish.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Danish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Dutch.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Dutch.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/English.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/English.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Finnish.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Finnish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/French.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/French.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Galician.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Galician.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/German.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/German.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Hebrew.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Hebrew.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Hungarian.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Hungarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Icelandic.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Icelandic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Indonesian.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Indonesian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Info-gnustep.plist
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Italian.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Italian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Japanese.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Japanese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Kazakh.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Kazakh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Latvian.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Latvian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Lithuanian.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Lithuanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Macedonian.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Macedonian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Montenegrin.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Montenegrin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/NorwegianBokmal.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/NorwegianNynorsk.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Polish.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Polish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Portuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Portuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Romanian.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Romanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Russian.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Russian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailArabicForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailArabicForward.wo/SOGoMailArabicForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailArabicForward.wo/SOGoMailArabicForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailArabicReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailArabicReply.wo/SOGoMailArabicReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailArabicReply.wo/SOGoMailArabicReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBasqueForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBasqueForward.wo/SOGoMailBasqueForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBasqueForward.wo/SOGoMailBasqueForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBasqueReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBasqueReply.wo/SOGoMailBasqueReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBasqueReply.wo/SOGoMailBasqueReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBosnianForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBosnianForward.wo/SOGoMailBosnianForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBosnianForward.wo/SOGoMailBosnianForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBosnianReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBosnianReply.wo/SOGoMailBosnianReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBosnianReply.wo/SOGoMailBosnianReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseForward.wo/SOGoMailBrazilianPortugueseForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseForward.wo/SOGoMailBrazilianPortugueseForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseReply.wo/SOGoMailBrazilianPortugueseReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBrazilianPortugueseReply.wo/SOGoMailBrazilianPortugueseReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBulgarianForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBulgarianForward.wo/SOGoMailBulgarianForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBulgarianForward.wo/SOGoMailBulgarianForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBulgarianReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBulgarianReply.wo/SOGoMailBulgarianReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailBulgarianReply.wo/SOGoMailBulgarianReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanForward.wo/SOGoMailCatalanForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanForward.wo/SOGoMailCatalanForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanReply.wo/SOGoMailCatalanReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCatalanReply.wo/SOGoMailCatalanReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailChineseChinaForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailChineseChinaForward.wo/SOGoMailChineseChinaForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailChineseChinaForward.wo/SOGoMailChineseChinaForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailChineseChinaReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailChineseChinaReply.wo/SOGoMailChineseChinaReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailChineseChinaReply.wo/SOGoMailChineseChinaReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailChineseTaiwanForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailChineseTaiwanForward.wo/SOGoMailChineseTaiwanForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailChineseTaiwanForward.wo/SOGoMailChineseTaiwanForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailChineseTaiwanReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailChineseTaiwanReply.wo/SOGoMailChineseTaiwanReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailChineseTaiwanReply.wo/SOGoMailChineseTaiwanReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCroatianForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCroatianForward.wo/SOGoMailCroatianForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCroatianForward.wo/SOGoMailCroatianForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCroatianReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCroatianReply.wo/SOGoMailCroatianReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCroatianReply.wo/SOGoMailCroatianReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechForward.wo/SOGoMailCzechForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechForward.wo/SOGoMailCzechForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechReply.wo/SOGoMailCzechReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailCzechReply.wo/SOGoMailCzechReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDanishForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDanishForward.wo/SOGoMailDanishForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDanishForward.wo/SOGoMailDanishForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDanishReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDanishReply.wo/SOGoMailDanishReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDanishReply.wo/SOGoMailDanishReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDutchForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDutchForward.wo/SOGoMailDutchForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDutchForward.wo/SOGoMailDutchForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDutchReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDutchReply.wo/SOGoMailDutchReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailDutchReply.wo/SOGoMailDutchReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailEnglishForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailEnglishForward.wo/SOGoMailEnglishForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailEnglishForward.wo/SOGoMailEnglishForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailEnglishReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailEnglishReply.wo/SOGoMailEnglishReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailEnglishReply.wo/SOGoMailEnglishReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFinnishForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFinnishForward.wo/SOGoMailFinnishForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFinnishForward.wo/SOGoMailFinnishForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFinnishReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFinnishReply.wo/SOGoMailFinnishReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFinnishReply.wo/SOGoMailFinnishReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFrenchForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFrenchForward.wo/SOGoMailFrenchForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFrenchForward.wo/SOGoMailFrenchForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFrenchReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFrenchReply.wo/SOGoMailFrenchReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailFrenchReply.wo/SOGoMailFrenchReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGalicianForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGalicianForward.wo/SOGoMailGalicianForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGalicianForward.wo/SOGoMailGalicianForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGalicianReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGalicianReply.wo/SOGoMailGalicianReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGalicianReply.wo/SOGoMailGalicianReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGermanForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGermanForward.wo/SOGoMailGermanForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGermanForward.wo/SOGoMailGermanForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGermanReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGermanReply.wo/SOGoMailGermanReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailGermanReply.wo/SOGoMailGermanReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHebrewForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHebrewForward.wo/SOGoMailHebrewForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHebrewForward.wo/SOGoMailHebrewForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHebrewReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHebrewReply.wo/SOGoMailHebrewReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHebrewReply.wo/SOGoMailHebrewReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianForward.wo/SOGoMailHungarianForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianForward.wo/SOGoMailHungarianForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianReply.wo/SOGoMailHungarianReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailHungarianReply.wo/SOGoMailHungarianReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIcelandicForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIcelandicForward.wo/SOGoMailIcelandicForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIcelandicForward.wo/SOGoMailIcelandicForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIcelandicReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIcelandicReply.wo/SOGoMailIcelandicReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIcelandicReply.wo/SOGoMailIcelandicReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIndonesianForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIndonesianForward.wo/SOGoMailIndonesianForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIndonesianForward.wo/SOGoMailIndonesianForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIndonesianReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIndonesianReply.wo/SOGoMailIndonesianReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailIndonesianReply.wo/SOGoMailIndonesianReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianForward.wo/SOGoMailItalianForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianForward.wo/SOGoMailItalianForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianReply.wo/SOGoMailItalianReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailItalianReply.wo/SOGoMailItalianReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailJapaneseForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailJapaneseForward.wo/SOGoMailJapaneseForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailJapaneseForward.wo/SOGoMailJapaneseForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailJapaneseReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailJapaneseReply.wo/SOGoMailJapaneseReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailJapaneseReply.wo/SOGoMailJapaneseReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailKazakhForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailKazakhForward.wo/SOGoMailKazakhForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailKazakhForward.wo/SOGoMailKazakhForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailKazakhReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailKazakhReply.wo/SOGoMailKazakhReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailKazakhReply.wo/SOGoMailKazakhReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailLatvianForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailLatvianForward.wo/SOGoMailLatvianForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailLatvianForward.wo/SOGoMailLatvianForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailLatvianReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailLatvianReply.wo/SOGoMailLatvianReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailLatvianReply.wo/SOGoMailLatvianReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailLithuanianForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailLithuanianForward.wo/SOGoMailLithuanianForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailLithuanianForward.wo/SOGoMailLithuanianForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailLithuanianReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailLithuanianReply.wo/SOGoMailLithuanianReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailLithuanianReply.wo/SOGoMailLithuanianReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailMacedonianForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailMacedonianForward.wo/SOGoMailMacedonianForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailMacedonianForward.wo/SOGoMailMacedonianForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailMacedonianReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailMacedonianReply.wo/SOGoMailMacedonianReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailMacedonianReply.wo/SOGoMailMacedonianReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailMontenegrinForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailMontenegrinForward.wo/SOGoMailMontenegrinForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailMontenegrinForward.wo/SOGoMailMontenegrinForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailMontenegrinReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailMontenegrinReply.wo/SOGoMailMontenegrinReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailMontenegrinReply.wo/SOGoMailMontenegrinReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianBokmalForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianBokmalForward.wo/SOGoMailNorwegianBokmalForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianBokmalForward.wo/SOGoMailNorwegianBokmalForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianBokmalReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianBokmalReply.wo/SOGoMailNorwegianBokmalReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianBokmalReply.wo/SOGoMailNorwegianBokmalReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianNynorskForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianNynorskForward.wo/SOGoMailNorwegianNynorskForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianNynorskForward.wo/SOGoMailNorwegianNynorskForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianNynorskReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianNynorskReply.wo/SOGoMailNorwegianNynorskReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailNorwegianNynorskReply.wo/SOGoMailNorwegianNynorskReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPolishForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPolishForward.wo/SOGoMailPolishForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPolishForward.wo/SOGoMailPolishForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPolishReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPolishReply.wo/SOGoMailPolishReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPolishReply.wo/SOGoMailPolishReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPortugueseForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPortugueseForward.wo/SOGoMailPortugueseForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPortugueseForward.wo/SOGoMailPortugueseForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPortugueseReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPortugueseReply.wo/SOGoMailPortugueseReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailPortugueseReply.wo/SOGoMailPortugueseReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRomanianForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRomanianForward.wo/SOGoMailRomanianForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRomanianForward.wo/SOGoMailRomanianForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRomanianReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRomanianReply.wo/SOGoMailRomanianReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRomanianReply.wo/SOGoMailRomanianReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianForward.wo/SOGoMailRussianForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianForward.wo/SOGoMailRussianForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianReply.wo/SOGoMailRussianReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailRussianReply.wo/SOGoMailRussianReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSerbianForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSerbianForward.wo/SOGoMailSerbianForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSerbianForward.wo/SOGoMailSerbianForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSerbianLatinForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSerbianLatinForward.wo/SOGoMailSerbianLatinForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSerbianLatinForward.wo/SOGoMailSerbianLatinForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSerbianLatinReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSerbianLatinReply.wo/SOGoMailSerbianLatinReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSerbianLatinReply.wo/SOGoMailSerbianLatinReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSerbianReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSerbianReply.wo/SOGoMailSerbianReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSerbianReply.wo/SOGoMailSerbianReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovakForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovakForward.wo/SOGoMailSlovakForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovakForward.wo/SOGoMailSlovakForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovakReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovakReply.wo/SOGoMailSlovakReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovakReply.wo/SOGoMailSlovakReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovenianForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovenianForward.wo/SOGoMailSlovenianForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovenianForward.wo/SOGoMailSlovenianForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovenianReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovenianReply.wo/SOGoMailSlovenianReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSlovenianReply.wo/SOGoMailSlovenianReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishArgentinaForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishArgentinaForward.wo/SOGoMailSpanishArgentinaForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishArgentinaForward.wo/SOGoMailSpanishArgentinaForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishArgentinaReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishArgentinaReply.wo/SOGoMailSpanishArgentinaReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishArgentinaReply.wo/SOGoMailSpanishArgentinaReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishSpainForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishSpainForward.wo/SOGoMailSpanishSpainForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishSpainForward.wo/SOGoMailSpanishSpainForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishSpainReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishSpainReply.wo/SOGoMailSpanishSpainReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSpanishSpainReply.wo/SOGoMailSpanishSpainReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSwedishForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSwedishForward.wo/SOGoMailSwedishForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSwedishForward.wo/SOGoMailSwedishForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSwedishReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSwedishReply.wo/SOGoMailSwedishReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailSwedishReply.wo/SOGoMailSwedishReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailTurkishTurkeyForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailTurkishTurkeyForward.wo/SOGoMailTurkishTurkeyForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailTurkishTurkeyForward.wo/SOGoMailTurkishTurkeyForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailTurkishTurkeyReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailTurkishTurkeyReply.wo/SOGoMailTurkishTurkeyReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailTurkishTurkeyReply.wo/SOGoMailTurkishTurkeyReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailUkrainianForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailUkrainianForward.wo/SOGoMailUkrainianForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailUkrainianForward.wo/SOGoMailUkrainianForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailUkrainianReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailUkrainianReply.wo/SOGoMailUkrainianReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailUkrainianReply.wo/SOGoMailUkrainianReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshForward.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshForward.wo/SOGoMailWelshForward.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshForward.wo/SOGoMailWelshForward.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshReply.wo/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshReply.wo/SOGoMailWelshReply.html
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SOGoMailWelshReply.wo/SOGoMailWelshReply.wod
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Serbian.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Serbian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SerbianLatin.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SerbianLatin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Slovak.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Slovak.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Slovenian.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Slovenian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SpanishArgentina.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SpanishSpain.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Swedish.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Swedish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/TurkishTurkey.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/TurkishTurkey.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Ukrainian.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Ukrainian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/WebServer/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Welsh.lproj/
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/Welsh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/Resources/product.plist
- /usr/local/lib/GNUstep/SOGo/Mailer.SOGo/bundle-info.plist
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/MailerUI
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Arabic.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Arabic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Basque.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Basque.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Bosnian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Bosnian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/BrazilianPortuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Bulgarian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Bulgarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Catalan.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Catalan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/ChineseChina.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/ChineseChina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/ChineseTaiwan.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Croatian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Croatian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Czech.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Czech.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Danish.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Danish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Dutch.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Dutch.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/English.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/English.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Finnish.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Finnish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/French.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/French.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Galician.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Galician.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/German.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/German.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Hebrew.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Hebrew.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Hungarian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Icelandic.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Indonesian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Indonesian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Info-gnustep.plist
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Italian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Italian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Japanese.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Japanese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Kazakh.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Kazakh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Latvian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Latvian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Lithuanian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Lithuanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Macedonian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Macedonian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Montenegrin.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Montenegrin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/NorwegianBokmal.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/NorwegianNynorsk.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Polish.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Polish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Portuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Portuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Romanian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Romanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Russian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Russian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Serbian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Serbian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/SerbianLatin.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/SerbianLatin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Slovak.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Slovak.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Slovenian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Slovenian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/SpanishArgentina.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/SpanishSpain.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Swedish.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Swedish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/TurkishTurkey.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/TurkishTurkey.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Ukrainian.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Welsh.lproj/
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/Welsh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/Resources/product.plist
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/bundle-info.plist
- /usr/local/lib/GNUstep/SOGo/MailerUI.SOGo/stamp.make
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/MainUI
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Arabic.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Arabic.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Arabic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Basque.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Basque.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Basque.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Bosnian.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Bosnian.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Bosnian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/BrazilianPortuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/BrazilianPortuguese.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Bulgarian.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Bulgarian.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Bulgarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Catalan.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Catalan.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Catalan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/ChineseChina.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/ChineseChina.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/ChineseChina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/ChineseTaiwan.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/ChineseTaiwan.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Croatian.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Croatian.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Croatian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Czech.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Czech.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Czech.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Danish.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Danish.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Danish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Dutch.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Dutch.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Dutch.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/English.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/English.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/English.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Finnish.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Finnish.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Finnish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/French.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/French.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/French.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Galician.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Galician.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Galician.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/German.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/German.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/German.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Hebrew.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Hebrew.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Hebrew.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Hungarian.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Hungarian.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Icelandic.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Icelandic.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Indonesian.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Indonesian.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Indonesian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Info-gnustep.plist
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Italian.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Italian.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Italian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Japanese.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Japanese.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Japanese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Kazakh.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Kazakh.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Kazakh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Latvian.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Latvian.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Latvian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Lithuanian.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Lithuanian.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Lithuanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Macedonian.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Macedonian.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Macedonian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Montenegrin.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Montenegrin.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Montenegrin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/NorwegianBokmal.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/NorwegianBokmal.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/NorwegianNynorsk.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/NorwegianNynorsk.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/OCSAcl-mysql.sql
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/OCSAcl-oracle.sql
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/OCSAcl-postgresql.sql
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/OCSCacheFolder-mysql.sql
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/OCSCacheFolder-oracle.sql
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/OCSCacheFolder-postgresql.sql
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/OCSFolderInfo-oracle.sql
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/OCSFolderInfo.sql
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/OCSStore-mysql.sql
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/OCSStore-oracle.sql
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/OCSStore.sql
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Polish.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Polish.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Polish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Portuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Portuguese.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Portuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Romanian.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Romanian.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Romanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Russian.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Russian.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Russian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/SOGoProfile-mysql.sql
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/SOGoProfile-oracle.sql
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/SOGoProfile.sql
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Serbian.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Serbian.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Serbian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/SerbianLatin.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/SerbianLatin.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/SerbianLatin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Slovak.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Slovak.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Slovak.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Slovenian.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Slovenian.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Slovenian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/SpanishArgentina.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/SpanishArgentina.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/SpanishSpain.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/SpanishSpain.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Swedish.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Swedish.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Swedish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/TurkishTurkey.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/TurkishTurkey.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/TurkishTurkey.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Ukrainian.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Ukrainian.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Welsh.lproj/
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Welsh.lproj/Locale
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/Welsh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/Resources/product.plist
- /usr/local/lib/GNUstep/SOGo/MainUI.SOGo/stamp.make
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/PreferencesUI
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Arabic.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Arabic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Basque.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Basque.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Bosnian.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Bosnian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/BrazilianPortuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Bulgarian.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Bulgarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Catalan.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Catalan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/ChineseChina.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/ChineseChina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/ChineseTaiwan.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Croatian.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Croatian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Czech.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Czech.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Danish.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Danish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Dutch.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Dutch.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/English.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/English.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Finnish.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Finnish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/French.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/French.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Galician.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Galician.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/German.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/German.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Hebrew.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Hebrew.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Hungarian.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Icelandic.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Indonesian.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Indonesian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Info-gnustep.plist
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Italian.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Italian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Japanese.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Japanese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Kazakh.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Kazakh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Latvian.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Latvian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Lithuanian.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Lithuanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Macedonian.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Macedonian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Montenegrin.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Montenegrin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/NorwegianBokmal.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/NorwegianNynorsk.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Polish.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Polish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Portuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Portuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Romanian.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Romanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Russian.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Russian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Serbian.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Serbian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/SerbianLatin.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/SerbianLatin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Slovak.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Slovak.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Slovenian.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Slovenian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/SpanishArgentina.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/SpanishSpain.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Swedish.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Swedish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/TurkishTurkey.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/TurkishTurkey.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/UIxPreferences.toolbar
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Ukrainian.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Welsh.lproj/
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/Welsh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/Resources/product.plist
- /usr/local/lib/GNUstep/SOGo/PreferencesUI.SOGo/stamp.make
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Arabic.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Arabic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Basque.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Basque.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Bosnian.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Bosnian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/BrazilianPortuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/BrazilianPortuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Bulgarian.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Bulgarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Catalan.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Catalan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/ChineseChina.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/ChineseChina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/ChineseTaiwan.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/ChineseTaiwan.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Croatian.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Croatian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Czech.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Czech.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Danish.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Danish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Dutch.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Dutch.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/English.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/English.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Finnish.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Finnish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/French.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/French.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Galician.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Galician.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/German.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/German.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Hebrew.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Hebrew.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Hungarian.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Hungarian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Icelandic.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Icelandic.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Indonesian.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Indonesian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Info-gnustep.plist
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Italian.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Italian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Japanese.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Japanese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Kazakh.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Kazakh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Latvian.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Latvian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Lithuanian.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Lithuanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Macedonian.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Macedonian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Montenegrin.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Montenegrin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/NorwegianBokmal.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/NorwegianBokmal.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/NorwegianNynorsk.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/NorwegianNynorsk.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Polish.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Polish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Portuguese.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Portuguese.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Romanian.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Romanian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Russian.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Russian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Serbian.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Serbian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SerbianLatin.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SerbianLatin.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Slovak.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Slovak.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Slovenian.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Slovenian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SpanishArgentina.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SpanishArgentina.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SpanishSpain.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/SpanishSpain.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Swedish.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Swedish.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/TurkishTurkey.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/TurkishTurkey.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Ukrainian.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Ukrainian.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Welsh.lproj/
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/Welsh.lproj/Localizable.strings
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/cycles.plist
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/Resources/product.plist
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/SchedulerUI
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/bundle-info.plist
- /usr/local/lib/GNUstep/SOGo/SchedulerUI.SOGo/stamp.make
- /usr/local/lib/GNUstep/SOGo/Templates/
- /usr/local/lib/GNUstep/SOGo/Templates/AdministrationUI/
- /usr/local/lib/GNUstep/SOGo/Templates/AdministrationUI/UIxAdministration.wox
- /usr/local/lib/GNUstep/SOGo/Templates/AdministrationUI/UIxAdministrationAclEditor.wox
- /usr/local/lib/GNUstep/SOGo/Templates/AdministrationUI/UIxAdministrationFilterPanel.wox
- /usr/local/lib/GNUstep/SOGo/Templates/AdministrationUI/UIxAdministrationMotd.wox
- /usr/local/lib/GNUstep/SOGo/Templates/AdministrationUI/UIxThemePreview.wox
- /usr/local/lib/GNUstep/SOGo/Templates/Appointments/
- /usr/local/lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailDeletion.wox
- /usr/local/lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailICalReply.wox
- /usr/local/lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailInvitation.wox
- /usr/local/lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailReceipt.wox
- /usr/local/lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailReminder.wox
- /usr/local/lib/GNUstep/SOGo/Templates/Appointments/SOGoAptMailUpdate.wox
- /usr/local/lib/GNUstep/SOGo/Templates/ContactsUI/
- /usr/local/lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactEditorTemplate.wox
- /usr/local/lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactFolderLinksTemplate.wox
- /usr/local/lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactFolderProperties.wox
- /usr/local/lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactFoldersView.wox
- /usr/local/lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactViewTemplate.wox
- /usr/local/lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactsUserFolders.wox
- /usr/local/lib/GNUstep/SOGo/Templates/ContactsUI/UIxContactsUserRightsEditor.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailPartViewers/
- /usr/local/lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartAlternativeViewer.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartEncryptedViewer.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartExternalHTMLViewer.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartHTMLViewer.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartICalViewer.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartImageViewer.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartLinkViewer.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartMessageViewer.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartMixedViewer.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartSignedViewer.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartTextViewer.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailPartViewers/UIxMailPartTnefViewer.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailerUI/
- /usr/local/lib/GNUstep/SOGo/Templates/MailerUI/UIxMailEditor.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailerUI/UIxMailFolderSubscriptions.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailerUI/UIxMailFolderTemplate.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailerUI/UIxMailMainFrame.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailerUI/UIxMailMoveToPopUp.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailerUI/UIxMailPopupView.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailerUI/UIxMailUserDelegationEditor.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailerUI/UIxMailUserRightsEditor.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailerUI/UIxMailView.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailerUI/UIxMailViewTemplate.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MailerUI/UIxMailWindowCloser.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MainUI/
- /usr/local/lib/GNUstep/SOGo/Templates/MainUI/SOGoBrowsersPanel.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MainUI/SOGoRootPage.wox
- /usr/local/lib/GNUstep/SOGo/Templates/MainUI/SOGoUserHomePage.wox
- /usr/local/lib/GNUstep/SOGo/Templates/PreferencesUI/
- /usr/local/lib/GNUstep/SOGo/Templates/PreferencesUI/UIxAccountEditor.wox
- /usr/local/lib/GNUstep/SOGo/Templates/PreferencesUI/UIxAdditionalPreferences.wox
- /usr/local/lib/GNUstep/SOGo/Templates/PreferencesUI/UIxFilterEditor.wox
- /usr/local/lib/GNUstep/SOGo/Templates/PreferencesUI/UIxJSONPreferences.wox
- /usr/local/lib/GNUstep/SOGo/Templates/PreferencesUI/UIxPreferences.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLArabicAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLArabicModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLArabicRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLBasqueAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLBasqueModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLBasqueRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLBosnianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLBosnianModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLBosnianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLBrazilianPortugueseAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLBrazilianPortugueseModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLBrazilianPortugueseRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLBulgarianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLBulgarianModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLBulgarianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLCatalanAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLCatalanModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLCatalanRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLChineseChinaAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLChineseChinaModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLChineseChinaRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLChineseTaiwanAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLChineseTaiwanModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLChineseTaiwanRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLCroatianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLCroatianModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLCroatianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLCzechAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLCzechModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLCzechRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLDanishAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLDanishModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLDanishRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLDutchAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLDutchModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLDutchRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLEnglishAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLEnglishModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLEnglishRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLFinnishAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLFinnishModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLFinnishRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLFrenchAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLFrenchModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLFrenchRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLGalicianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLGalicianModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLGalicianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLGermanAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLGermanModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLGermanRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLHebrewAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLHebrewModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLHebrewRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLHungarianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLHungarianModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLHungarianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLIcelandicAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLIcelandicModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLIcelandicRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLIndonesianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLIndonesianModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLIndonesianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLItalianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLItalianModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLItalianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLJapaneseAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLJapaneseModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLJapaneseRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLKazakhAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLKazakhModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLKazakhRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLLatvianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLLatvianModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLLatvianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLLithuanianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLLithuanianModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLLithuanianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLMacedonianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLMacedonianModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLMacedonianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLMontenegrinAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLMontenegrinModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLMontenegrinRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLNorwegianBokmalAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLNorwegianBokmalModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLNorwegianBokmalRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLNorwegianNynorskAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLNorwegianNynorskModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLNorwegianNynorskRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLPolishAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLPolishModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLPolishRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLPortugueseAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLPortugueseModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLPortugueseRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLRomanianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLRomanianModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLRomanianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLRussianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLRussianModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLRussianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLSerbianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLSerbianModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLSerbianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLSlovakAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLSlovakModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLSlovakRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLSlovenianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLSlovenianModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLSlovenianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLSpanishArgentinaAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLSpanishArgentinaModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLSpanishArgentinaRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLSpanishSpainAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLSpanishSpainModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLSpanishSpainRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLSwedishAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLSwedishModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLSwedishRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLTurkishTurkeyAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLTurkishTurkeyModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLTurkishTurkeyRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLUkrainianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLUkrainianModificationAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoACLUkrainianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderArabicAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderArabicRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderBasqueAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderBasqueRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderBosnianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderBosnianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderBrazilianPortugueseAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderBrazilianPortugueseRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderBulgarianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderBulgarianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderCatalanAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderCatalanRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderChineseChinaAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderChineseChinaRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderChineseTaiwanAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderChineseTaiwanRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderCroatianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderCroatianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderCzechAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderCzechRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderDanishAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderDanishRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderDutchAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderDutchRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderEnglishAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderEnglishRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderFinnishAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderFinnishRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderFrenchAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderFrenchRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderGalicianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderGalicianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderGermanAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderGermanRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderHebrewAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderHebrewRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderHungarianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderHungarianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderIcelandicAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderIcelandicRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderIndonesianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderIndonesianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderItalianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderItalianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderJapaneseAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderJapaneseRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderKazakhAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderKazakhRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderLatvianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderLatvianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderLithuanianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderLithuanianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderMacedonianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderMacedonianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderMontenegrinAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderMontenegrinRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderNorwegianBokmalAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderNorwegianBokmalRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderNorwegianNynorskAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderNorwegianNynorskRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderPolishAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderPolishRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderPortugueseAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderPortugueseRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderRomanianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderRomanianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderRussianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderRussianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderSerbianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderSerbianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderSlovakAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderSlovakRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderSlovenianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderSlovenianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderSpanishArgentinaAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderSpanishArgentinaRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderSpanishSpainAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderSpanishSpainRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderSwedishAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderSwedishRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderTurkishTurkeyAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderTurkishTurkeyRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderUkrainianAdditionAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SOGoFolderUkrainianRemovalAdvisory.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SchedulerUI/
- /usr/local/lib/GNUstep/SOGo/Templates/SchedulerUI/UIxAppointmentEditorTemplate.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SchedulerUI/UIxAppointmentViewTemplate.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SchedulerUI/UIxAttendeesEditor.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalDayTable.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalDayView.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalMainView.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalMonthView.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalMulticolumnDayView.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalUserRightsEditor.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalWeekView.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalendarFolderLinksTemplate.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalendarProperties.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SchedulerUI/UIxCalendarSelector.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SchedulerUI/UIxRecurrenceEditor.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SchedulerUI/UIxRecurrenceListEditor.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SchedulerUI/UIxReminderEditor.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SchedulerUI/UIxTaskEditorTemplate.wox
- /usr/local/lib/GNUstep/SOGo/Templates/SchedulerUI/UIxTaskViewTemplate.wox
- /usr/local/lib/GNUstep/SOGo/Templates/UIxAclEditor.wox
- /usr/local/lib/GNUstep/SOGo/Templates/UIxPageFrame.wox
- /usr/local/lib/GNUstep/SOGo/Templates/UIxSidenavToolbarTemplate.wox
- /usr/local/lib/GNUstep/SOGo/Templates/UIxSortableTableHeader.wox
- /usr/local/lib/GNUstep/SOGo/Templates/UIxToolbar.wox
- /usr/local/lib/GNUstep/SOGo/Templates/UIxTopnavToolbar.wox
- /usr/local/lib/GNUstep/SOGo/Templates/UIxUserRightsEditor.wox
- /usr/local/lib/GNUstep/SOGo/WebServerResources/
- /usr/local/lib/GNUstep/SOGo/WebServerResources/css/
- /usr/local/lib/GNUstep/SOGo/WebServerResources/css/icons.css
- /usr/local/lib/GNUstep/SOGo/WebServerResources/css/no-animation.css
- /usr/local/lib/GNUstep/SOGo/WebServerResources/css/no-animation.css.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/css/styles.css
- /usr/local/lib/GNUstep/SOGo/WebServerResources/css/styles.css.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/css/theme-default.css
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraMono-Bold.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraMono-Bold.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraMono-Bold.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraMono-Medium.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraMono-Medium.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraMono-Medium.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraMono-Regular.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraMono-Regular.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraMono-Regular.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Bold.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Bold.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Bold.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-BoldItalic.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-BoldItalic.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-BoldItalic.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Book.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Book.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Book.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-BookItalic.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-BookItalic.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-BookItalic.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Eight.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Eight.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Eight.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-EightItalic.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-EightItalic.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-EightItalic.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-ExtraBold.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-ExtraBold.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-ExtraBold.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-ExtraBoldItalic.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-ExtraBoldItalic.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-ExtraBoldItalic.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-ExtraLight.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-ExtraLight.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-ExtraLight.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-ExtraLightItalic.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-ExtraLightItalic.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-ExtraLightItalic.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Four.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Four.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Four.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-FourItalic.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-FourItalic.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-FourItalic.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Hair.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Hair.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Hair.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-HairItalic.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-HairItalic.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-HairItalic.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Heavy.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Heavy.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Heavy.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-HeavyItalic.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-HeavyItalic.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-HeavyItalic.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Italic.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Italic.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Italic.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Light.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Light.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Light.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-LightItalic.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-LightItalic.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-LightItalic.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Medium.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Medium.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Medium.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-MediumItalic.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-MediumItalic.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-MediumItalic.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Regular.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Regular.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Regular.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-SemiBold.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-SemiBold.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-SemiBold.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-SemiBoldItalic.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-SemiBoldItalic.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-SemiBoldItalic.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Thin.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Thin.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Thin.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-ThinItalic.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-ThinItalic.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-ThinItalic.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Two.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Two.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Two.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-TwoItalic.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-TwoItalic.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-TwoItalic.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Ultra.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Ultra.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-Ultra.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-UltraItalic.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-UltraItalic.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-UltraItalic.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-UltraLight.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-UltraLight.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-UltraLight.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-UltraLightItalic.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-UltraLightItalic.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/FiraSans-UltraLightItalic.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/MaterialIcons-Regular.eot
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/MaterialIcons-Regular.ttf
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/MaterialIcons-Regular.woff
- /usr/local/lib/GNUstep/SOGo/WebServerResources/fonts/MaterialIcons-Regular.woff2
- /usr/local/lib/GNUstep/SOGo/WebServerResources/img/
- /usr/local/lib/GNUstep/SOGo/WebServerResources/img/cardboard-transp.png
- /usr/local/lib/GNUstep/SOGo/WebServerResources/img/certificate-off.svg
- /usr/local/lib/GNUstep/SOGo/WebServerResources/img/certificate.svg
- /usr/local/lib/GNUstep/SOGo/WebServerResources/img/email-256px.png
- /usr/local/lib/GNUstep/SOGo/WebServerResources/img/felt-transp.png
- /usr/local/lib/GNUstep/SOGo/WebServerResources/img/ic_person_grey_24px.svg
- /usr/local/lib/GNUstep/SOGo/WebServerResources/img/inverse.png
- /usr/local/lib/GNUstep/SOGo/WebServerResources/img/mark_email_read.svg
- /usr/local/lib/GNUstep/SOGo/WebServerResources/img/mark_email_unread.svg
- /usr/local/lib/GNUstep/SOGo/WebServerResources/img/sogo-compact.svg
- /usr/local/lib/GNUstep/SOGo/WebServerResources/img/sogo-full.svg
- /usr/local/lib/GNUstep/SOGo/WebServerResources/img/sogo-logo.png
- /usr/local/lib/GNUstep/SOGo/WebServerResources/img/sogo.ico
- /usr/local/lib/GNUstep/SOGo/WebServerResources/img/voice_over_off.svg
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Administration.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Administration.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Administration.services.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Administration.services.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Administration/
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Administration/Administration.app.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Administration/Administration.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Administration/AdministrationAclController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Administration/AdministrationController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Administration/AdministrationMotdController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Administration/ThemePreviewController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/Acl.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/AclController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/Authentication.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/Common.app.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/Dialog.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/Gravatar.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/Resource.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/User.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/angular-file-upload.trump.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/cssescape.filter.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/decodeUri.filter.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/encodeUri.filter.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/ensureTarget.filter.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/loc.filter.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/mdColors.app.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/navController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/range.filter.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgAutogrow.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgAvatarImage.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgBlockToggle.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgCheckmark.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgCkeditor.component.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgColorPicker.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgCompile.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgDatepickerReadonlyInput.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgDraggable.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgDroppable.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgEnter.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgEscape.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgFocus.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgFocus.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgFolderStylesheet.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgHotkeys.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgLabels.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgNoDirtyCheck.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgPlaceholder.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgQrCode.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgResetOnDisabled.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgRippleClick.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgRippleClick.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgSearch.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgSelectOnly.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgSubscribe.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgTimepicker.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/sgToggleGrid.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/txt2html.filter.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Common/utils.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Contacts.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Contacts.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Contacts.services.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Contacts.services.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Contacts/
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Contacts/AddressBook.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Contacts/AddressBookController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Contacts/AddressBooksController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Contacts/Card.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Contacts/CardController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Contacts/Contacts.app.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Contacts/sgAddress.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer.app.popup.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer.app.popup.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer.services.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer.services.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer/
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer/Account.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer/Mailbox.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer/MailboxController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer/MailboxesController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer/Mailer.app.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer/Mailer.popup.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer/Message.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer/MessageController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer/MessageEditorController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer/VirtualMailbox.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer/sgAccountSection.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer/sgIMIP.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer/sgImageGallery.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer/sgMailboxListItem.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer/sgMessageListItem.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer/sgMessageListItemMain.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Mailer/sgZoomableImage.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Main.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Main.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Main/
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Main/Main.app.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Preferences.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Preferences.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Preferences.services.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Preferences.services.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Preferences/
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Preferences/AccountDialogController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Preferences/FiltersDialogController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Preferences/Preferences.app.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Preferences/Preferences.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Preferences/PreferencesController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler.services.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler.services.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/Attendees.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/Calendar.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/CalendarController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/CalendarListController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/CalendarsController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/Component.service.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/ComponentController.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/Scheduler.app.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/sgCalendarDay.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/sgCalendarDayBlock.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/sgCalendarDayTable.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/sgCalendarGhost.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/sgCalendarListEvent.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/sgCalendarListItem.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/sgCalendarMonthDay.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/sgCalendarMonthEvent.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/sgCalendarPrintStylesheet.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/sgCalendarScrollView.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/sgCategoryStylesheet.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/sgDraggableCalendarBlock.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/sgFreebusy.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/sgFreebusyDay.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/Scheduler/sgNowLine.directive.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/theme.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/FileSaver.min.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/FileSaver.min.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-animate.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-animate.min.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-animate.min.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-aria.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-aria.min.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-aria.min.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-cookies.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-cookies.min.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-cookies.min.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-file-upload.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-file-upload.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-file-upload.min.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-file-upload.min.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-material.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-material.min.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-messages.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-messages.min.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-messages.min.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-sanitize.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-sanitize.min.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-sanitize.min.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-ui-router.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-ui-router.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-ui-router.min.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular-ui-router.min.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular.min.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/angular.min.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/LICENSE.md
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/ckeditor.d.ts
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/ckeditor.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/ckeditor.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/af.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/ar.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/ast.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/az.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/bg.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/bn.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/bs.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/ca.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/cs.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/da.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/de-ch.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/de.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/el.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/en-au.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/en-gb.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/eo.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/es-co.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/es.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/et.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/eu.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/fa.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/fi.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/fr.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/gl.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/gu.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/he.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/hi.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/hr.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/hu.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/hy.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/id.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/it.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/ja.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/jv.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/kk.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/km.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/kn.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/ko.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/ku.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/lt.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/lv.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/ms.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/nb.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/ne.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/nl.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/no.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/oc.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/pl.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/pt-br.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/pt.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/ro.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/ru.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/si.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/sk.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/sl.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/sq.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/sr-latn.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/sr.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/sv.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/th.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/tk.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/tr.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/tt.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/ug.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/uk.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/ur.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/uz.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/vi.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/zh-cn.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/build/translations/zh.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/package.json
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/sample/
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/sample/index.html
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/sample/script.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/src/
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/src/ckeditor.ts
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/tsconfig.json
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ckeditor/webpack.config.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/lodash.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/lodash.min.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/mark.min.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ng-sortable.min.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/ng-sortable.min.js.map
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/punycode.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/qrcode.js
- /usr/local/lib/GNUstep/SOGo/WebServerResources/js/vendor/qrcode.min.js
- /usr/local/lib/GNUstep/SaxDrivers-4.9/
- /usr/local/lib/GNUstep/SaxDrivers-4.9/versitCardsSaxDriver.sax/
- /usr/local/lib/GNUstep/SaxDrivers-4.9/versitCardsSaxDriver.sax/Resources/
- /usr/local/lib/GNUstep/SaxDrivers-4.9/versitCardsSaxDriver.sax/Resources/Info-gnustep.plist
- /usr/local/lib/GNUstep/SaxDrivers-4.9/versitCardsSaxDriver.sax/Resources/bundle-info.plist
- /usr/local/lib/GNUstep/SaxDrivers-4.9/versitCardsSaxDriver.sax/bundle-info.plist
- /usr/local/lib/GNUstep/SaxDrivers-4.9/versitCardsSaxDriver.sax/stamp.make
- /usr/local/lib/GNUstep/SaxDrivers-4.9/versitCardsSaxDriver.sax/versitCardsSaxDriver
- /usr/local/lib/GNUstep/SaxMappings/
- /usr/local/lib/GNUstep/SaxMappings/NGCards.xmap
- /usr/local/lib/GNUstep/WOxElemBuilders-4.9/
- /usr/local/lib/GNUstep/WOxElemBuilders-4.9/SOGoElements.wox/
- /usr/local/lib/GNUstep/WOxElemBuilders-4.9/SOGoElements.wox/Resources/
- /usr/local/lib/GNUstep/WOxElemBuilders-4.9/SOGoElements.wox/Resources/Info-gnustep.plist
- /usr/local/lib/GNUstep/WOxElemBuilders-4.9/SOGoElements.wox/SOGoElements
- /usr/local/lib/GNUstep/WOxElemBuilders-4.9/SOGoElements.wox/bundle-info.plist
- /usr/local/lib/GNUstep/WOxElemBuilders-4.9/SOGoElements.wox/stamp.make
- /usr/local/lib/sogo/
- /usr/local/lib/sogo/libGDLContentStore.so.3.0
- /usr/local/lib/sogo/libNGCards.so.3.1
- /usr/local/lib/sogo/libSOGo.so.5.2
- /usr/local/lib/sogo/libSOGoUI.so.2.2
- /usr/local/sbin/sogo-ealarms-notify
- /usr/local/sbin/sogo-slapd-sockd
- /usr/local/sbin/sogo-tool
- /usr/local/sbin/sogod
- /usr/local/share/doc/pkg-readmes/sogo
- /usr/local/share/doc/sogo/
- /usr/local/share/doc/sogo/cas-proxy-validate.py
- /usr/local/share/doc/sogo/sql-update-1.2.2_to_1.3.0-mysql.sh
- /usr/local/share/doc/sogo/sql-update-1.2.2_to_1.3.0.sh
- /usr/local/share/doc/sogo/sql-update-1.3.11_to_1.3.12-mysql.sh
- /usr/local/share/doc/sogo/sql-update-1.3.11_to_1.3.12.sh
- /usr/local/share/doc/sogo/sql-update-1.3.16_to_1.3.17-mysql.sh
- /usr/local/share/doc/sogo/sql-update-1.3.16_to_1.3.17.sh
- /usr/local/share/doc/sogo/sql-update-1.3.3_to_1.3.4-mysql.sh
- /usr/local/share/doc/sogo/sql-update-1.3.3_to_1.3.4.sh
- /usr/local/share/doc/sogo/sql-update-101_to_102.sh
- /usr/local/share/doc/sogo/sql-update-2.0.4b_to_2.0.5-mysql.sh
- /usr/local/share/doc/sogo/sql-update-2.2.17_to_2.3.0-mysql.sh
- /usr/local/share/doc/sogo/sql-update-2.2.17_to_2.3.0.sh
- /usr/local/share/doc/sogo/sql-update-20070724.sh
- /usr/local/share/doc/sogo/sql-update-20070822.sh
- /usr/local/share/doc/sogo/sql-update-20080303.sh
- /usr/local/share/doc/sogo/sql-update-3.0.0-to-combined-mysql.sh
- /usr/local/share/doc/sogo/sql-update-3.0.0-to-combined.sh
- /usr/local/share/doc/sogo/sql-update-3.2.10_to_4.0.0-mysql.sh
- /usr/local/share/doc/sogo/sql-update-3.2.10_to_4.0.0.sh
- /usr/local/share/doc/sogo/sql-update-5.5.1_to_5.6.0.sh
- /usr/local/share/doc/sogo/sql-update-5.8.4_to_5.9.0.sh
- /usr/local/share/doc/sogo/updates.php
- /usr/local/share/examples/login.conf.d/sogod
- /var/log/sogo/
- /var/sogo/
- /var/spool/sogo/
- @newgroup _sogo:659
- @newuser _sogo:659:_sogo::SOGo user:/var/sogo:/bin/sh